/* ==========================================================
   LAXNA TECHNOLOGIES
   ULTRA PREMIUM UI
========================================================== */


/* ==========================================================
   LIGHT MODE
========================================================== */

:root {

    --bg: #f4f1fb;
    --bg-deep: #ebe5f6;

    --surface: rgba(255, 255, 255, 0.64);
    --surface-solid: #fcfaff;

    --text: #171321;
    --text-soft: #675f72;
    --muted: #8d8499;

    --line: rgba(73, 50, 101, 0.12);

    --purple: #7553e7;
    --violet: #9b6cff;
    --blue: #496ff5;

    --accent:
        linear-gradient(
            135deg,
            #985eff,
            #6549e8 50%,
            #4777fa
        );

    --header:
        rgba(248, 245, 255, 0.72);

    --shadow:
        0 30px 100px rgba(64, 41, 102, 0.13);

    --hero-overlay:
        linear-gradient(
            90deg,
            rgba(244, 241, 251, .98) 0%,
            rgba(244, 241, 251, .91) 40%,
            rgba(244, 241, 251, .38) 70%,
            rgba(244, 241, 251, .08) 100%
        );
}



/* ==========================================================
   DARK MODE
========================================================== */

html[data-theme="dark"] {

    --bg: #070912;
    --bg-deep: #0c0f1b;

    --surface:
        rgba(15, 18, 31, 0.66);

    --surface-solid:
        #101421;

    --text: #f4f0ff;
    --text-soft: #aea7bd;
    --muted: #746f84;

    --line:
        rgba(182, 157, 255, 0.13);

    --purple: #9b70ff;
    --violet: #b28aff;
    --blue: #668cff;

    --header:
        rgba(7, 9, 18, 0.72);

    --shadow:
        0 35px 100px rgba(0, 0, 0, .48);

    --hero-overlay:
        linear-gradient(
            90deg,
            rgba(7, 9, 18, .98) 0%,
            rgba(7, 9, 18, .90) 41%,
            rgba(7, 9, 18, .39) 72%,
            rgba(7, 9, 18, .10) 100%
        );
}



/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 120px;
}


body {

    min-height: 100vh;

    color: var(--text);

    background: var(--bg);

    font-family:
        "Manrope",
        sans-serif;

    overflow-x: hidden;

    transition:
        background .4s ease,
        color .4s ease;
}


body.no-scroll {
    overflow: hidden;
}


a {

    color: inherit;

    text-decoration: none;
}


button {

    font: inherit;

    color: inherit;

    border: 0;

    background: transparent;

    cursor: pointer;
}


img {

    display: block;

    width: 100%;
}


ul {
    list-style: none;
}


::selection {

    color: #fff;

    background: #7654e8;
}


.container {

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    margin-inline: auto;
}



/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-weight: 600;

    letter-spacing: -.035em;

    line-height: .94;
}


h1 em,
h2 em {

    display: block;

    color: var(--purple);

    font-weight: 500;

    font-style: italic;
}



/* ==========================================================
   BACKGROUND
========================================================== */

.site-noise {

    position: fixed;

    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: .025;

    background-image:
        radial-gradient(
            rgba(0, 0, 0, .8)
            .5px,
            transparent .5px
        );

    background-size:
        6px 6px;
}


html[data-theme="dark"]
.site-noise {

    opacity: .045;

    filter: invert(1);
}


.ambient {

    position: fixed;

    z-index: -10;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    filter: blur(150px);

    opacity: .15;

    pointer-events: none;
}


.ambient-one {

    top: -260px;

    left: -200px;

    background: #9c65ff;
}


.ambient-two {

    right: -280px;

    top: 50%;

    background: #557cff;
}



/* ==========================================================
   HEADER
========================================================== */

.header {

    position: fixed;

    top: 20px;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: .35s ease;
}


.header-shell {

    width:
        min(
            calc(100% - 36px),
            1340px
        );

    height: 74px;

    margin-inline: auto;

    padding:
        0 13px
        0 18px;

    display: flex;

    align-items: center;

    gap: 25px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background: var(--header);

    backdrop-filter:
        blur(28px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(145%);

    box-shadow:
        0 12px 50px
        rgba(25, 12, 50, .08);

    transition: .35s ease;
}


.header.scrolled {

    top: 10px;
}


.header.scrolled
.header-shell {

    height: 66px;

    box-shadow: var(--shadow);
}



/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.brand img {

    width: 46px;

    height: 46px;

    object-fit: contain;
}


.brand-copy {

    line-height: 1;
}


.brand-copy strong {

    display: block;

    font-size: .98rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.brand-copy span {

    display: block;

    margin-top: 6px;

    color: var(--purple);

    font-size: .50rem;

    font-weight: 800;

    letter-spacing: .33em;
}



/* NAV */

.desktop-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 2px;
}


.desktop-nav a {

    position: relative;

    padding: 11px 13px;

    color: var(--text-soft);

    font-size: .79rem;

    font-weight: 600;

    transition: .3s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {

    color: var(--text);
}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 0;

    height: 1px;

    background: var(--purple);

    transition: .3s ease;

    transform: translateX(-50%);
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {

    width: 20px;
}



/* HEADER ACTIONS */

.header-actions {

    display: flex;

    align-items: center;

    gap: 8px;
}


.login-link {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    padding: 10px;

    font-size: .76rem;

    font-weight: 600;
}


.login-link:hover {
    color: var(--purple);
}


.header-quote {

    height: 46px;

    padding:
        0 17px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: #fff;

    border-radius: 13px;

    background: var(--accent);

    font-size: .75rem;

    font-weight: 700;

    box-shadow:
        0 10px 30px
        rgba(110, 72, 225, .25);

    transition: .3s ease;
}


.header-quote:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 40px
        rgba(110, 72, 225, .35);
}



/* THEME */

.theme-toggle {

    width: 64px;

    height: 36px;
}


.theme-track {

    position: relative;

    width: 64px;

    height: 36px;

    padding: 0 9px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border:
        1px solid var(--line);

    border-radius: 100px;

    background: var(--surface);
}


.theme-track i {

    z-index: 2;

    color: var(--muted);

    font-size: .69rem;
}


.theme-ball {

    position: absolute;

    top: 4px;

    left: 4px;

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 5px 15px
        rgba(107, 72, 220, .32);

    transition:
        .35s cubic-bezier(.22,1,.36,1);
}


html[data-theme="dark"]
.theme-ball {

    left: 32px;
}



/* MOBILE BUTTON */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid var(--line);

    border-radius: 12px;
}


.menu-toggle span {

    width: 18px;

    height: 1px;

    background: var(--text);

    transition: .3s ease;
}


.menu-toggle.active
span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);
}


.menu-toggle.active
span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.active
span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);
}



/* MOBILE MENU */

.mobile-menu {

    position: fixed;

    top: 90px;

    left: 18px;

    right: 18px;

    z-index: 995;

    display: none;

    padding: 14px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background: var(--header);

    backdrop-filter: blur(28px);

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: .3s ease;
}


.mobile-menu.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.mobile-menu a {

    display: block;

    padding: 14px;

    border-radius: 11px;

    color: var(--text-soft);

    font-size: .88rem;

    font-weight: 600;
}


.mobile-menu a:hover {

    color: var(--purple);

    background:
        rgba(120, 83, 230, .07);
}


.mobile-menu
.mobile-menu-cta {

    margin-top: 7px;

    color: #fff;

    text-align: center;

    background: var(--accent);
}



/* ==========================================================
   HERO
========================================================== */

.hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        150px 0
        100px;

    overflow: hidden;
}


.hero-image {

    position: absolute;

    inset: 0;

    z-index: -5;

    background:

        url("../images/hero/hero-lite.webp")
        center / cover
        no-repeat;
}


html[data-theme="dark"]
.hero-image {

    background-image:
        url("../images/hero/hero-dark.webp");
}


.hero-shade {

    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        var(--hero-overlay);
}


.hero::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    z-index: -3;

    height: 200px;

    background:
        linear-gradient(
            transparent,
            var(--bg)
        );
}


.hero-layout {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 70px;
}


.hero-copy {

    max-width: 780px;
}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 26px;

    color: var(--text-soft);

    font-size: .69rem;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.eyebrow span {

    width: 35px;

    height: 1px;

    background: var(--purple);
}


.hero h1 {

    font-size:
        clamp(
            4rem,
            7.3vw,
            7.6rem
        );

    max-width: 850px;
}


.hero h1 em {

    margin-top: 5px;

    background:
        linear-gradient(
            100deg,
            #6650dd,
            #a86cff,
            #5475ef
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


html[data-theme="dark"]
.hero h1 em {

    background:
        linear-gradient(
            100deg,
            #a780ff,
            #cf8dff,
            #729cff
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.hero-lead {

    max-width: 620px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: .98rem;

    line-height: 1.9;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}



/* PREMIUM BUTTON */

.luxury-button {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        8px 9px
        8px 21px;

    color: #fff;

    border-radius: 15px;

    background: var(--accent);

    font-size: .78rem;

    font-weight: 700;

    box-shadow:
        0 16px 45px
        rgba(110, 72, 230, .25);

    transition:
        .35s cubic-bezier(.22,1,.36,1);
}


.luxury-button > span {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,.16);
}


.luxury-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 22px 55px
        rgba(110, 72, 230, .38);
}


.ghost-button {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        0 22px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    color: var(--text);

    background:
        var(--surface);

    backdrop-filter: blur(14px);

    font-size: .78rem;

    font-weight: 700;

    transition: .3s ease;
}


.ghost-button:hover {

    color: var(--purple);

    border-color:
        rgba(117, 83, 231, .35);

    transform:
        translateY(-3px);
}



/* HERO TRUST */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;
}


.hero-trust span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    font-size: .71rem;

    font-weight: 600;
}


.hero-trust i {

    color: var(--purple);

    font-size: .66rem;
}



/* HERO RIGHT */

.hero-orbit {

    position: relative;

    min-height: 500px;
}


.orbit-ring {

    position: absolute;

    border:
        1px solid
        rgba(129, 92, 231, .16);

    border-radius: 50%;

    animation:
        orbitSpin
        18s linear infinite;
}


.orbit-one {

    width: 390px;

    height: 390px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);
}


.orbit-two {

    width: 290px;

    height: 290px;

    top: 50%;

    left: 50%;

    animation-direction: reverse;

    transform:
        translate(-50%, -50%);
}


@keyframes orbitSpin {

    to {

        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


.floating-panel {

    position: absolute;

    min-width: 205px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 14px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background: var(--surface);

    backdrop-filter:
        blur(24px);

    box-shadow: var(--shadow);

    animation:
        floatPanel
        6s ease-in-out infinite;
}


.panel-one {

    top: 18%;

    left: 5%;
}


.panel-two {

    top: 49%;

    right: 2%;

    animation-delay: -2s;
}


.panel-three {

    bottom: 10%;

    left: 12%;

    animation-delay: -4s;
}


@keyframes floatPanel {

    50% {

        transform:
            translateY(-12px);
    }
}


.panel-icon {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    color: #fff;

    background: var(--accent);
}


.floating-panel small {

    display: block;

    color: var(--muted);

    font-size: .49rem;

    font-weight: 700;

    letter-spacing: .13em;
}


.floating-panel strong {

    display: block;

    margin-top: 4px;

    font-size: .77rem;
}



/* HERO BOTTOM */

.hero-bottom-line {

    position: absolute;

    bottom: 28px;

    left: 50%;

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    color: var(--muted);

    font-size: .57rem;

    font-weight: 700;

    letter-spacing: .18em;

    transform: translateX(-50%);
}


.hero-bottom-line i {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: var(--purple);
}



/* ==========================================================
   COMMON SECTION
========================================================== */

.intro-section,
.services-section,
.work-section,
.philosophy-section,
.pricing-section,
.portal-section {

    padding:
        130px 0;
}


.section-number {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.1rem;

    font-style: italic;
}


.section-kicker {

    margin-top: 8px;

    color: var(--muted);

    font-size: .61rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.section-top {

    display: grid;

    grid-template-columns:
        .45fr 1.55fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 70px;
}


.section-top h2 {

    max-width: 850px;

    font-size:
        clamp(
            3.1rem,
            5.8vw,
            6rem
        );
}



/* ==========================================================
   INTRO
========================================================== */

.intro-grid {

    display: grid;

    grid-template-columns:
        .45fr 1.55fr;

    gap: 50px;
}


.intro-label {

    padding-top: 10px;
}


.intro-label span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-style: italic;
}


.intro-label p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.intro-copy h2 {

    max-width: 920px;

    font-size:
        clamp(
            3.3rem,
            6vw,
            6.5rem
        );
}


.intro-copy > p {

    max-width: 650px;

    margin-top: 35px;

    color: var(--text-soft);

    line-height: 1.9;

    font-size: .93rem;
}



/* ==========================================================
   SERVICES
========================================================== */

.services-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(117,83,231,.035),
            transparent
        );
}


.services-list {

    border-top:
        1px solid var(--line);
}


.service-row {

    position: relative;

    display: grid;

    grid-template-columns:
        .16fr
        .76fr
        .75fr
        auto;

    align-items: center;

    gap: 35px;

    min-height: 190px;

    border-bottom:
        1px solid var(--line);

    transition: .4s ease;

    cursor: pointer;
}


.service-row::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(117,83,231,.06),
            transparent
        );

    opacity: 0;

    transition: .4s ease;
}


.service-row:hover::before {
    opacity: 1;
}


.service-row:hover {

    padding-left: 18px;
}


.service-index {

    color: var(--muted);

    font-size: .62rem;

    letter-spacing: .15em;
}


.service-name > span {

    display: inline-block;

    margin-bottom: 8px;

    color: var(--purple);

    font-size: .56rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.service-name h3 {

    font-size:
        clamp(
            2.5rem,
            4.2vw,
            4.8rem
        );
}


.service-row > p {

    max-width: 410px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.8;
}


.round-action {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    background: var(--surface);

    transition: .35s ease;
}


.service-row:hover
.round-action {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform: rotate(8deg);
}



/* ==========================================================
   FEATURE STRIP
========================================================== */

.feature-strip {

    width: 100%;

    overflow: hidden;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    background: var(--surface);
}


.feature-track {

    width: max-content;

    height: 64px;

    display: flex;

    align-items: center;

    gap: 30px;

    animation:
        marquee
        28s linear infinite;
}


.feature-track span {

    color: var(--text-soft);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.feature-track i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--purple);
}


@keyframes marquee {

    to {
        transform: translateX(-35%);
    }
}



/* ==========================================================
   PROJECTS
========================================================== */

.project-showcase {

    display: grid;

    grid-template-columns:
        1.35fr .65fr;

    align-items: center;

    gap: 65px;

    margin-bottom: 110px;
}


.project-reverse {

    grid-template-columns:
        .65fr 1.35fr;
}


.project-reverse
.project-visual {

    order: 2;
}


.project-visual {

    position: relative;

    padding: 9px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    background: var(--surface);

    box-shadow: var(--shadow);

    overflow: hidden;

    transition:
        .5s cubic-bezier(.22,1,.36,1);
}


.project-visual:hover {

    transform:
        translateY(-8px)
        rotateX(1deg)
        rotateY(-1deg);

    border-color:
        rgba(117, 83, 231, .28);
}


.project-visual img {

    aspect-ratio: 16 / 10;

    object-fit: cover;

    border-radius: 19px;
}


.project-browser-bar {

    position: absolute;

    top: 20px;

    left: 20px;

    right: 20px;

    height: 35px;

    display: flex;

    align-items: center;

    padding: 0 12px;

    gap: 6px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 10px;

    background:
        rgba(7,9,18,.50);

    backdrop-filter:
        blur(14px);
}


.project-browser-bar span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.42);
}


.project-browser-bar p {

    margin-left: 8px;

    color:
        rgba(255,255,255,.70);

    font-size: .54rem;
}


.project-number {

    display: block;

    margin-bottom: 20px;

    color: var(--purple);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.project-info h3 {

    font-size:
        clamp(
            3rem,
            5vw,
            5.3rem
        );
}


.project-info > p {

    margin-top: 14px;

    color: var(--text-soft);

    font-size: .77rem;
}


.project-actions {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;

    margin-top: 35px;
}


.text-action {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--text);

    font-size: .75rem;

    font-weight: 700;

    transition: .3s ease;
}


.text-action::after {

    content: "";

    width: 0;

    height: 1px;

    background: var(--purple);

    transition: .3s ease;
}


.text-action:hover {

    color: var(--purple);
}


.future-work {

    display: flex;

    justify-content: center;
}


.future-work p {

    padding:
        12px 18px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--muted);

    background: var(--surface);

    font-size: .68rem;
}



/* ==========================================================
   PHILOSOPHY
========================================================== */

.philosophy-section {

    background: var(--bg-deep);
}


.philosophy-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;
}


.philosophy-layout > div:first-child {

    position: sticky;

    top: 130px;

    align-self: start;
}


.philosophy-layout h2 {

    margin-top: 25px;

    font-size:
        clamp(
            3.2rem,
            5.5vw,
            6rem
        );
}


.philosophy-list {

    border-top:
        1px solid var(--line);
}


.philosophy-list article {

    display: grid;

    grid-template-columns:
        80px 1fr;

    gap: 25px;

    padding:
        37px 0;

    border-bottom:
        1px solid var(--line);
}


.philosophy-list article > span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.3rem;

    font-style: italic;
}


.philosophy-list h3 {

    font-size:
        2rem;
}


.philosophy-list p {

    max-width: 520px;

    margin-top: 11px;

    color: var(--text-soft);

    font-size: .82rem;

    line-height: 1.85;
}



/* ==========================================================
   PRICING
========================================================== */

.pricing-heading {

    max-width: 820px;

    margin-bottom: 65px;
}


.pricing-heading h2 {

    margin-top: 25px;

    font-size:
        clamp(
            3.4rem,
            6vw,
            6.5rem
        );
}


.pricing-heading > p:last-child {

    margin-top: 25px;

    color: var(--text-soft);

    font-size: .84rem;
}


.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.price-card {

    position: relative;

    min-height: 590px;

    display: flex;

    flex-direction: column;

    padding: 33px;

    border:
        1px solid var(--line);

    border-radius: 26px;

    background:
        var(--surface);

    backdrop-filter: blur(18px);

    transition:
        .4s cubic-bezier(.22,1,.36,1);

    overflow: hidden;
}


.price-card::before {

    content: "";

    position: absolute;

    top: -100px;

    right: -100px;

    width: 240px;

    height: 240px;

    border-radius: 50%;

    background:
        rgba(123, 84, 238, .08);

    filter: blur(50px);

    transition: .4s ease;
}


.price-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(117, 83, 231, .32);

    box-shadow: var(--shadow);
}


.price-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 50px;
}


.price-top span {

    color: var(--muted);

    font-size: .58rem;
}


.price-top p {

    color: var(--purple);

    font-size: .56rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.price-card h3 {

    font-size: 2.7rem;
}


.price {

    display: flex;

    align-items: flex-start;

    gap: 4px;

    margin-top: 30px;
}


.price small {

    margin-top: 13px;

    color: var(--muted);

    font-size: .48rem;

    font-weight: 700;

    letter-spacing: .12em;
}


.price strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 4.4rem;

    font-weight: 600;

    line-height: .8;
}


.price > span {

    color: var(--purple);

    font-size: 1.1rem;
}


.price-description {

    margin-top: 30px;

    color: var(--text-soft);

    font-size: .8rem;

    line-height: 1.8;
}


.price-card ul {

    display: grid;

    gap: 14px;

    margin:
        28px 0
        35px;
}


.price-card li {

    color: var(--text-soft);

    font-size: .76rem;
}


.price-card li::before {

    content: "—";

    margin-right: 10px;

    color: var(--purple);
}


.plan-button {

    width: 100%;

    min-height: 50px;

    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 17px;

    border:
        1px solid var(--line);

    border-radius: 13px;

    font-size: .73rem;

    font-weight: 700;

    transition: .3s ease;
}


.plan-button:hover {

    color: #fff;

    border-color: transparent;

    background: var(--accent);
}


.featured-price {

    border-color:
        rgba(124, 84, 236, .35);

    background:
        linear-gradient(
            160deg,
            rgba(131,89,241,.12),
            var(--surface)
        );

    transform: translateY(-15px);
}


.featured-price:hover {

    transform: translateY(-23px);
}


.featured-label {

    position: absolute;

    top: 0;

    right: 25px;

    padding:
        8px 13px;

    color: #fff;

    border-radius:
        0 0 10px 10px;

    background: var(--accent);

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.custom-app-price {

    margin-top: 20px;

    min-height: 105px;

    display: grid;

    grid-template-columns:
        .5fr 1fr auto;

    align-items: center;

    gap: 25px;

    padding:
        20px 27px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background: var(--surface);
}


.custom-app-price > span {

    color: var(--purple);

    font-size: .61rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.custom-app-price p {

    color: var(--text-soft);

    font-size: .77rem;
}


.custom-app-price button {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: .72rem;

    font-weight: 700;
}



/* ==========================================================
   PORTAL
========================================================== */

.portal-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(117,83,231,.045),
            transparent
        );
}


.portal-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items: center;

    gap: 90px;
}


.portal-copy h2 {

    margin-top: 25px;

    font-size:
        clamp(
            3.4rem,
            5.5vw,
            6rem
        );
}


.portal-copy > p {

    max-width: 500px;

    margin:
        28px 0
        33px;

    color: var(--text-soft);

    font-size: .85rem;

    line-height: 1.9;
}



/* DASHBOARD */

.dashboard-mockup {

    border:
        1px solid var(--line);

    border-radius: 27px;

    background: var(--surface);

    box-shadow: var(--shadow);

    overflow: hidden;

    transform:
        perspective(1200px)
        rotateY(-4deg)
        rotateX(2deg);
}


.dashboard-top {

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 20px;

    border-bottom:
        1px solid var(--line);
}


.dashboard-top > div {

    display: flex;

    gap: 6px;
}


.dashboard-top > div span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--muted);

    opacity: .45;
}


.dashboard-top p {

    color: var(--muted);

    font-size: .49rem;

    letter-spacing: .15em;
}


.dashboard-body {

    min-height: 400px;

    display: grid;

    grid-template-columns:
        80px 1fr;
}


.dashboard-body aside {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    padding-top: 25px;

    border-right:
        1px solid var(--line);
}


.dash-logo {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    color: #fff;

    border-radius: 11px;

    background: var(--accent);

    font-size: .6rem;

    font-weight: 800;
}


.dashboard-body aside > span {

    width: 28px;

    height: 6px;

    border-radius: 20px;

    background: var(--line);
}


.dash-main {

    padding: 35px;
}


.dash-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.dash-head small {

    display: block;

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .15em;
}


.dash-head strong {

    display: block;

    margin-top: 5px;

    font-size: .9rem;
}


.status {

    padding:
        7px 10px;

    color: var(--purple);

    border:
        1px solid
        rgba(120,83,230,.2);

    border-radius: 100px;

    background:
        rgba(120,83,230,.06);

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .08em;
}


.progress-card {

    margin-top: 28px;

    padding: 25px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        var(--surface-solid);
}


.progress-card span {

    display: block;

    color: var(--muted);

    font-size: .51rem;
}


.progress-card strong {

    display: block;

    margin-top: 5px;

    font-size: .8rem;
}


.progress-line {

    height: 5px;

    margin-top: 24px;

    border-radius: 100px;

    background: var(--line);

    overflow: hidden;
}


.progress-line span {

    width: 68%;

    height: 100%;

    border-radius: inherit;

    background: var(--accent);
}


.dash-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 11px;

    margin-top: 12px;
}


.dash-cards article {

    min-height: 105px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 17px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        var(--surface-solid);
}


.dash-cards i {

    color: var(--purple);
}


.dash-cards span {

    color: var(--text-soft);

    font-size: .62rem;
}



/* ==========================================================
   LOCATION
========================================================== */

.location-section {

    position: relative;

    min-height: 560px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}


.location-globe {

    position: absolute;

    right: 7%;

    font-size: 25rem;

    color: var(--purple);

    opacity: .045;

    animation:
        globeFloat
        7s ease-in-out infinite;
}


@keyframes globeFloat {

    50% {
        transform:
            translateY(-15px)
            rotate(4deg);
    }
}


.location-content {

    position: relative;

    z-index: 2;
}


.location-content h2 {

    max-width: 900px;

    margin-top: 23px;

    font-size:
        clamp(
            4rem,
            7vw,
            7.5rem
        );
}


.location-content > p:last-child {

    margin-top: 30px;

    color: var(--text-soft);

    font-size: .78rem;

    letter-spacing: .08em;
}



/* ==========================================================
   CONTACT
========================================================== */

.contact-section {

    padding:
        130px 0;
}


.contact-panel {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 60px;

    border:
        1px solid var(--line);

    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            rgba(119,82,232,.12),
            var(--surface),
            rgba(74,111,245,.07)
        );

    box-shadow: var(--shadow);

    overflow: hidden;
}


.contact-panel::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -250px;

    left: 50%;

    border-radius: 50%;

    background:
        rgba(151,97,255,.22);

    filter: blur(100px);

    transform: translateX(-50%);
}


.contact-small {

    position: relative;

    z-index: 2;

    color: var(--purple);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.contact-panel h2 {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin-top: 24px;

    font-size:
        clamp(
            4rem,
            7vw,
            7.5rem
        );
}


.contact-panel > p {

    position: relative;

    z-index: 2;

    max-width: 520px;

    margin-top: 25px;

    color: var(--text-soft);

    line-height: 1.8;

    font-size: .82rem;
}


.contact-actions {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

    margin-top: 35px;
}



/* ==========================================================
   FOOTER
========================================================== */

.footer {

    padding:
        80px 0 25px;

    border-top:
        1px solid var(--line);

    background: var(--bg-deep);
}


.footer-top {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;
}


.footer-brand p {

    max-width: 320px;

    margin-top: 22px;

    color: var(--text-soft);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.25rem;

    font-style: italic;
}


.footer-nav {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;
}


.footer-nav > div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.footer-nav h4 {

    margin-bottom: 10px;

    color: var(--text);

    font-size: .68rem;

    letter-spacing: .1em;
}


.footer-nav a,
.footer-nav span {

    color: var(--text-soft);

    font-size: .7rem;

    line-height: 1.7;

    transition: .3s ease;
}


.footer-nav a:hover {

    color: var(--purple);
}


.footer-bottom {

    margin-top: 70px;

    padding-top: 22px;

    border-top:
        1px solid var(--line);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    color: var(--muted);

    font-size: .55rem;

    letter-spacing: .08em;
}


.footer-bottom > div {

    display: flex;

    gap: 18px;
}



/* ==========================================================
   DETAIL MODAL
========================================================== */

.detail-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 22px;

    background:
        rgba(5, 5, 10, .60);

    backdrop-filter:
        blur(16px);

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;
}


.detail-overlay.active {

    opacity: 1;

    visibility: visible;
}


.detail-modal {

    position: relative;

    width:
        min(
            820px,
            100%
        );

    max-height:
        calc(100vh - 44px);

    overflow-y: auto;

    padding: 48px;

    border:
        1px solid var(--line);

    border-radius: 30px;

    background: var(--surface-solid);

    box-shadow: var(--shadow);

    transform:
        translateY(25px)
        scale(.98);

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.detail-overlay.active
.detail-modal {

    transform:
        translateY(0)
        scale(1);
}


.detail-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    transition: .3s ease;
}


.detail-close:hover {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform: rotate(90deg);
}


.detail-label {

    color: var(--purple);

    font-size: .57rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.detail-modal h2 {

    max-width: 660px;

    margin-top: 22px;

    font-size:
        clamp(
            3rem,
            6vw,
            5rem
        );
}


.detail-description {

    max-width: 680px;

    margin-top: 22px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.9;
}


.detail-columns {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 35px;

    margin:
        38px 0;
}


.detail-column-title {

    display: block;

    margin-bottom: 17px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .15em;
}


#detailFeatures {

    display: grid;

    gap: 11px;
}


#detailFeatures li {

    color: var(--text-soft);

    font-size: .76rem;
}


#detailFeatures li::before {

    content: "✓";

    margin-right: 10px;

    color: var(--purple);
}


.detail-meta {

    display: grid;

    gap: 10px;
}


.detail-meta div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 10px;

    border-bottom:
        1px solid var(--line);

    color: var(--text-soft);

    font-size: .72rem;
}


.detail-meta strong {

    color: var(--text);

    font-weight: 600;
}



/* ==========================================================
   WHATSAPP
========================================================== */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 950;

    width: 54px;

    height: 54px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 50%;

    background: #20ad5b;

    box-shadow:
        0 16px 40px
        rgba(31,170,88,.30);

    font-size: 1.3rem;

    transition: .3s ease;
}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.04);
}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media
(max-width: 1100px) {

    .desktop-nav,
    .login-link {

        display: none;
    }


    .menu-toggle {

        display: flex;
    }


    .mobile-menu {

        display: block;
    }


    .hero-layout {

        grid-template-columns:
            1fr .65fr;

        gap: 20px;
    }


    .pricing-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .pricing-grid
    .price-card:last-child {

        grid-column:
            1 / 3;
    }


    .footer-top {

        grid-template-columns:
            1fr;
    }

}



@media
(max-width: 850px) {

    .intro-section,
    .services-section,
    .work-section,
    .philosophy-section,
    .pricing-section,
    .portal-section,
    .contact-section {

        padding:
            90px 0;
    }


    .hero {

        min-height: auto;

        padding:
            145px 0
            90px;
    }


    .hero-layout {

        grid-template-columns:
            1fr;
    }


    .hero-orbit {

        min-height: 280px;
    }


    .orbit-one {

        width: 250px;
        height: 250px;
    }


    .orbit-two {

        width: 180px;
        height: 180px;
    }


    .section-top,
    .intro-grid {

        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .service-row {

        grid-template-columns:
            50px 1fr auto;
    }


    .service-row > p {

        grid-column:
            2 / 4;

        padding-bottom: 25px;
    }


    .project-showcase,
    .project-reverse {

        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .project-reverse
    .project-visual {

        order: initial;
    }


    .philosophy-layout {

        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .philosophy-layout
    > div:first-child {

        position: static;
    }


    .pricing-grid {

        grid-template-columns:
            1fr;
    }


    .pricing-grid
    .price-card:last-child {

        grid-column:
            auto;
    }


    .featured-price,
    .featured-price:hover {

        transform: none;
    }


    .custom-app-price {

        grid-template-columns:
            1fr;

        align-items: start;
    }


    .portal-layout {

        grid-template-columns:
            1fr;

        gap: 55px;
    }


    .dashboard-mockup {

        transform: none;
    }


    .footer-nav {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



@media
(max-width: 620px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                1280px
            );
    }


    .header {

        top: 10px;
    }


    .header-shell {

        width:
            calc(100% - 20px);

        height: 64px;

        padding:
            0 9px
            0 12px;

        border-radius: 18px;
    }


    .brand img {

        width: 38px;

        height: 38px;
    }


    .brand-copy strong {

        font-size: .79rem;
    }


    .brand-copy span {

        font-size: .4rem;
    }


    .header-quote {

        display: none;
    }


    .theme-toggle,
    .theme-track {

        width: 58px;
    }


    html[data-theme="dark"]
    .theme-ball {

        left: 26px;
    }


    .hero {

        padding:
            120px 0
            85px;
    }


    .hero-image {

        background-position:
            68% center;
    }


    :root {

        --hero-overlay:

            linear-gradient(
                180deg,
                rgba(244,241,251,.80),
                rgba(244,241,251,.94) 56%,
                rgba(244,241,251,1)
            );
    }


    html[data-theme="dark"] {

        --hero-overlay:

            linear-gradient(
                180deg,
                rgba(7,9,18,.70),
                rgba(7,9,18,.93) 58%,
                rgba(7,9,18,1)
            );
    }


    .hero h1 {

        font-size:
            clamp(
                3.4rem,
                16vw,
                5.2rem
            );
    }


    .hero-lead {

        font-size: .88rem;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .hero-buttons a {

        width: 100%;
    }


    .hero-trust {

        flex-direction: column;

        gap: 10px;
    }


    .hero-orbit {

        min-height: 250px;
    }


    .floating-panel {

        min-width: 170px;

        padding: 11px;
    }


    .panel-icon {

        width: 36px;

        height: 36px;
    }


    .floating-panel strong {

        font-size: .67rem;
    }


    .panel-one {

        top: 12%;
        left: 0;
    }


    .panel-two {

        top: 44%;
        right: 0;
    }


    .panel-three {

        bottom: 0;
        left: 8%;
    }


    .hero-bottom-line {

        display: none;
    }


    .intro-copy h2,
    .section-top h2,
    .philosophy-layout h2,
    .pricing-heading h2,
    .portal-copy h2,
    .location-content h2,
    .contact-panel h2 {

        font-size:
            clamp(
                3rem,
                14vw,
                4.5rem
            );
    }


    .service-row {

        grid-template-columns:
            36px 1fr auto;

        gap: 15px;

        padding:
            25px 0;
    }


    .service-row:hover {

        padding-left: 0;
    }


    .service-name h3 {

        font-size: 2.5rem;
    }


    .round-action {

        width: 45px;

        height: 45px;
    }


    .project-showcase {

        margin-bottom: 75px;
    }


    .project-info h3 {

        font-size: 3rem;
    }


    .philosophy-list article {

        grid-template-columns:
            45px 1fr;

        gap: 12px;
    }


    .price-card {

        min-height: auto;

        padding: 27px 22px;
    }


    .price strong {

        font-size: 4rem;
    }


    .dashboard-body {

        grid-template-columns:
            50px 1fr;
    }


    .dash-main {

        padding:
            20px 14px;
    }


    .dash-cards {

        grid-template-columns:
            1fr;
    }


    .location-section {

        min-height: 470px;
    }


    .location-globe {

        right: -25%;

        font-size: 18rem;
    }


    .contact-panel {

        min-height: 500px;

        padding:
            45px 20px;

        border-radius: 25px;
    }


    .contact-actions {

        width: 100%;

        flex-direction: column;
    }


    .contact-actions a {

        width: 100%;
    }


    .footer-nav {

        grid-template-columns:
            1fr;
    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;
    }


    .detail-modal {

        padding:
            38px 22px
            25px;
    }


    .detail-columns {

        grid-template-columns:
            1fr;
    }


    .detail-modal h2 {

        font-size: 3.2rem;
    }

}



@media
(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;
    }

}




/* ==========================================================
   LAXNA TECHNOLOGIES
   ABOUT PAGE
   Paste below the existing style.css
========================================================== */


/* ==========================================================
   01. ABOUT HERO
========================================================== */

.about-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        165px 0
        110px;

    overflow: hidden;
}


.about-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -4;

    background:

        radial-gradient(
            circle at 78% 25%,
            rgba(150, 98, 255, .16),
            transparent 31%
        ),

        radial-gradient(
            circle at 90% 78%,
            rgba(76, 119, 245, .10),
            transparent 28%
        ),

        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-deep)
        );
}


.about-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -3;

    opacity: .17;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 20%,
            #000 75%,
            transparent
        );
}


.about-hero-glow {

    position: absolute;

    top: 12%;

    right: -120px;

    width: 620px;

    height: 620px;

    z-index: -2;

    border-radius: 50%;

    background:
        rgba(127, 83, 238, .12);

    filter: blur(130px);

    animation:
        aboutGlowFloat
        9s ease-in-out infinite;
}


@keyframes aboutGlowFloat {

    50% {

        transform:
            translate(-40px, 30px)
            scale(1.08);
    }
}


.about-hero-layout {

    display: grid;

    grid-template-columns:
        .38fr
        1.62fr;

    gap: 65px;

    align-items: start;
}


.about-hero-label {

    padding-top: 17px;
}


.about-hero-label span {

    color: var(--purple);

    font-size: .57rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.about-hero-label p {

    margin-top: 11px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;
}


.about-hero-content {

    position: relative;

    z-index: 3;

    max-width: 1000px;
}


.about-hero-content h1 {

    font-size:
        clamp(
            4.4rem,
            7.5vw,
            8rem
        );

    line-height: .90;
}


.about-hero-content h1 em {

    margin-top: 12px;

    background:
        linear-gradient(
            100deg,
            var(--purple),
            #a96eff,
            var(--blue)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.about-hero-content > p {

    max-width: 660px;

    margin-top: 35px;

    color: var(--text-soft);

    font-size: .94rem;

    line-height: 1.95;
}


.about-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 37px;
}


.about-hero-word {

    position: absolute;

    right: -25px;

    bottom: -60px;

    z-index: 0;

    color: transparent;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            10rem,
            25vw,
            28rem
        );

    font-weight: 700;

    line-height: .7;

    -webkit-text-stroke:
        1px var(--line);

    opacity: .45;

    pointer-events: none;

    user-select: none;
}



/* ==========================================================
   02. ABOUT STORY
========================================================== */

.about-story {

    padding:
        140px 0;
}


.about-story-grid {

    display: grid;

    grid-template-columns:
        .38fr
        1.62fr;

    gap: 65px;
}


.about-side-label {

    padding-top: 10px;
}


.about-side-label span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.3rem;

    font-style: italic;
}


.about-side-label p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .56rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.about-story-content h2 {

    max-width: 900px;

    font-size:
        clamp(
            3.8rem,
            6.5vw,
            7rem
        );
}


.about-story-text {

    max-width: 790px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        25px 50px;

    margin-top: 55px;
}


.about-story-text p {

    color: var(--text-soft);

    font-size: .87rem;

    line-height: 1.95;
}


.about-story-text p:first-child {

    grid-column:
        1 / 3;

    color: var(--text);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.65rem;

    line-height: 1.4;
}



/* ==========================================================
   03. PRINCIPLES
========================================================== */

.principles-section {

    padding:
        130px 0;

    background:
        var(--bg-deep);
}


.principles-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


.principle-card {

    position: relative;

    min-height: 330px;

    padding: 34px;

    border:
        1px solid var(--line);

    border-radius: 27px;

    background:
        var(--surface);

    overflow: hidden;

    transition:
        .45s cubic-bezier(.22,1,.36,1);
}


.principle-card::before {

    content: "";

    position: absolute;

    right: -90px;

    top: -90px;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background:
        rgba(126, 86, 239, .10);

    filter: blur(50px);

    transition: .5s ease;
}


.principle-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(138, 97, 245, .30);

    box-shadow: var(--shadow);
}


.principle-card:hover::before {

    transform:
        scale(1.35);
}


.principle-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.principle-top span {

    color: var(--muted);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .14em;
}


.principle-top i {

    color: var(--purple);

    font-size: 1.15rem;
}


.principle-card h3 {

    position: relative;

    z-index: 2;

    max-width: 420px;

    margin-top: 90px;

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.6rem
        );
}


.principle-card p {

    position: relative;

    z-index: 2;

    max-width: 450px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: .8rem;

    line-height: 1.85;
}



/* ==========================================================
   04. CAPABILITIES
========================================================== */

.about-capabilities {

    padding:
        140px 0;
}


.capabilities-layout {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    align-items: start;

    gap: 90px;
}


.capabilities-copy {

    position: sticky;

    top: 130px;
}


.capabilities-copy h2 {

    max-width: 600px;

    margin-top: 24px;

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            6rem
        );
}


.capabilities-copy > p:last-child {

    max-width: 470px;

    margin-top: 26px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.9;
}


.capabilities-list {

    border-top:
        1px solid var(--line);
}


.capability-row {

    position: relative;

    min-height: 210px;

    display: grid;

    grid-template-columns:
        60px
        1fr
        auto;

    align-items: center;

    gap: 25px;

    border-bottom:
        1px solid var(--line);

    overflow: hidden;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.capability-row::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(119, 82, 232, .07),
            transparent
        );

    transition: .4s ease;
}


.capability-row:hover {

    padding-left: 18px;
}


.capability-row:hover::before {

    opacity: 1;
}


.capability-row > span {

    color: var(--muted);

    font-size: .58rem;
}


.capability-row small {

    display: block;

    margin-bottom: 8px;

    color: var(--purple);

    font-size: .53rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.capability-row h3 {

    font-size:
        clamp(
            2.6rem,
            4.6vw,
            5rem
        );
}


.capability-row > i {

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    transition: .35s ease;
}


.capability-row:hover > i {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform:
        rotate(-35deg);
}



/* ==========================================================
   05. APPROACH
========================================================== */

.approach-section {

    padding:
        140px 0;

    background:

        linear-gradient(
            180deg,
            transparent,
            rgba(117,83,231,.04),
            transparent
        );
}


.approach-heading {

    max-width: 850px;

    margin-bottom: 80px;
}


.approach-heading h2 {

    margin-top: 24px;

    font-size:
        clamp(
            3.8rem,
            6.4vw,
            7rem
        );
}


.approach-timeline {

    position: relative;

    border-top:
        1px solid var(--line);
}


.approach-timeline article {

    display: grid;

    grid-template-columns:
        90px
        110px
        1fr;

    align-items: start;

    gap: 30px;

    min-height: 235px;

    padding:
        42px 0;

    border-bottom:
        1px solid var(--line);
}


.approach-number {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.35rem;

    font-style: italic;
}


.approach-line {

    position: relative;

    width: 70px;

    height: 1px;

    margin-top: 15px;

    background: var(--line);
}


.approach-line::after {

    content: "";

    position: absolute;

    top: 50%;

    right: 0;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 15px var(--purple);

    transform:
        translateY(-50%);
}


.approach-timeline small {

    color: var(--purple);

    font-size: .52rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.approach-timeline h3 {

    margin-top: 12px;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4rem
        );
}


.approach-timeline p {

    max-width: 600px;

    margin-top: 15px;

    color: var(--text-soft);

    font-size: .82rem;

    line-height: 1.9;
}



/* ==========================================================
   06. WORLDWIDE
========================================================== */

.about-worldwide {

    position: relative;

    padding:
        145px 0;

    overflow: hidden;

    background: var(--bg-deep);
}


.about-worldwide::before {

    content: "";

    position: absolute;

    right: -120px;

    bottom: -260px;

    width: 680px;

    height: 680px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    box-shadow:

        0 0 0 70px
        rgba(120, 83, 230, .018),

        0 0 0 140px
        rgba(120, 83, 230, .012),

        0 0 0 210px
        rgba(120, 83, 230, .008);
}


.about-world-glow {

    position: absolute;

    right: -50px;

    bottom: -100px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(124, 84, 235, .12);

    filter: blur(120px);
}


.about-world-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    align-items: end;

    gap: 90px;
}


.about-world-layout h2 {

    max-width: 750px;

    margin-top: 24px;

    font-size:
        clamp(
            3.7rem,
            6vw,
            6.5rem
        );
}


.about-location-content > p {

    max-width: 540px;

    color: var(--text-soft);

    font-size: .88rem;

    line-height: 1.9;
}


.about-location-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}


.about-location-tags span {

    padding:
        9px 14px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    background: var(--surface);

    backdrop-filter: blur(14px);

    font-size: .61rem;

    font-weight: 700;

    letter-spacing: .08em;

    transition: .3s ease;
}


.about-location-tags span:hover {

    color: var(--purple);

    border-color:
        rgba(120, 83, 230, .28);

    transform:
        translateY(-3px);
}



/* ==========================================================
   07. CLIENT EXPERIENCE
========================================================== */

.about-client-section {

    padding:
        145px 0;
}


.about-client-layout {

    display: grid;

    grid-template-columns:
        1.12fr
        .88fr;

    align-items: center;

    gap: 90px;
}


.about-client-visual {

    position: relative;

    min-height: 520px;

    display: grid;

    place-items: center;
}


.about-client-ring {

    position: absolute;

    width: 410px;

    height: 410px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    box-shadow:

        0 0 0 45px
        rgba(121, 84, 236, .025),

        0 0 0 90px
        rgba(121, 84, 236, .015);

    animation:
        clientRing
        8s ease-in-out infinite;
}


@keyframes clientRing {

    50% {

        transform:
            scale(1.04)
            rotate(4deg);
    }
}


.about-client-card {

    position: relative;

    z-index: 3;

    width:
        min(
            430px,
            90%
        );

    padding: 35px;

    border:
        1px solid var(--line);

    border-radius: 27px;

    background: var(--surface);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow: var(--shadow);
}


.about-client-card > small {

    color: var(--purple);

    font-size: .53rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.about-client-card > h3 {

    margin-top: 22px;

    font-size: 2.8rem;
}


.about-mini-status {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.about-mini-status > div {

    min-height: 100px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 16px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface-solid);
}


.about-mini-status i {

    color: var(--purple);
}


.about-mini-status span {

    color: var(--text-soft);

    font-size: .61rem;

    font-weight: 600;
}


.about-client-copy h2 {

    max-width: 600px;

    margin-top: 24px;

    font-size:
        clamp(
            3.7rem,
            5.8vw,
            6.4rem
        );
}


.about-client-copy > p {

    max-width: 520px;

    margin:
        28px 0
        32px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.9;
}



/* ==========================================================
   08. DESKTOP MICRO INTERACTIONS
========================================================== */

@media
(hover: hover) {

    .principle-card,
    .capability-row,
    .about-client-card {

        will-change: transform;
    }


    .about-hero-actions
    .luxury-button:hover {

        padding-right: 12px;
    }
}



/* ==========================================================
   09. TABLET
========================================================== */

@media
(max-width: 950px) {

    .about-hero-layout,
    .about-story-grid {

        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .about-hero {

        min-height: auto;

        padding:
            155px 0
            115px;
    }


    .about-hero-label {

        display: flex;

        align-items: center;

        gap: 15px;

        padding-top: 0;
    }


    .about-hero-label p {

        margin-top: 0;
    }


    .principles-grid {

        grid-template-columns:
            1fr;
    }


    .capabilities-layout,
    .about-world-layout,
    .about-client-layout {

        grid-template-columns:
            1fr;

        gap: 55px;
    }


    .capabilities-copy {

        position: static;
    }


    .about-world-layout {

        align-items: start;
    }


    .about-client-visual {

        min-height: 470px;
    }
}



/* ==========================================================
   10. MOBILE
========================================================== */

@media
(max-width: 620px) {

    .about-hero {

        padding:
            125px 0
            90px;
    }


    .about-hero::after {

        background-size:
            48px 48px;
    }


    .about-hero-content h1 {

        font-size:
            clamp(
                3.7rem,
                17vw,
                5.3rem
            );

        line-height: .92;
    }


    .about-hero-content > p {

        margin-top: 27px;

        font-size: .86rem;
    }


    .about-hero-actions {

        flex-direction: column;
    }


    .about-hero-actions a {

        width: 100%;
    }


    .about-hero-word {

        right: -15px;

        bottom: -15px;

        font-size: 9rem;
    }


    /* STORY */

    .about-story {

        padding:
            90px 0;
    }


    .about-story-content h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.8rem
            );
    }


    .about-story-text {

        grid-template-columns:
            1fr;

        gap: 22px;

        margin-top: 40px;
    }


    .about-story-text p:first-child {

        grid-column:
            auto;

        font-size: 1.4rem;
    }


    /* PRINCIPLES */

    .principles-section {

        padding:
            90px 0;
    }


    .principle-card {

        min-height: 290px;

        padding: 26px 23px;
    }


    .principle-card h3 {

        margin-top: 70px;

        font-size: 2.7rem;
    }


    /* CAPABILITIES */

    .about-capabilities {

        padding:
            95px 0;
    }


    .capabilities-copy h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.7rem
            );
    }


    .capability-row {

        min-height: 155px;

        grid-template-columns:
            33px
            1fr
            43px;

        gap: 12px;
    }


    .capability-row:hover {

        padding-left: 0;
    }


    .capability-row h3 {

        font-size: 2.55rem;
    }


    .capability-row > i {

        width: 43px;

        height: 43px;
    }


    /* APPROACH */

    .approach-section {

        padding:
            95px 0;
    }


    .approach-heading {

        margin-bottom: 55px;
    }


    .approach-heading h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.8rem
            );
    }


    .approach-timeline article {

        grid-template-columns:
            40px
            1fr;

        gap: 16px;

        min-height: auto;

        padding:
            32px 0;
    }


    .approach-line {

        display: none;
    }


    .approach-timeline article > div:last-child {

        grid-column: 2;
    }


    .approach-timeline h3 {

        font-size: 2.6rem;
    }


    /* WORLD */

    .about-worldwide {

        padding:
            95px 0;
    }


    .about-world-layout h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.8rem
            );
    }


    .about-worldwide::before {

        width: 400px;

        height: 400px;

        right: -220px;

        bottom: -170px;
    }


    /* CLIENT */

    .about-client-section {

        padding:
            95px 0;
    }


    .about-client-visual {

        min-height: 390px;
    }


    .about-client-ring {

        width: 280px;

        height: 280px;
    }


    .about-client-card {

        width: 95%;

        padding: 25px 20px;
    }


    .about-client-card > h3 {

        font-size: 2.4rem;
    }


    .about-mini-status {

        grid-template-columns:
            1fr 1fr;
    }


    .about-mini-status > div {

        min-height: 90px;
    }


    .about-client-copy h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.8rem
            );
    }

}



/* ==========================================================
   11. SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .about-hero-content h1 {

        font-size: 3.45rem;
    }


    .about-mini-status {

        grid-template-columns:
            1fr;
    }


    .about-client-ring {

        width: 240px;

        height: 240px;
    }


    .capability-row h3 {

        font-size: 2.2rem;
    }

}





/* ==========================================================
   LAXNA TECHNOLOGIES
   SERVICES PAGE
========================================================== */


/* ==========================================================
   01. SERVICES HERO
========================================================== */

.services-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        165px 0
        110px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-deep)
        );
}


.services-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        75px 75px;

    mask-image:
        radial-gradient(
            circle at center,
            #000,
            transparent 78%
        );
}


.services-hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;
}


.glow-left {

    width: 500px;

    height: 500px;

    left: -220px;

    top: 15%;

    background:
        rgba(146, 91, 255, .16);
}


.glow-right {

    width: 620px;

    height: 620px;

    right: -220px;

    bottom: -180px;

    background:
        rgba(73, 111, 245, .13);
}


.services-hero-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .35fr
        1.65fr;

    gap: 60px;
}


.services-hero-small {

    padding-top: 18px;
}


.services-hero-small span {

    color: var(--purple);

    font-size: .56rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.services-hero-small p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.services-hero-content {

    max-width: 1020px;
}


.services-hero-content h1 {

    margin-top: 25px;

    font-size:
        clamp(
            4.6rem,
            8vw,
            8.5rem
        );

    line-height: .88;
}


.services-hero-description {

    max-width: 680px;

    margin-top: 38px;

    color: var(--text-soft);

    font-size: .93rem;

    line-height: 1.95;
}


.services-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}


.services-hero-footer {

    position: absolute;

    left: 50%;

    bottom: 28px;

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;

    transform:
        translateX(-50%);
}


.services-hero-footer i {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--purple);
}



/* ==========================================================
   02. SERVICE INTRO
========================================================== */

.service-intro {

    padding:
        135px 0;
}


.service-intro-layout {

    display: grid;

    grid-template-columns:
        .36fr
        1.64fr;

    gap: 60px;
}


.service-intro-layout h2 {

    max-width: 850px;

    font-size:
        clamp(
            3.8rem,
            6.4vw,
            7rem
        );
}


.service-intro-layout
> div:last-child
> p {

    max-width: 650px;

    margin-top: 35px;

    color: var(--text-soft);

    line-height: 1.95;

    font-size: .87rem;
}



/* ==========================================================
   03. WEBSITE SERVICE
========================================================== */

.service-feature {

    position: relative;

    padding:
        140px 0;

    background:
        var(--bg-deep);

    overflow: hidden;
}


.service-feature-layout {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 90px;
}


.service-feature-index {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}


.service-feature-index span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.25rem;

    font-style: italic;
}


.service-feature-index p {

    color: var(--muted);

    font-size: .53rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.service-feature-copy h2 {

    max-width: 650px;

    font-size:
        clamp(
            3.8rem,
            5.8vw,
            6.5rem
        );
}


.service-feature-description {

    max-width: 550px;

    margin:
        30px 0
        35px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.95;
}



/* ==========================================================
   WEBSITE INTERFACE
========================================================== */

.service-interface {

    position: relative;

    border:
        1px solid var(--line);

    border-radius: 30px;

    background:
        var(--surface);

    box-shadow: var(--shadow);

    overflow: hidden;

    transform:
        perspective(1200px)
        rotateY(-4deg)
        rotateX(2deg);

    transition:
        .5s cubic-bezier(.22,1,.36,1);
}


.service-interface:hover {

    transform:
        perspective(1200px)
        rotateY(-1deg)
        rotateX(0deg)
        translateY(-8px);
}


.service-interface::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: -100px;

    top: -120px;

    border-radius: 50%;

    background:
        rgba(132, 88, 244, .17);

    filter: blur(70px);
}


.service-interface-top {

    position: relative;

    z-index: 2;

    height: 55px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        0 20px;

    border-bottom:
        1px solid var(--line);
}


.service-interface-top span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--muted);

    opacity: .45;
}


.service-interface-top p {

    margin-left: auto;

    color: var(--muted);

    font-size: .49rem;

    letter-spacing: .14em;
}


.service-interface-body {

    min-height: 460px;

    display: grid;

    grid-template-columns:
        70px
        1fr;
}


.interface-sidebar {

    display: flex;

    align-items: center;

    flex-direction: column;

    gap: 21px;

    padding-top: 30px;

    border-right:
        1px solid var(--line);
}


.interface-sidebar span {

    width: 28px;

    height: 6px;

    border-radius: 30px;

    background: var(--line);
}


.interface-sidebar
span.active {

    background: var(--purple);

    box-shadow:
        0 0 18px
        rgba(117, 83, 231, .35);
}


.interface-main {

    padding: 38px;
}


.interface-title small {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .16em;
}


.interface-title strong {

    display: block;

    margin-top: 5px;

    font-size: .95rem;
}


.interface-hero-card {

    position: relative;

    min-height: 220px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 30px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(128, 86, 241, .12),
            var(--surface-solid)
        );

    overflow: hidden;
}


.interface-hero-card small {

    color: var(--purple);

    font-size: .49rem;

    font-weight: 700;

    letter-spacing: .14em;
}


.interface-hero-card h3 {

    max-width: 330px;

    margin-top: 12px;

    font-size:
        clamp(
            2.2rem,
            3.6vw,
            3.7rem
        );
}


.interface-orb {

    position: relative;

    flex-shrink: 0;

    width: 120px;

    height: 120px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    box-shadow:

        0 0 0 18px
        rgba(126, 85, 239, .03),

        0 0 0 35px
        rgba(126, 85, 239, .018);
}


.interface-orb span {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 40px
        rgba(131, 88, 242, .4);

    animation:
        serviceOrb
        5s ease-in-out infinite;
}


@keyframes serviceOrb {

    50% {

        transform:
            scale(.82);
    }
}


.interface-mini-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 12px;
}


.interface-mini-grid article {

    min-height: 100px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 16px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        var(--surface-solid);
}


.interface-mini-grid i {

    color: var(--purple);
}


.interface-mini-grid span {

    color: var(--text-soft);

    font-size: .61rem;
}



/* ==========================================================
   WEBSITE TYPES
========================================================== */

.website-types {

    margin-top: 95px;

    border-top:
        1px solid var(--line);
}


.website-type-card {

    position: relative;

    min-height: 175px;

    display: grid;

    grid-template-columns:
        70px
        1fr
        180px
        55px;

    align-items: center;

    gap: 30px;

    border-bottom:
        1px solid var(--line);

    cursor: pointer;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.website-type-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(126, 85, 239, .07),
            transparent
        );

    transition: .4s ease;
}


.website-type-card:hover {

    padding-left: 18px;
}


.website-type-card:hover::before {

    opacity: 1;
}


.type-index {

    color: var(--muted);

    font-size: .57rem;
}


.website-type-card small {

    color: var(--purple);

    font-size: .51rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.website-type-card h3 {

    margin-top: 8px;

    font-size:
        clamp(
            2.2rem,
            4vw,
            4rem
        );
}


.website-type-card p {

    max-width: 500px;

    margin-top: 7px;

    color: var(--text-soft);

    font-size: .75rem;
}


.website-type-card > strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 2.3rem;

    font-weight: 600;
}


.website-type-card > i {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--purple);

    transition: .35s ease;
}


.website-type-card:hover > i {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform:
        rotate(10deg);
}


.featured-type {

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(125, 85, 239, .04),
            transparent
        );
}



/* ==========================================================
   04. SERVICE CAPABILITIES
========================================================== */

.service-capabilities {

    padding:
        140px 0;
}


.service-capability-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.service-capability-grid article {

    position: relative;

    min-height: 300px;

    padding: 29px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background: var(--surface);

    overflow: hidden;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.service-capability-grid article::before {

    content: "";

    position: absolute;

    right: -70px;

    top: -70px;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        rgba(127, 86, 241, .08);

    filter: blur(40px);
}


.service-capability-grid article:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(126, 86, 240, .3);

    box-shadow: var(--shadow);
}


.service-capability-grid article > span {

    color: var(--muted);

    font-size: .53rem;
}


.service-capability-grid i {

    position: absolute;

    top: 28px;

    right: 28px;

    color: var(--purple);

    font-size: 1.1rem;
}


.service-capability-grid h3 {

    margin-top: 95px;

    font-size:
        clamp(
            2rem,
            3.3vw,
            3.2rem
        );
}


.service-capability-grid p {

    max-width: 330px;

    margin-top: 16px;

    color: var(--text-soft);

    font-size: .76rem;

    line-height: 1.85;
}



/* ==========================================================
   05. APP DEVELOPMENT
========================================================== */

.app-service {

    position: relative;

    padding:
        150px 0;

    background: var(--bg-deep);

    overflow: hidden;
}


.app-service-glow {

    position: absolute;

    left: -150px;

    bottom: -160px;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background:
        rgba(121, 82, 233, .12);

    filter: blur(140px);
}


.app-service-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 100px;
}


.app-device-stage {

    position: relative;

    min-height: 650px;

    display: grid;

    place-items: center;
}


.app-device-ring {

    position: absolute;

    border:
        1px solid var(--line);

    border-radius: 50%;

    animation:
        appRingSpin
        18s linear infinite;
}


.ring-one {

    width: 490px;

    height: 490px;
}


.ring-two {

    width: 390px;

    height: 390px;

    animation-direction: reverse;
}


@keyframes appRingSpin {

    to {
        transform:
            rotate(360deg);
    }
}


.app-phone {

    position: relative;

    z-index: 3;

    width: 285px;

    min-height: 575px;

    padding: 10px;

    border:
        1px solid var(--line);

    border-radius: 45px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    transform:
        rotate(4deg);

    transition:
        .45s cubic-bezier(.22,1,.36,1);
}


.app-phone:hover {

    transform:
        rotate(0deg)
        translateY(-10px);
}


.app-phone-notch {

    position: absolute;

    top: 17px;

    left: 50%;

    z-index: 5;

    width: 82px;

    height: 20px;

    border-radius: 100px;

    background: var(--bg);

    transform:
        translateX(-50%);
}


.phone-content {

    min-height: 555px;

    padding:
        55px 18px
        18px;

    border-radius: 35px;

    background:
        linear-gradient(
            160deg,
            rgba(125, 83, 238, .11),
            var(--surface-solid)
        );
}


.phone-brand {

    display: flex;

    align-items: center;

    gap: 8px;
}


.phone-brand > span {

    width: 28px;

    height: 28px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 9px;

    background: var(--accent);

    font-size: .45rem;

    font-weight: 800;
}


.phone-brand small {

    color: var(--muted);

    font-size: .43rem;

    letter-spacing: .12em;
}


.phone-main-card {

    min-height: 190px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    margin-top: 28px;

    padding: 20px;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);
}


.phone-main-card small {

    color: var(--purple);

    font-size: .43rem;

    letter-spacing: .14em;
}


.phone-main-card strong {

    display: block;

    max-width: 160px;

    margin-top: 10px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 2.1rem;

    line-height: .9;
}


.phone-progress {

    height: 4px;

    margin-top: 24px;

    border-radius: 100px;

    background: var(--line);
}


.phone-progress span {

    display: block;

    width: 72%;

    height: 100%;

    border-radius: inherit;

    background: var(--accent);
}


.phone-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    margin-top: 10px;
}


.phone-grid article {

    min-height: 105px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 14px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background: var(--surface);
}


.phone-grid i {

    color: var(--purple);
}


.phone-grid span {

    color: var(--text-soft);

    font-size: .52rem;
}


.app-service-copy h2 {

    max-width: 630px;

    margin-top: 25px;

    font-size:
        clamp(
            3.8rem,
            5.8vw,
            6.4rem
        );
}


.app-service-copy > p {

    max-width: 550px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.95;
}


.app-feature-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px 25px;

    margin:
        32px 0
        38px;
}


.app-feature-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-soft);

    font-size: .73rem;
}


.app-feature-list i {

    color: var(--purple);

    font-size: .58rem;
}



/* ==========================================================
   06. SERVICE PROCESS
========================================================== */

.service-process {

    padding:
        145px 0;
}


.service-process-heading {

    max-width: 820px;

    margin-bottom: 70px;
}


.service-process-heading h2 {

    margin-top: 25px;

    font-size:
        clamp(
            3.8rem,
            6.2vw,
            6.8rem
        );
}


.service-process-list {

    border-top:
        1px solid var(--line);
}


.service-process-list article {

    display: grid;

    grid-template-columns:
        100px
        1fr
        65px;

    align-items: center;

    gap: 35px;

    min-height: 190px;

    border-bottom:
        1px solid var(--line);

    transition: .35s ease;
}


.service-process-list article:hover {

    padding-left: 15px;
}


.service-process-list article > span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.25rem;

    font-style: italic;
}


.service-process-list small {

    color: var(--purple);

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.service-process-list h3 {

    margin-top: 9px;

    font-size:
        clamp(
            2.2rem,
            3.7vw,
            3.8rem
        );
}


.service-process-list p {

    max-width: 520px;

    margin-top: 9px;

    color: var(--text-soft);

    font-size: .75rem;
}


.service-process-list article > i {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--purple);

    transition: .3s ease;
}


.service-process-list article:hover > i {

    color: #fff;

    border-color: transparent;

    background: var(--accent);
}



/* ==========================================================
   07. CLIENT EXPERIENCE
========================================================== */

.service-client-experience {

    padding:
        140px 0;

    background: var(--bg-deep);
}


.service-client-panel {

    min-height: 480px;

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;

    padding: 65px;

    border:
        1px solid var(--line);

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(126, 84, 239, .09),
            var(--surface)
        );

    box-shadow: var(--shadow);
}


.service-client-copy h2 {

    margin-top: 23px;

    font-size:
        clamp(
            3.4rem,
            5.5vw,
            5.8rem
        );
}


.service-client-copy > p {

    max-width: 500px;

    margin:
        25px 0
        30px;

    color: var(--text-soft);

    font-size: .82rem;

    line-height: 1.9;
}


.service-client-preview {

    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background:
        var(--surface-solid);
}


.client-preview-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.client-preview-head span {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .15em;
}


.client-preview-head strong {

    padding:
        7px 10px;

    color: var(--purple);

    border:
        1px solid
        rgba(124, 84, 236, .2);

    border-radius: 100px;

    background:
        rgba(124,84,236,.06);

    font-size: .43rem;

    letter-spacing: .1em;
}


.client-preview-progress {

    margin-top: 35px;
}


.client-preview-progress small {

    color: var(--muted);

    font-size: .48rem;
}


.client-preview-progress > div {

    height: 5px;

    margin-top: 12px;

    border-radius: 100px;

    background: var(--line);

    overflow: hidden;
}


.client-preview-progress > div span {

    display: block;

    width: 70%;

    height: 100%;

    background: var(--accent);
}


.client-preview-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 18px;
}


.client-preview-grid article {

    min-height: 110px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 17px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background: var(--surface);
}


.client-preview-grid i {

    color: var(--purple);
}


.client-preview-grid span {

    color: var(--text-soft);

    font-size: .58rem;
}



/* ==========================================================
   08. SERVICES LOCATION
========================================================== */

.services-location {

    padding:
        130px 0;
}


.services-location-layout {

    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    align-items: end;

    gap: 70px;
}


.services-location-layout h2 {

    max-width: 800px;

    margin-top: 23px;

    font-size:
        clamp(
            3.7rem,
            6vw,
            6.5rem
        );
}


.services-location-tags {

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 9px;
}


.services-location-tags span {

    padding:
        10px 15px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    background: var(--surface);

    font-size: .61rem;

    font-weight: 700;

    transition: .3s ease;
}


.services-location-tags span:hover {

    color: var(--purple);

    transform:
        translateY(-3px);

    border-color:
        rgba(125, 85, 239, .3);
}



/* ==========================================================
   09. TABLET
========================================================== */

@media
(max-width: 950px) {

    .services-hero-layout,
    .service-intro-layout,
    .service-feature-layout,
    .app-service-layout,
    .service-client-panel,
    .services-location-layout {

        grid-template-columns:
            1fr;
    }


    .services-hero-layout {

        gap: 30px;
    }


    .services-hero {

        min-height: auto;

        padding:
            155px 0
            115px;
    }


    .services-hero-small {

        padding-top: 0;
    }


    .service-feature-layout,
    .app-service-layout {

        gap: 60px;
    }


    .service-interface {

        transform: none;
    }


    .website-type-card {

        grid-template-columns:
            50px
            1fr
            140px
            50px;
    }


    .service-capability-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .app-device-stage {

        min-height: 570px;
    }


    .service-client-panel {

        padding: 45px;
    }


    .services-location-tags {

        justify-content: flex-start;
    }

}



/* ==========================================================
   10. MOBILE
========================================================== */

@media
(max-width: 620px) {

    .services-hero {

        padding:
            125px 0
            90px;
    }


    .services-hero-grid {

        background-size:
            48px 48px;
    }


    .services-hero-content h1 {

        font-size:
            clamp(
                3.6rem,
                17vw,
                5.3rem
            );

        line-height: .9;
    }


    .services-hero-description {

        margin-top: 28px;

        font-size: .84rem;
    }


    .services-hero-actions {

        flex-direction: column;
    }


    .services-hero-actions a {

        width: 100%;
    }


    .services-hero-footer {

        display: none;
    }


    /* INTRO */

    .service-intro {

        padding:
            90px 0;
    }


    .service-intro-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    /* WEBSITE */

    .service-feature {

        padding:
            95px 0;
    }


    .service-feature-copy h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.7rem
            );
    }


    .service-interface-body {

        min-height: 380px;

        grid-template-columns:
            48px
            1fr;
    }


    .interface-main {

        padding:
            24px 15px;
    }


    .interface-hero-card {

        min-height: 200px;

        padding: 20px;

        flex-direction: column;

        align-items: flex-start;
    }


    .interface-orb {

        width: 85px;

        height: 85px;

        align-self: flex-end;
    }


    .interface-orb span {

        width: 40px;

        height: 40px;
    }


    .interface-mini-grid {

        grid-template-columns:
            1fr;
    }


    /* WEBSITE TYPES */

    .website-types {

        margin-top: 65px;
    }


    .website-type-card {

        grid-template-columns:
            35px
            1fr
            42px;

        gap: 12px;

        min-height: 165px;

        padding:
            20px 0;
    }


    .website-type-card
    > strong {

        grid-column:
            2;

        font-size: 1.8rem;
    }


    .website-type-card
    > i {

        grid-column:
            3;

        grid-row:
            1 / 3;

        width: 42px;

        height: 42px;
    }


    .website-type-card:hover {

        padding-left: 0;
    }


    .website-type-card h3 {

        font-size: 2.45rem;
    }


    /* CAPABILITIES */

    .service-capabilities {

        padding:
            95px 0;
    }


    .service-capability-grid {

        grid-template-columns:
            1fr;
    }


    .service-capability-grid article {

        min-height: 260px;

        padding: 24px;
    }


    .service-capability-grid h3 {

        margin-top: 75px;

        font-size: 2.65rem;
    }


    /* APP */

    .app-service {

        padding:
            95px 0;
    }


    .app-device-stage {

        min-height: 520px;
    }


    .ring-one {

        width: 360px;

        height: 360px;
    }


    .ring-two {

        width: 280px;

        height: 280px;
    }


    .app-phone {

        width: 245px;

        min-height: 500px;
    }


    .phone-content {

        min-height: 480px;
    }


    .app-service-copy h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.7rem
            );
    }


    .app-feature-list {

        grid-template-columns:
            1fr;
    }


    /* PROCESS */

    .service-process {

        padding:
            95px 0;
    }


    .service-process-heading h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.7rem
            );
    }


    .service-process-list article {

        grid-template-columns:
            42px
            1fr
            45px;

        gap: 13px;

        min-height: 160px;
    }


    .service-process-list article:hover {

        padding-left: 0;
    }


    .service-process-list h3 {

        font-size: 2.3rem;
    }


    .service-process-list article > i {

        width: 43px;

        height: 43px;
    }


    /* CLIENT */

    .service-client-experience {

        padding:
            95px 0;
    }


    .service-client-panel {

        padding:
            35px 20px;

        border-radius: 24px;
    }


    .service-client-copy h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    .client-preview-grid {

        grid-template-columns:
            1fr;
    }


    /* LOCATION */

    .services-location {

        padding:
            95px 0;
    }


    .services-location-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }

}



/* ==========================================================
   11. SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .services-hero-content h1 {

        font-size: 3.45rem;
    }


    .app-phone {

        width: 225px;
    }


    .ring-one {

        width: 310px;

        height: 310px;
    }


    .ring-two {

        width: 245px;

        height: 245px;
    }


    .website-type-card h3 {

        font-size: 2.15rem;
    }

}



/* ==========================================================
   LAXNA TECHNOLOGIES
   WORK / PORTFOLIO PAGE
========================================================== */


/* ==========================================================
   01. WORK HERO
========================================================== */

.work-page-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        165px 0
        110px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-deep)
        );
}


.work-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );
}


.work-hero-glow {

    position: absolute;

    right: -180px;

    top: 10%;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(150, 93, 255, .17),
            rgba(72, 112, 245, .07) 45%,
            transparent 70%
        );

    filter: blur(45px);

    animation:
        workHeroGlow
        9s ease-in-out infinite;
}


@keyframes workHeroGlow {

    50% {

        transform:
            translate(-40px, 30px)
            scale(1.07);
    }
}


.work-hero-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .35fr
        1.65fr;

    gap: 60px;
}


.work-hero-side {

    padding-top: 18px;
}


.work-hero-side span {

    color: var(--purple);

    font-size: .56rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.work-hero-side p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.work-hero-copy {

    max-width: 1030px;
}


.work-hero-copy h1 {

    margin-top: 25px;

    font-size:
        clamp(
            4.8rem,
            8.2vw,
            8.8rem
        );

    line-height: .87;
}


.work-hero-copy > p:last-of-type {

    max-width: 680px;

    margin-top: 38px;

    color: var(--text-soft);

    font-size: .92rem;

    line-height: 1.95;
}


.work-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}


.work-hero-bottom {

    position: absolute;

    left: 50%;

    bottom: 28px;

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;

    transform:
        translateX(-50%);
}


.work-hero-bottom i {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--purple);
}



/* ==========================================================
   02. INTRO
========================================================== */

.work-intro {

    padding:
        140px 0;
}


.work-intro-layout {

    display: grid;

    grid-template-columns:
        .36fr
        1.64fr;

    gap: 60px;
}


.work-intro-layout h2 {

    max-width: 900px;

    font-size:
        clamp(
            3.8rem,
            6.4vw,
            7rem
        );
}


.work-intro-layout
> div:last-child
> p {

    max-width: 650px;

    margin-top: 35px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.95;
}



/* ==========================================================
   03. CASE STUDIES
========================================================== */

.work-case-study {

    position: relative;

    padding:
        150px 0;

    overflow: hidden;

    background: var(--bg-deep);
}


.work-case-study::before {

    content: "";

    position: absolute;

    top: -220px;

    right: -190px;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background:
        rgba(126, 84, 239, .07);

    filter: blur(110px);
}


.case-study-dark {

    background: var(--bg);
}


.case-study-dark::before {

    right: auto;

    left: -200px;

    top: 10%;

    background:
        rgba(75, 112, 246, .08);
}


.case-study-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .72fr
        1.28fr;

    align-items: center;

    gap: 85px;
}


.case-study-reverse {

    grid-template-columns:
        1.28fr
        .72fr;
}


.case-study-info {

    max-width: 540px;
}


.case-study-number {

    display: flex;

    align-items: end;

    gap: 10px;

    margin-bottom: 26px;
}


.case-study-number span {

    color: var(--muted);

    font-size: .49rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.case-study-number strong {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 2.3rem;

    font-weight: 500;

    font-style: italic;

    line-height: .8;
}


.case-study-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}


.case-study-meta span {

    padding:
        7px 10px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    background: var(--surface);

    font-size: .46rem;

    font-weight: 700;

    letter-spacing: .11em;
}


.case-study-info h2 {

    font-size:
        clamp(
            3.8rem,
            5.8vw,
            6.5rem
        );

    line-height: .9;
}


.case-study-info > p {

    max-width: 500px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.95;
}


.case-study-features {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.case-study-features span {

    padding:
        9px 13px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    font-size: .59rem;

    font-weight: 600;

    transition: .3s ease;
}


.case-study-features span:hover {

    color: var(--purple);

    border-color:
        rgba(125, 84, 239, .3);

    transform:
        translateY(-2px);
}


.case-study-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 38px;
}



/* ==========================================================
   CASE STUDY BROWSER
========================================================== */

.case-study-visual {

    position: relative;

    perspective: 1400px;
}


.case-browser {

    position: relative;

    padding: 9px;

    border:
        1px solid var(--line);

    border-radius: 29px;

    background: var(--surface);

    box-shadow: var(--shadow);

    overflow: hidden;

    transform:
        rotateY(-3deg)
        rotateX(2deg);

    transition:
        .55s cubic-bezier(.22,1,.36,1);
}


.case-study-reverse
.case-browser {

    transform:
        rotateY(3deg)
        rotateX(2deg);
}


.case-browser:hover {

    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-9px);
}


.case-browser-top {

    height: 48px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        0 14px;
}


.case-browser-top > div {

    display: flex;

    gap: 6px;
}


.case-browser-top > div span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--muted);

    opacity: .42;
}


.case-browser-top p {

    margin-left: auto;

    color: var(--muted);

    font-size: .5rem;

    letter-spacing: .08em;
}


.case-browser-top > i {

    margin-left: 8px;

    color: var(--purple);

    font-size: .55rem;
}


.case-browser-screen {

    position: relative;

    aspect-ratio:
        16 / 10;

    border-radius: 20px;

    overflow: hidden;

    background: var(--surface-solid);
}


.case-browser-screen::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            130deg,
            rgba(255,255,255,.08),
            transparent 35%
        );
}


.case-browser-screen img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform
        .8s cubic-bezier(.22,1,.36,1);
}


.case-browser:hover
.case-browser-screen img {

    transform:
        scale(1.025);
}



/* FLOATING PROJECT TAG */

.case-project-tag {

    position: absolute;

    left: -30px;

    bottom: -28px;

    z-index: 5;

    min-width: 210px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background: var(--surface);

    backdrop-filter:
        blur(24px);

    box-shadow: var(--shadow);

    animation:
        workTagFloat
        5s ease-in-out infinite;
}


.case-tag-right {

    left: auto;

    right: -30px;
}


@keyframes workTagFloat {

    50% {

        transform:
            translateY(-10px);
    }
}


.case-project-tag > i {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: #fff;

    border-radius: 13px;

    background: var(--accent);
}


.case-project-tag small {

    display: block;

    color: var(--muted);

    font-size: .44rem;

    font-weight: 700;

    letter-spacing: .12em;
}


.case-project-tag strong {

    display: block;

    margin-top: 3px;

    font-size: .71rem;
}



/* ==========================================================
   04. TRANSITION MARQUEE
========================================================== */

.work-transition {

    width: 100%;

    overflow: hidden;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    background: var(--surface);
}


.work-transition-track {

    width: max-content;

    height: 66px;

    display: flex;

    align-items: center;

    gap: 30px;

    animation:
        workMarquee
        28s linear infinite;
}


.work-transition-track span {

    color: var(--text-soft);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .2em;
}


.work-transition-track i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--purple);
}


@keyframes workMarquee {

    to {

        transform:
            translateX(-35%);
    }
}



/* ==========================================================
   05. QUALITY
========================================================== */

.work-quality {

    padding:
        145px 0;
}


.work-quality-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}


.work-quality-grid article {

    position: relative;

    min-height: 330px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 23px;

    background: var(--surface);

    overflow: hidden;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.work-quality-grid article::before {

    content: "";

    position: absolute;

    top: -90px;

    right: -90px;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    background:
        rgba(125, 85, 240, .08);

    filter: blur(45px);
}


.work-quality-grid article:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(125, 85, 239, .28);

    box-shadow: var(--shadow);
}


.work-quality-grid article > span {

    color: var(--muted);

    font-size: .5rem;
}


.work-quality-grid i {

    position: absolute;

    top: 27px;

    right: 27px;

    color: var(--purple);

    font-size: 1.05rem;
}


.work-quality-grid h3 {

    margin-top: 110px;

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );
}


.work-quality-grid p {

    margin-top: 16px;

    color: var(--text-soft);

    font-size: .74rem;

    line-height: 1.85;
}



/* ==========================================================
   06. FUTURE PORTFOLIO
========================================================== */

.work-future {

    padding:
        145px 0;

    background: var(--bg-deep);
}


.work-future-panel {

    min-height: 500px;

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    align-items: center;

    gap: 85px;

    padding: 65px;

    border:
        1px solid var(--line);

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(127, 85, 240, .08),
            var(--surface)
        );

    box-shadow: var(--shadow);
}


.work-future-copy h2 {

    max-width: 600px;

    margin-top: 22px;

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            6rem
        );
}


.work-future-copy > p {

    max-width: 470px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: .81rem;

    line-height: 1.9;
}



/* PROJECT LIBRARY UI */

.future-project-ui {

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background: var(--surface-solid);
}


.future-ui-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--line);
}


.future-ui-top span {

    color: var(--muted);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .15em;
}


.future-ui-top i {

    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 10px;

    background: var(--accent);

    font-size: .7rem;
}


.future-ui-list {

    display: grid;
}


.future-ui-list > div {

    min-height: 90px;

    display: grid;

    grid-template-columns:
        42px
        1fr
        auto;

    align-items: center;

    gap: 15px;

    border-bottom:
        1px solid var(--line);
}


.future-ui-list > div:last-child {

    border-bottom: 0;
}


.future-ui-list span {

    color: var(--muted);

    font-size: .5rem;
}


.future-ui-list strong {

    font-size: .74rem;
}


.future-ui-list small {

    padding:
        6px 9px;

    color: var(--purple);

    border:
        1px solid
        rgba(124, 84, 237, .18);

    border-radius: 100px;

    background:
        rgba(124, 84, 237, .05);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .08em;
}


.future-placeholder {

    opacity: .48;
}



/* ==========================================================
   07. SERVICES LINK
========================================================== */

.work-services-link {

    padding:
        125px 0;
}


.work-services-layout {

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    align-items: end;

    gap: 80px;
}


.work-services-layout h2 {

    max-width: 720px;

    margin-top: 22px;

    font-size:
        clamp(
            3.7rem,
            6vw,
            6.5rem
        );
}


.work-big-link {

    position: relative;

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 35px;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    overflow: hidden;

    transition: .4s ease;
}


.work-big-link::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(124, 84, 239, .08),
            transparent
        );

    transition: .4s ease;
}


.work-big-link:hover::before {

    opacity: 1;
}


.work-big-link:hover {

    padding-left: 50px;
}


.work-big-link span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4rem
        );
}


.work-big-link i {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--purple);

    transition: .35s ease;
}


.work-big-link:hover i {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform:
        rotate(-35deg);
}



/* ==========================================================
   08. TABLET
========================================================== */

@media
(max-width: 1000px) {

    .work-hero-layout,
    .work-intro-layout,
    .case-study-layout,
    .case-study-reverse,
    .work-future-panel,
    .work-services-layout {

        grid-template-columns:
            1fr;
    }


    .work-page-hero {

        min-height: auto;

        padding:
            155px 0
            115px;
    }


    .work-hero-layout {

        gap: 30px;
    }


    .case-study-layout,
    .case-study-reverse {

        gap: 65px;
    }


    .case-study-reverse
    .case-study-visual {

        order: 2;
    }


    .case-study-info {

        max-width: 720px;
    }


    .case-browser,
    .case-study-reverse
    .case-browser {

        transform: none;
    }


    .work-quality-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .work-future-panel {

        padding: 45px;
    }

}



/* ==========================================================
   09. MOBILE
========================================================== */

@media
(max-width: 620px) {

    .work-page-hero {

        padding:
            125px 0
            90px;
    }


    .work-hero-grid {

        background-size:
            48px 48px;
    }


    .work-hero-copy h1 {

        font-size:
            clamp(
                3.7rem,
                17vw,
                5.4rem
            );

        line-height: .89;
    }


    .work-hero-copy > p:last-of-type {

        margin-top: 28px;

        font-size: .84rem;
    }


    .work-hero-actions {

        flex-direction: column;
    }


    .work-hero-actions a {

        width: 100%;
    }


    .work-hero-bottom {

        display: none;
    }


    /* INTRO */

    .work-intro {

        padding:
            90px 0;
    }


    .work-intro-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.7rem
            );
    }


    /* PROJECT */

    .work-case-study {

        padding:
            95px 0;
    }


    .case-study-layout,
    .case-study-reverse {

        gap: 50px;
    }


    .case-study-info h2 {

        font-size:
            clamp(
                3.4rem,
                15vw,
                4.8rem
            );
    }


    .case-study-meta {

        gap: 6px;
    }


    .case-study-actions {

        align-items: stretch;

        flex-direction: column;
    }


    .case-study-actions
    .luxury-button {

        width: 100%;
    }


    .case-browser {

        padding: 6px;

        border-radius: 20px;
    }


    .case-browser-screen {

        border-radius: 14px;
    }


    .case-browser-top {

        height: 42px;

        padding:
            0 9px;
    }


    .case-browser-top p {

        max-width: 150px;

        overflow: hidden;

        white-space: nowrap;

        text-overflow: ellipsis;
    }


    .case-project-tag,
    .case-tag-right {

        position: relative;

        left: auto;

        right: auto;

        bottom: auto;

        width: 90%;

        margin:
            -20px auto 0;
    }


    /* QUALITY */

    .work-quality {

        padding:
            95px 0;
    }


    .work-quality-grid {

        grid-template-columns:
            1fr;
    }


    .work-quality-grid article {

        min-height: 270px;

        padding: 24px;
    }


    .work-quality-grid h3 {

        margin-top: 80px;

        font-size: 2.6rem;
    }


    /* FUTURE */

    .work-future {

        padding:
            95px 0;
    }


    .work-future-panel {

        min-height: auto;

        padding:
            35px 20px;

        border-radius: 24px;
    }


    .work-future-copy h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    .future-project-ui {

        padding: 20px 15px;
    }


    .future-ui-list > div {

        grid-template-columns:
            30px
            1fr
            auto;

        gap: 9px;
    }


    .future-ui-list strong {

        font-size: .65rem;
    }


    /* SERVICES */

    .work-services-link {

        padding:
            90px 0;
    }


    .work-services-layout {

        gap: 45px;
    }


    .work-services-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    .work-big-link {

        min-height: 120px;

        padding:
            0 18px;
    }


    .work-big-link:hover {

        padding-left: 18px;
    }


    .work-big-link span {

        font-size: 2.6rem;
    }


    .work-big-link i {

        width: 48px;

        height: 48px;
    }

}



/* ==========================================================
   10. SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .work-hero-copy h1 {

        font-size: 3.5rem;
    }


    .case-study-info h2 {

        font-size: 3.35rem;
    }


    .case-study-features {

        gap: 6px;
    }


    .case-study-features span {

        padding:
            8px 10px;

        font-size: .53rem;
    }


    .future-ui-list small {

        padding:
            5px 7px;

        font-size: .38rem;
    }

}




/* ==========================================================
   LAXNA TECHNOLOGIES
   PRICING PAGE
========================================================== */


/* ==========================================================
   01. PRICING HERO
========================================================== */

.pricing-page-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        165px 0
        110px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-deep)
        );
}


.pricing-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        78px 78px;

    mask-image:
        radial-gradient(
            circle at 70% 45%,
            #000,
            transparent 78%
        );
}


.pricing-hero-glow {

    position: absolute;

    right: -170px;

    top: 5%;

    width: 720px;

    height: 720px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(153, 94, 255, .18),
            rgba(73, 111, 245, .08) 45%,
            transparent 70%
        );

    filter: blur(45px);

    animation:
        pricingGlow
        9s ease-in-out infinite;
}


@keyframes pricingGlow {

    50% {

        transform:
            translate(-35px, 30px)
            scale(1.06);
    }
}


.pricing-hero-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .35fr
        1.65fr;

    gap: 60px;
}


.pricing-hero-side {

    padding-top: 18px;
}


.pricing-hero-side span {

    color: var(--purple);

    font-size: .56rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.pricing-hero-side p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.pricing-hero-copy {

    max-width: 1020px;
}


.pricing-hero-copy h1 {

    margin-top: 25px;

    font-size:
        clamp(
            4.7rem,
            8vw,
            8.6rem
        );

    line-height: .88;
}


.pricing-hero-copy > p:last-of-type {

    max-width: 680px;

    margin-top: 38px;

    color: var(--text-soft);

    font-size: .92rem;

    line-height: 1.95;
}


.pricing-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}


.pricing-hero-bottom {

    position: absolute;

    left: 50%;

    bottom: 28px;

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;

    transform:
        translateX(-50%);
}


.pricing-hero-bottom i {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--purple);
}



/* ==========================================================
   02. PRICING INTRO
========================================================== */

.pricing-intro {

    padding:
        140px 0;
}


.pricing-intro-layout {

    display: grid;

    grid-template-columns:
        .36fr
        1.64fr;

    gap: 60px;
}


.pricing-intro-layout h2 {

    max-width: 900px;

    font-size:
        clamp(
            3.8rem,
            6.4vw,
            7rem
        );
}


.pricing-intro-layout
> div:last-child
> p {

    max-width: 650px;

    margin-top: 35px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.95;
}



/* ==========================================================
   03. MAIN PRICING CARDS
========================================================== */

.pricing-plans-section {

    position: relative;

    padding:
        145px 0;

    background:
        var(--bg-deep);
}


.pricing-page-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;
}


.pricing-page-card {

    position: relative;

    min-height: 720px;

    display: flex;

    flex-direction: column;

    padding: 34px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    background:
        var(--surface);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    overflow: hidden;

    transition:
        .45s cubic-bezier(.22,1,.36,1);
}


.pricing-page-card::before {

    content: "";

    position: absolute;

    top: -130px;

    right: -130px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        rgba(128, 85, 240, .09);

    filter: blur(65px);

    transition: .45s ease;
}


.pricing-page-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(128, 88, 241, .32);

    box-shadow:
        var(--shadow);
}


.pricing-page-card:hover::before {

    transform:
        scale(1.25);
}


.pricing-card-head {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.pricing-card-head span {

    color: var(--muted);

    font-size: .54rem;
}


.pricing-card-head p {

    color: var(--purple);

    font-size: .52rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.pricing-card-title {

    position: relative;

    z-index: 2;

    margin-top: 58px;
}


.pricing-card-title small {

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .14em;
}


.pricing-card-title h2 {

    margin-top: 13px;

    font-size:
        clamp(
            2.8rem,
            4vw,
            4.2rem
        );

    line-height: .92;
}


.pricing-page-price {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 5px;

    margin-top: 35px;
}


.pricing-page-price > span {

    margin-top: 14px;

    color: var(--muted);

    font-size: .46rem;

    font-weight: 800;

    letter-spacing: .12em;
}


.pricing-page-price strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            3.9rem,
            5vw,
            5.2rem
        );

    font-weight: 600;

    line-height: .8;
}


.pricing-page-price sup {

    color: var(--purple);

    font-size: 1rem;

    line-height: 1;
}


.pricing-card-description {

    position: relative;

    z-index: 2;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: .79rem;

    line-height: 1.85;
}


.pricing-divider {

    height: 1px;

    margin:
        30px 0;

    background:
        var(--line);
}


.pricing-features {

    position: relative;

    z-index: 2;

    display: grid;

    gap: 15px;
}


.pricing-features li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-soft);

    font-size: .74rem;
}


.pricing-features i {

    color: var(--purple);

    font-size: .58rem;
}


.pricing-page-button {

    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding:
        0 18px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    color: var(--text);

    background:
        transparent;

    font-size: .72rem;

    font-weight: 700;

    transition:
        .35s ease;
}


.pricing-page-button:hover {

    color: #fff;

    border-color:
        transparent;

    background:
        var(--accent);

    transform:
        translateY(-2px);
}



/* FEATURED BUSINESS */

.pricing-page-featured {

    border-color:
        rgba(128, 86, 240, .35);

    background:

        linear-gradient(
            160deg,
            rgba(134, 88, 244, .13),
            var(--surface) 48%
        );

    transform:
        translateY(-16px);
}


.pricing-page-featured:hover {

    transform:
        translateY(-25px);
}


.pricing-featured-label {

    position: absolute;

    top: 0;

    right: 27px;

    z-index: 4;

    padding:
        9px 14px;

    color: #fff;

    border-radius:
        0 0 11px 11px;

    background:
        var(--accent);

    font-size: .46rem;

    font-weight: 800;

    letter-spacing: .14em;

    box-shadow:
        0 10px 30px
        rgba(117, 82, 232, .25);
}



/* ==========================================================
   04. COMPARISON
========================================================== */

.pricing-comparison {

    padding:
        145px 0;
}


.comparison-table-wrap {

    width: 100%;

    overflow-x: auto;

    border:
        1px solid var(--line);

    border-radius: 25px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}


.comparison-table {

    min-width: 760px;
}


.comparison-row {

    min-height: 78px;

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, .7fr);

    align-items: center;

    gap: 25px;

    padding:
        0 28px;

    border-bottom:
        1px solid var(--line);
}


.comparison-row:last-child {

    border-bottom: 0;
}


.comparison-row > span {

    color: var(--text-soft);

    font-size: .74rem;

    font-weight: 600;
}


.comparison-row strong {

    color: var(--text);

    font-size: .73rem;

    font-weight: 700;

    text-align: center;
}


.comparison-row i {

    color: var(--purple);

    text-align: center;

    font-size: .72rem;
}


.comparison-row
.fa-minus {

    color: var(--muted);

    opacity: .55;
}


.comparison-heading {

    min-height: 68px;

    background:
        rgba(125, 84, 239, .055);
}


.comparison-heading > span {

    color: var(--muted);

    font-size: .51rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.comparison-heading strong {

    color: var(--purple);

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: .12em;
}



/* ==========================================================
   05. ADD-ONS
========================================================== */

.pricing-addons {

    padding:
        145px 0;

    background:
        var(--bg-deep);
}


.pricing-addons-layout {

    display: grid;

    grid-template-columns:
        .82fr
        1.18fr;

    gap: 95px;
}


.pricing-addons-copy {

    position: sticky;

    top: 130px;

    align-self: start;
}


.pricing-addons-copy h2 {

    max-width: 620px;

    margin-top: 24px;

    font-size:
        clamp(
            3.6rem,
            5.8vw,
            6.3rem
        );
}


.pricing-addons-copy > p {

    max-width: 500px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: .83rem;

    line-height: 1.9;
}


.pricing-addon-list {

    border-top:
        1px solid var(--line);
}


.pricing-addon-list article {

    min-height: 175px;

    display: grid;

    grid-template-columns:
        55px
        1fr
        50px;

    align-items: center;

    gap: 25px;

    border-bottom:
        1px solid var(--line);

    transition:
        .35s ease;
}


.pricing-addon-list article:hover {

    padding-left: 14px;
}


.pricing-addon-list article > span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.15rem;

    font-style: italic;
}


.pricing-addon-list h3 {

    font-size:
        clamp(
            2.3rem,
            3.7vw,
            3.8rem
        );
}


.pricing-addon-list p {

    max-width: 530px;

    margin-top: 9px;

    color: var(--text-soft);

    font-size: .74rem;

    line-height: 1.75;
}


.pricing-addon-list article > i {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--purple);

    transition:
        .3s ease;
}


.pricing-addon-list article:hover > i {

    color: #fff;

    border-color:
        transparent;

    background:
        var(--accent);

    transform:
        rotate(90deg);
}



/* ==========================================================
   06. APP PRICING
========================================================== */

.app-pricing-section {

    position: relative;

    padding:
        150px 0;

    overflow: hidden;
}


.app-pricing-glow {

    position: absolute;

    right: -180px;

    bottom: -180px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:
        rgba(124, 83, 239, .11);

    filter: blur(135px);
}


.app-pricing-panel {

    position: relative;

    z-index: 2;

    min-height: 560px;

    display: grid;

    grid-template-columns:
        .95fr
        1.05fr;

    align-items: center;

    gap: 90px;

    padding: 65px;

    border:
        1px solid var(--line);

    border-radius: 34px;

    background:

        linear-gradient(
            135deg,
            rgba(127, 86, 241, .09),
            var(--surface)
        );

    box-shadow:
        var(--shadow);
}


.app-pricing-copy h2 {

    max-width: 620px;

    margin-top: 24px;

    font-size:
        clamp(
            3.6rem,
            5.8vw,
            6.2rem
        );
}


.app-pricing-copy > p {

    max-width: 530px;

    margin:
        27px 0
        34px;

    color: var(--text-soft);

    font-size: .83rem;

    line-height: 1.9;
}



/* APP QUOTE CARD */

.app-quote-card {

    position: relative;

    min-height: 440px;

    display: flex;

    flex-direction: column;

    padding: 32px;

    border:
        1px solid var(--line);

    border-radius: 27px;

    background:
        var(--surface-solid);

    overflow: hidden;
}


.app-quote-card::before {

    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        rgba(131, 86, 243, .12);

    filter: blur(55px);
}


.app-quote-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.app-quote-top span {

    color: var(--purple);

    font-size: .54rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.app-quote-top i {

    color: var(--purple);

    font-size: 1.15rem;
}


.app-quote-price {

    position: relative;

    z-index: 2;

    margin-top: 48px;
}


.app-quote-price small {

    color: var(--muted);

    font-size: .49rem;

    font-weight: 700;

    letter-spacing: .16em;
}


.app-quote-price strong {

    display: block;

    margin-top: 12px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            4rem,
            6vw,
            6rem
        );

    font-weight: 600;

    line-height: .85;
}


.app-quote-price strong em {

    color: var(--purple);

    font-weight: 500;
}


.app-quote-list {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        14px 25px;

    margin:
        35px 0;
}


.app-quote-list span {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--text-soft);

    font-size: .72rem;
}


.app-quote-list i {

    color: var(--purple);

    font-size: .55rem;
}



/* ==========================================================
   07. PRICING FLOW
========================================================== */

.pricing-flow {

    padding:
        145px 0;

    background:
        var(--bg-deep);
}


.pricing-flow-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}


.pricing-flow-grid article {

    position: relative;

    min-height: 300px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 23px;

    background:
        var(--surface);

    overflow: hidden;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.pricing-flow-grid article::before {

    content: "";

    position: absolute;

    top: -80px;

    right: -80px;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    background:
        rgba(126, 85, 239, .08);

    filter: blur(45px);
}


.pricing-flow-grid article:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(126, 85, 240, .3);

    box-shadow:
        var(--shadow);
}


.pricing-flow-grid article > span {

    color: var(--muted);

    font-size: .5rem;
}


.pricing-flow-grid article > i {

    position: absolute;

    top: 27px;

    right: 27px;

    color: var(--purple);

    font-size: 1.05rem;
}


.pricing-flow-grid h3 {

    margin-top: 105px;

    font-size:
        clamp(
            2.3rem,
            3.4vw,
            3.4rem
        );
}


.pricing-flow-grid p {

    margin-top: 15px;

    color: var(--text-soft);

    font-size: .74rem;

    line-height: 1.85;
}



/* ==========================================================
   08. PRICING NOTE
========================================================== */

.pricing-note-section {

    padding:
        45px 0
        20px;
}


.pricing-note {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding:
        24px 26px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        var(--surface);
}


.pricing-note > i {

    margin-top: 3px;

    color: var(--purple);
}


.pricing-note strong {

    display: block;

    font-size: .75rem;
}


.pricing-note p {

    max-width: 900px;

    margin-top: 7px;

    color: var(--text-soft);

    font-size: .72rem;

    line-height: 1.8;
}



/* ==========================================================
   09. TABLET
========================================================== */

@media
(max-width: 1000px) {

    .pricing-hero-layout,
    .pricing-intro-layout,
    .pricing-addons-layout,
    .app-pricing-panel {

        grid-template-columns:
            1fr;
    }


    .pricing-page-hero {

        min-height: auto;

        padding:
            155px 0
            115px;
    }


    .pricing-hero-layout {

        gap: 30px;
    }


    .pricing-page-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .pricing-page-card:last-child {

        grid-column:
            1 / 3;
    }


    .pricing-page-featured {

        transform: none;
    }


    .pricing-page-featured:hover {

        transform:
            translateY(-10px);
    }


    .pricing-addons-copy {

        position: static;
    }


    .app-pricing-panel {

        padding: 45px;
    }


    .pricing-flow-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* ==========================================================
   10. MOBILE
========================================================== */

@media
(max-width: 620px) {

    .pricing-page-hero {

        padding:
            125px 0
            90px;
    }


    .pricing-hero-grid {

        background-size:
            48px 48px;
    }


    .pricing-hero-copy h1 {

        font-size:
            clamp(
                3.7rem,
                17vw,
                5.4rem
            );

        line-height: .9;
    }


    .pricing-hero-copy > p:last-of-type {

        margin-top: 28px;

        font-size: .84rem;
    }


    .pricing-hero-actions {

        flex-direction: column;
    }


    .pricing-hero-actions a {

        width: 100%;
    }


    .pricing-hero-bottom {

        display: none;
    }


    /* INTRO */

    .pricing-intro {

        padding:
            90px 0;
    }


    .pricing-intro-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.7rem
            );
    }


    /* CARDS */

    .pricing-plans-section {

        padding:
            95px 0;
    }


    .pricing-page-grid {

        grid-template-columns:
            1fr;
    }


    .pricing-page-card:last-child {

        grid-column:
            auto;
    }


    .pricing-page-card {

        min-height: auto;

        padding:
            28px 22px;
    }


    .pricing-page-featured {

        transform: none;
    }


    .pricing-page-featured:hover {

        transform:
            translateY(-7px);
    }


    .pricing-card-title {

        margin-top: 50px;
    }


    .pricing-card-title h2 {

        font-size: 3.2rem;
    }


    .pricing-page-price strong {

        font-size: 4.4rem;
    }


    .pricing-page-button {

        margin-top: 35px;
    }


    /* COMPARISON */

    .pricing-comparison {

        padding:
            95px 0;
    }


    .comparison-table-wrap {

        border-radius: 19px;
    }


    /* ADDONS */

    .pricing-addons {

        padding:
            95px 0;
    }


    .pricing-addons-copy h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    .pricing-addon-list article {

        min-height: 155px;

        grid-template-columns:
            38px
            1fr
            42px;

        gap: 12px;
    }


    .pricing-addon-list article:hover {

        padding-left: 0;
    }


    .pricing-addon-list h3 {

        font-size: 2.5rem;
    }


    .pricing-addon-list article > i {

        width: 42px;

        height: 42px;
    }


    /* APP */

    .app-pricing-section {

        padding:
            95px 0;
    }


    .app-pricing-panel {

        min-height: auto;

        padding:
            35px 20px;

        border-radius: 25px;
    }


    .app-pricing-copy h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.6rem
            );
    }


    .app-quote-card {

        min-height: auto;

        padding:
            26px 21px;
    }


    .app-quote-list {

        grid-template-columns:
            1fr;
    }


    /* FLOW */

    .pricing-flow {

        padding:
            95px 0;
    }


    .pricing-flow-grid {

        grid-template-columns:
            1fr;
    }


    .pricing-flow-grid article {

        min-height: 260px;
    }


    .pricing-flow-grid h3 {

        margin-top: 80px;

        font-size: 2.65rem;
    }


    /* NOTE */

    .pricing-note {

        padding:
            20px 18px;
    }

}



/* ==========================================================
   11. SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .pricing-hero-copy h1 {

        font-size: 3.5rem;
    }


    .pricing-card-title h2 {

        font-size: 2.9rem;
    }


    .pricing-page-price strong {

        font-size: 4rem;
    }


    .pricing-addon-list h3 {

        font-size: 2.2rem;
    }

}





/* ==========================================================
   LAXNA TECHNOLOGIES
   CONTACT PAGE
========================================================== */


/* ==========================================================
   01. CONTACT HERO
========================================================== */

.contact-page-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        165px 0
        110px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-deep)
        );
}


.contact-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        78px 78px;

    mask-image:
        radial-gradient(
            circle at 65% 45%,
            #000,
            transparent 78%
        );
}


.contact-hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;
}


.glow-contact-one {

    width: 620px;

    height: 620px;

    right: -180px;

    top: 5%;

    background:
        rgba(146, 88, 255, .17);
}


.glow-contact-two {

    width: 500px;

    height: 500px;

    left: -220px;

    bottom: -150px;

    background:
        rgba(73, 111, 245, .10);
}


.contact-hero-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .35fr
        1.65fr;

    gap: 60px;
}


.contact-hero-side {

    padding-top: 18px;
}


.contact-hero-side span {

    color: var(--purple);

    font-size: .56rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.contact-hero-side p {

    margin-top: 10px;

    color: var(--muted);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .17em;
}


.contact-hero-copy {

    max-width: 1030px;
}


.contact-hero-copy h1 {

    margin-top: 25px;

    font-size:
        clamp(
            4.7rem,
            8vw,
            8.7rem
        );

    line-height: .88;
}


.contact-hero-copy > p:last-of-type {

    max-width: 680px;

    margin-top: 38px;

    color: var(--text-soft);

    font-size: .92rem;

    line-height: 1.95;
}


.contact-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}


.contact-hero-footer {

    position: absolute;

    left: 50%;

    bottom: 28px;

    width:
        min(
            calc(100% - 44px),
            1280px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .16em;

    transform:
        translateX(-50%);
}


.contact-hero-footer i {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--purple);
}



/* ==========================================================
   02. CONTACT OPTIONS
========================================================== */

.contact-options {

    padding:
        120px 0;
}


.contact-options-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.contact-option-card {

    position: relative;

    min-height: 390px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 26px;

    background: var(--surface);

    overflow: hidden;

    transition:
        .45s cubic-bezier(.22,1,.36,1);
}


.contact-option-card::before {

    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background:
        rgba(126, 85, 239, .09);

    filter: blur(55px);

    transition: .45s ease;
}


.contact-option-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(126, 85, 240, .3);

    box-shadow: var(--shadow);
}


.contact-option-card:hover::before {

    transform:
        scale(1.25);
}


.contact-option-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.contact-option-top span {

    color: var(--muted);

    font-size: .52rem;
}


.contact-option-top i {

    color: var(--purple);

    font-size: 1.2rem;
}


.contact-option-card > small {

    position: relative;

    z-index: 2;

    display: block;

    margin-top: 75px;

    color: var(--purple);

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.contact-option-card h2 {

    position: relative;

    z-index: 2;

    margin-top: 10px;

    font-size: 3.5rem;
}


.contact-option-card > p {

    position: relative;

    z-index: 2;

    max-width: 320px;

    margin-top: 16px;

    color: var(--text-soft);

    font-size: .77rem;

    line-height: 1.8;
}


.contact-option-card > strong {

    position: relative;

    z-index: 2;

    display: block;

    margin-top: 25px;

    font-size: .72rem;

    font-weight: 700;
}


.contact-option-arrow {

    position: absolute;

    right: 27px;

    bottom: 27px;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--purple);

    transition: .35s ease;
}


.contact-option-card:hover
.contact-option-arrow {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform:
        rotate(10deg);
}


.contact-option-disabled {

    opacity: .65;

    cursor: default;
}


.contact-option-disabled:hover {

    transform: none;

    box-shadow: none;
}



/* ==========================================================
   03. PROJECT ENQUIRY
========================================================== */

.project-enquiry-section {

    padding:
        150px 0;

    background:
        var(--bg-deep);
}


.project-enquiry-layout {

    display: grid;

    grid-template-columns:
        .75fr
        1.25fr;

    align-items: start;

    gap: 90px;
}


.project-form-copy {

    position: sticky;

    top: 130px;
}


.project-form-copy h2 {

    max-width: 600px;

    margin-top: 24px;

    font-size:
        clamp(
            3.7rem,
            5.8vw,
            6.3rem
        );
}


.project-form-copy > p {

    max-width: 500px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.9;
}


.project-contact-points {

    display: grid;

    gap: 0;

    margin-top: 45px;

    border-top:
        1px solid var(--line);
}


.project-contact-points > div {

    min-height: 68px;

    display: grid;

    grid-template-columns:
        40px
        1fr;

    align-items: center;

    gap: 10px;

    border-bottom:
        1px solid var(--line);
}


.project-contact-points span {

    color: var(--purple);

    font-family:
        "Cormorant Garamond",
        serif;

    font-style: italic;
}


.project-contact-points p {

    color: var(--text-soft);

    font-size: .71rem;
}



/* ==========================================================
   FORM SHELL
========================================================== */

.project-form-shell {

    padding: 38px;

    border:
        1px solid var(--line);

    border-radius: 30px;

    background:
        var(--surface);

    box-shadow: var(--shadow);
}


.project-form-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 28px;

    border-bottom:
        1px solid var(--line);
}


.project-form-head small {

    display: block;

    color: var(--purple);

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .15em;
}


.project-form-head strong {

    display: block;

    margin-top: 6px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 2rem;

    font-weight: 600;
}


.project-form-head > span {

    color: var(--muted);

    font-size: .52rem;

    letter-spacing: .1em;
}


.project-form {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        26px 18px;

    padding-top: 32px;
}


.form-full {

    grid-column:
        1 / 3;
}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.form-group label,
.form-choice-group legend {

    color: var(--text-soft);

    font-size: .63rem;

    font-weight: 700;

    letter-spacing: .04em;
}


.form-group label span {

    margin-left: 5px;

    color: var(--muted);

    font-size: .54rem;

    font-weight: 500;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border:
        1px solid var(--line);

    outline: 0;

    border-radius: 14px;

    color: var(--text);

    background:
        var(--surface-solid);

    font-family:
        "Manrope",
        sans-serif;

    font-size: .77rem;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.form-group input,
.form-group select {

    height: 56px;

    padding:
        0 16px;
}


.form-group textarea {

    min-height: 155px;

    padding: 16px;

    resize: vertical;

    line-height: 1.7;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: var(--muted);
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(126, 85, 240, .52);

    box-shadow:
        0 0 0 4px
        rgba(126, 85, 240, .07);
}


.form-group select {

    cursor: pointer;
}



/* ==========================================================
   PROJECT TYPE SELECTOR
========================================================== */

.form-choice-group {

    border: 0;
}


.form-choice-group legend {

    margin-bottom: 12px;
}


.form-choice-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.form-choice {

    position: relative;

    cursor: pointer;
}


.form-choice input {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.form-choice > span {

    min-height: 120px;

    display: flex;

    justify-content: center;

    flex-direction: column;

    padding: 20px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background:
        var(--surface-solid);

    transition:
        .35s ease;
}


.form-choice i {

    margin-bottom: 18px;

    color: var(--purple);

    font-size: 1rem;
}


.form-choice strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.6rem;

    font-weight: 600;
}


.form-choice small {

    margin-top: 4px;

    color: var(--muted);

    font-size: .53rem;
}


.form-choice input:checked
+ span {

    border-color:
        rgba(127, 86, 241, .42);

    background:
        linear-gradient(
            135deg,
            rgba(126, 85, 239, .09),
            var(--surface-solid)
        );

    box-shadow:
        0 0 0 4px
        rgba(126, 85, 239, .04);
}



/* ==========================================================
   FORM SUBMIT
========================================================== */

.form-submit {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding-top: 10px;
}


.project-submit {

    border: 0;
}


.form-submit > p {

    max-width: 300px;

    color: var(--muted);

    font-size: .57rem;

    line-height: 1.6;
}



/* ==========================================================
   04. WHATSAPP PANEL
========================================================== */

.contact-whatsapp-section {

    padding:
        115px 0;
}


.contact-whatsapp-panel {

    position: relative;

    min-height: 300px;

    display: grid;

    grid-template-columns:
        90px
        1fr
        auto;

    align-items: center;

    gap: 35px;

    padding:
        45px 50px;

    border:
        1px solid var(--line);

    border-radius: 30px;

    background:

        linear-gradient(
            135deg,
            rgba(35, 176, 93, .075),
            var(--surface)
        );

    overflow: hidden;

    box-shadow: var(--shadow);
}


.contact-whatsapp-panel::before {

    content: "";

    position: absolute;

    left: -120px;

    top: -170px;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background:
        rgba(31, 176, 91, .10);

    filter: blur(100px);
}


.whatsapp-panel-icon {

    position: relative;

    z-index: 2;

    width: 75px;

    height: 75px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 24px;

    background: #20ad5b;

    box-shadow:
        0 15px 40px
        rgba(32, 173, 91, .22);

    font-size: 1.7rem;
}


.whatsapp-panel-copy {

    position: relative;

    z-index: 2;
}


.whatsapp-panel-copy small {

    color: #20ad5b;

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.whatsapp-panel-copy h2 {

    max-width: 650px;

    margin-top: 12px;

    font-size:
        clamp(
            2.8rem,
            4.5vw,
            4.5rem
        );
}


.whatsapp-panel-copy p {

    max-width: 560px;

    margin-top: 15px;

    color: var(--text-soft);

    font-size: .75rem;

    line-height: 1.8;
}


.contact-whatsapp-button {

    position: relative;

    z-index: 2;

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        0 20px;

    color: #fff;

    border-radius: 14px;

    background: #20ad5b;

    font-size: .71rem;

    font-weight: 700;

    transition: .3s ease;
}


.contact-whatsapp-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(32, 173, 91, .24);
}



/* ==========================================================
   05. LOCATION
========================================================== */

.contact-location-section {

    position: relative;

    padding:
        150px 0;

    background:
        var(--bg-deep);

    overflow: hidden;
}


.contact-location-glow {

    position: absolute;

    right: -200px;

    bottom: -180px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:
        rgba(126, 85, 239, .11);

    filter: blur(135px);
}


.contact-location-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 100px;
}


.contact-location-layout h2 {

    max-width: 650px;

    margin-top: 24px;

    font-size:
        clamp(
            3.7rem,
            5.8vw,
            6.3rem
        );
}


.contact-location-layout
> div:first-child
> p:last-child {

    max-width: 520px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.9;
}



/* LOCATION VISUAL */

.contact-location-visual {

    position: relative;

    min-height: 530px;

    display: grid;

    place-items: center;
}


.location-orbit {

    position: absolute;

    border:
        1px solid var(--line);

    border-radius: 50%;
}


.orbit-contact-one {

    width: 430px;

    height: 430px;

    animation:
        contactOrbit
        20s linear infinite;
}


.orbit-contact-two {

    width: 310px;

    height: 310px;

    animation:
        contactOrbit
        15s linear infinite reverse;
}


@keyframes contactOrbit {

    to {

        transform:
            rotate(360deg);
    }
}


.location-center {

    position: relative;

    z-index: 4;

    width: 150px;

    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 8px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    background: var(--surface);

    backdrop-filter: blur(22px);

    box-shadow:
        var(--shadow);
}


.location-center i {

    color: var(--purple);

    font-size: 2.3rem;
}


.location-center span {

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.location-chip {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    background:
        var(--surface);

    backdrop-filter: blur(18px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.06);

    font-size: .59rem;

    font-weight: 700;
}


.location-chip span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 12px var(--purple);
}


.chip-jaipur {

    top: 12%;

    left: 10%;
}


.chip-sikar {

    right: 5%;

    top: 27%;
}


.chip-india {

    left: 5%;

    bottom: 22%;
}


.chip-world {

    right: 10%;

    bottom: 10%;
}



/* ==========================================================
   06. NEXT STEPS
========================================================== */

.contact-next-steps {

    padding:
        145px 0;
}


.contact-step-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}


.contact-step-grid article {

    position: relative;

    min-height: 300px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 23px;

    background:
        var(--surface);

    overflow: hidden;

    transition:
        .4s cubic-bezier(.22,1,.36,1);
}


.contact-step-grid article::before {

    content: "";

    position: absolute;

    top: -80px;

    right: -80px;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    background:
        rgba(126, 85, 239, .08);

    filter: blur(45px);
}


.contact-step-grid article:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(126, 85, 240, .3);

    box-shadow: var(--shadow);
}


.contact-step-grid article > span {

    color: var(--muted);

    font-size: .5rem;
}


.contact-step-grid article > i {

    position: absolute;

    top: 27px;

    right: 27px;

    color: var(--purple);

    font-size: 1.05rem;
}


.contact-step-grid h3 {

    margin-top: 105px;

    font-size:
        clamp(
            2.3rem,
            3.3vw,
            3.3rem
        );
}


.contact-step-grid p {

    margin-top: 14px;

    color: var(--text-soft);

    font-size: .74rem;

    line-height: 1.85;
}



/* ==========================================================
   07. FINAL CTA
========================================================== */

.contact-final-section {

    padding:
        30px 0
        140px;
}


.contact-final-panel {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 55px;

    border:
        1px solid var(--line);

    border-radius: 34px;

    background:

        linear-gradient(
            135deg,
            rgba(126, 85, 239, .12),
            var(--surface),
            rgba(73, 111, 245, .07)
        );

    box-shadow: var(--shadow);

    overflow: hidden;
}


.contact-final-panel::before {

    content: "";

    position: absolute;

    top: -280px;

    left: 50%;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(151, 94, 255, .2);

    filter: blur(100px);

    transform:
        translateX(-50%);
}


.contact-final-panel
.section-kicker {

    position: relative;

    z-index: 2;
}


.contact-final-panel h2 {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin-top: 24px;

    font-size:
        clamp(
            4rem,
            7vw,
            7.5rem
        );
}


.contact-final-actions {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;
}



/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1000px) {

    .contact-hero-layout,
    .project-enquiry-layout,
    .contact-location-layout {

        grid-template-columns:
            1fr;
    }


    .contact-page-hero {

        min-height: auto;

        padding:
            155px 0
            115px;
    }


    .contact-hero-layout {

        gap: 30px;
    }


    .contact-options-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .contact-option-card:last-child {

        grid-column:
            1 / 3;
    }


    .project-form-copy {

        position: static;
    }


    .project-enquiry-layout {

        gap: 55px;
    }


    .contact-whatsapp-panel {

        grid-template-columns:
            70px
            1fr;

        gap: 25px;
    }


    .contact-whatsapp-button {

        grid-column:
            2;
    }


    .contact-location-layout {

        gap: 50px;
    }


    .contact-step-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 620px) {

    .contact-page-hero {

        padding:
            125px 0
            90px;
    }


    .contact-hero-grid {

        background-size:
            48px 48px;
    }


    .contact-hero-copy h1 {

        font-size:
            clamp(
                3.6rem,
                17vw,
                5.2rem
            );

        line-height: .9;
    }


    .contact-hero-copy > p:last-of-type {

        margin-top: 28px;

        font-size: .84rem;
    }


    .contact-hero-actions {

        flex-direction: column;
    }


    .contact-hero-actions a {

        width: 100%;
    }


    .contact-hero-footer {

        display: none;
    }


    /* OPTIONS */

    .contact-options {

        padding:
            90px 0;
    }


    .contact-options-grid {

        grid-template-columns:
            1fr;
    }


    .contact-option-card:last-child {

        grid-column:
            auto;
    }


    .contact-option-card {

        min-height: 330px;

        padding: 25px;
    }


    .contact-option-card > small {

        margin-top: 55px;
    }


    /* FORM */

    .project-enquiry-section {

        padding:
            95px 0;
    }


    .project-form-copy h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.7rem
            );
    }


    .project-form-shell {

        padding:
            27px 18px;

        border-radius: 23px;
    }


    .project-form {

        grid-template-columns:
            1fr;

        gap: 22px;
    }


    .form-full {

        grid-column:
            auto;
    }


    .form-choice-grid {

        grid-template-columns:
            1fr;
    }


    .form-submit {

        align-items: stretch;

        flex-direction: column;
    }


    .project-submit {

        width: 100%;
    }


    /* WHATSAPP */

    .contact-whatsapp-section {

        padding:
            90px 0;
    }


    .contact-whatsapp-panel {

        min-height: auto;

        grid-template-columns:
            1fr;

        padding:
            35px 22px;

        border-radius: 24px;
    }


    .contact-whatsapp-button {

        grid-column:
            auto;

        width: 100%;
    }


    .whatsapp-panel-copy h2 {

        font-size:
            clamp(
                3rem,
                14vw,
                4.2rem
            );
    }


    /* LOCATION */

    .contact-location-section {

        padding:
            95px 0;
    }


    .contact-location-layout h2 {

        font-size:
            clamp(
                3.1rem,
                15vw,
                4.7rem
            );
    }


    .contact-location-visual {

        min-height: 420px;
    }


    .orbit-contact-one {

        width: 330px;

        height: 330px;
    }


    .orbit-contact-two {

        width: 240px;

        height: 240px;
    }


    .location-center {

        width: 120px;

        height: 120px;
    }


    .location-center i {

        font-size: 1.8rem;
    }


    .location-chip {

        padding:
            8px 11px;

        font-size: .52rem;
    }


    .chip-jaipur {

        left: 0;
    }


    .chip-sikar {

        right: 0;
    }


    .chip-india {

        left: 0;
    }


    .chip-world {

        right: 0;
    }


    /* STEPS */

    .contact-next-steps {

        padding:
            95px 0;
    }


    .contact-step-grid {

        grid-template-columns:
            1fr;
    }


    .contact-step-grid article {

        min-height: 255px;
    }


    .contact-step-grid h3 {

        margin-top: 80px;

        font-size: 2.65rem;
    }


    /* FINAL CTA */

    .contact-final-section {

        padding:
            10px 0
            95px;
    }


    .contact-final-panel {

        min-height: 500px;

        padding:
            45px 20px;

        border-radius: 25px;
    }


    .contact-final-panel h2 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.8rem
            );
    }


    .contact-final-actions {

        width: 100%;

        flex-direction: column;
    }


    .contact-final-actions a {

        width: 100%;
    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .contact-hero-copy h1 {

        font-size: 3.45rem;
    }


    .project-form-head strong {

        font-size: 1.7rem;
    }


    .location-chip {

        font-size: .46rem;
    }


    .contact-option-card h2 {

        font-size: 3rem;
    }

}




/* ==========================================================
   LAXNA TECHNOLOGIES
   CLIENT LOGIN PAGE
========================================================== */


/* ==========================================================
   01. LOGIN PAGE
========================================================== */

.login-page {

    min-height: 100vh;

    background:
        var(--bg);
}


.login-header {

    position: fixed;

    top: 22px;

    left: 50%;

    z-index: 1000;

    width:
        min(
            calc(100% - 40px),
            1400px
        );

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 14px
        0 18px;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--header);

    backdrop-filter:
        blur(28px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(145%);

    box-shadow:
        0 15px 45px
        rgba(20, 12, 40, .08);

    transform:
        translateX(-50%);
}


.login-header-actions {

    display: flex;

    align-items: center;

    gap: 12px;
}


.login-back {

    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        0 14px;

    border:
        1px solid var(--line);

    border-radius: 12px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    font-size: .68rem;

    font-weight: 700;

    transition:
        .3s ease;
}


.login-back:hover {

    color:
        var(--purple);

    transform:
        translateX(-3px);
}



/* ==========================================================
   02. MAIN LAYOUT
========================================================== */

.login-main {

    min-height: 100svh;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;
}



/* ==========================================================
   03. SHOWCASE
========================================================== */

.login-showcase {

    position: relative;

    min-height: 100svh;

    display: flex;

    justify-content: center;

    flex-direction: column;

    padding:
        150px
        clamp(35px, 6vw, 100px)
        70px;

    border-right:
        1px solid var(--line);

    overflow: hidden;

    background:
        var(--bg-deep);
}


.login-showcase-grid {

    position: absolute;

    inset: 0;

    opacity: .17;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );
}


.login-showcase-glow {

    position: absolute;

    top: 15%;

    right: -180px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(151, 91, 255, .17),
            rgba(73, 111, 245, .06) 52%,
            transparent 72%
        );

    filter:
        blur(50px);

    animation:
        loginGlowMove
        9s ease-in-out infinite;
}


@keyframes loginGlowMove {

    50% {

        transform:
            translate(-35px, 25px)
            scale(1.06);
    }
}


.login-showcase-content {

    position: relative;

    z-index: 3;

    max-width: 690px;
}


.login-kicker {

    color:
        var(--purple);

    font-size: .53rem;

    font-weight: 800;

    letter-spacing: .19em;
}


.login-showcase-content h1 {

    margin-top: 24px;

    font-size:
        clamp(
            4rem,
            6.5vw,
            7rem
        );

    line-height: .9;
}


.login-showcase-content > p {

    max-width: 550px;

    margin-top: 28px;

    color:
        var(--text-soft);

    font-size: .84rem;

    line-height: 1.9;
}



/* ==========================================================
   LOGIN BENEFITS
========================================================== */

.login-benefits {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    max-width: 620px;

    margin-top: 38px;
}


.login-benefits > div {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 14px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        var(--surface);

    backdrop-filter:
        blur(18px);

    transition:
        .3s ease;
}


.login-benefits > div:hover {

    border-color:
        rgba(126, 84, 239, .28);

    transform:
        translateY(-3px);
}


.login-benefit-icon {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    color: #fff;

    background:
        var(--accent);

    font-size: .78rem;
}


.login-benefits strong {

    display: block;

    font-size: .68rem;
}


.login-benefits small {

    display: block;

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .51rem;
}



/* ==========================================================
   DASHBOARD PREVIEW
========================================================== */

.login-dashboard-preview {

    position: relative;

    z-index: 3;

    width:
        min(
            610px,
            100%
        );

    margin-top: 45px;

    border:
        1px solid var(--line);

    border-radius: 23px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    overflow: hidden;

    transform:
        perspective(1200px)
        rotateX(2deg)
        rotateY(-3deg);
}


.login-preview-top {

    min-height: 46px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        0 16px;

    border-bottom:
        1px solid var(--line);
}


.login-preview-top > div {

    display: flex;

    gap: 5px;
}


.login-preview-top > div span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        var(--muted);

    opacity: .45;
}


.login-preview-top p {

    color:
        var(--muted);

    font-size: .44rem;

    letter-spacing: .13em;
}


.login-preview-body {

    padding: 25px;
}


.preview-project-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.preview-project-head small {

    display: block;

    color:
        var(--muted);

    font-size: .42rem;

    letter-spacing: .12em;
}


.preview-project-head strong {

    display: block;

    margin-top: 5px;

    font-size: .76rem;
}


.preview-project-head > span {

    padding:
        6px 9px;

    border:
        1px solid
        rgba(126, 84, 239, .18);

    border-radius: 100px;

    color:
        var(--purple);

    background:
        rgba(126, 84, 239, .05);

    font-size: .41rem;

    font-weight: 800;

    letter-spacing: .07em;
}


.preview-progress-card {

    margin-top: 20px;

    padding: 19px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface-solid);
}


.preview-progress-card small {

    color:
        var(--muted);

    font-size: .41rem;

    letter-spacing: .1em;
}


.preview-progress-card strong {

    display: block;

    margin-top: 5px;

    font-size: .69rem;
}


.preview-progress-line {

    height: 4px;

    margin-top: 16px;

    border-radius: 100px;

    background:
        var(--line);

    overflow: hidden;
}


.preview-progress-line span {

    display: block;

    width: 68%;

    height: 100%;

    border-radius: inherit;

    background:
        var(--accent);
}


.preview-client-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-top: 10px;
}


.preview-client-grid article {

    min-height: 85px;

    display: flex;

    justify-content: space-between;

    flex-direction: column;

    padding: 14px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        var(--surface-solid);
}


.preview-client-grid i {

    color:
        var(--purple);

    font-size: .75rem;
}


.preview-client-grid span {

    color:
        var(--text-soft);

    font-size: .53rem;
}



/* ==========================================================
   04. LOGIN FORM SECTION
========================================================== */

.login-form-section {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    padding:
        145px 55px
        45px;

    background:
        var(--bg);
}


.login-form-wrap {

    width:
        min(
            460px,
            100%
        );
}


.login-form-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        var(--purple);

    font-size: .5rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.login-status-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        var(--purple);

    box-shadow:
        0 0 14px
        var(--purple);
}


.login-form-wrap > h2 {

    margin-top: 18px;

    font-size:
        clamp(
            3.8rem,
            5vw,
            5.3rem
        );

    line-height: .87;
}


.login-form-description {

    max-width: 390px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: .77rem;

    line-height: 1.8;
}



/* ==========================================================
   LOGIN FORM
========================================================== */

.client-login-form {

    display: grid;

    gap: 22px;

    margin-top: 36px;
}


.login-field {

    display: grid;

    gap: 9px;
}


.login-field label {

    color:
        var(--text-soft);

    font-size: .62rem;

    font-weight: 700;
}


.login-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.forgot-password {

    color:
        var(--purple);

    font-size: .55rem;

    font-weight: 700;

    transition:
        .3s ease;
}


.forgot-password:hover {

    opacity: .7;
}


.login-input-shell {

    position: relative;

    height: 57px;

    display: flex;

    align-items: center;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        var(--surface-solid);

    transition:
        .3s ease;
}


.login-input-shell:focus-within {

    border-color:
        rgba(126, 84, 239, .5);

    box-shadow:
        0 0 0 4px
        rgba(126, 84, 239, .06);
}


.login-input-shell > i {

    width: 47px;

    color:
        var(--purple);

    text-align: center;

    font-size: .76rem;
}


.login-input-shell input {

    width: 100%;

    height: 100%;

    padding:
        0 15px
        0 0;

    border: 0;

    outline: 0;

    color:
        var(--text);

    background:
        transparent;

    font-family:
        "Manrope",
        sans-serif;

    font-size: .74rem;
}


.login-input-shell input::placeholder {

    color:
        var(--muted);
}



/* ==========================================================
   REMEMBER LOGIN
========================================================== */

.remember-login {

    display: flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color:
        var(--text-soft);

    font-size: .59rem;

    cursor: pointer;
}


.remember-login input {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.remember-box {

    width: 18px;

    height: 18px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 5px;

    background:
        var(--surface-solid);

    transition:
        .3s ease;
}


.remember-box i {

    color: #fff;

    font-size: .48rem;

    opacity: 0;
}


.remember-login input:checked
+ .remember-box {

    border-color:
        transparent;

    background:
        var(--accent);
}


.remember-login input:checked
+ .remember-box i {

    opacity: 1;
}



/* ==========================================================
   LOGIN BUTTON
========================================================== */

.client-login-button {

    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        0 18px
        0 20px;

    border-radius: 15px;

    color: #fff;

    background:
        var(--accent);

    box-shadow:
        0 16px 45px
        rgba(111, 73, 227, .24);

    font-size: .72rem;

    font-weight: 700;

    transition:
        .35s cubic-bezier(.22,1,.36,1);
}


.client-login-button i {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.14);
}


.client-login-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 22px 55px
        rgba(111, 73, 227, .35);
}



/* ==========================================================
   SECURITY
========================================================== */

.login-security {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-top: 28px;

    padding: 18px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface);
}


.login-security > i {

    margin-top: 3px;

    color:
        var(--purple);
}


.login-security strong {

    display: block;

    font-size: .63rem;
}


.login-security p {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .54rem;

    line-height: 1.7;
}



/* ==========================================================
   SUPPORT
========================================================== */

.login-help {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;

    padding-top: 22px;

    border-top:
        1px solid var(--line);
}


.login-help > span {

    color:
        var(--muted);

    font-size: .55rem;
}


.login-help a {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #20ad5b;

    font-size: .56rem;

    font-weight: 700;
}


.login-backend-note {

    margin-top: 20px;

    color:
        var(--muted);

    font-size: .5rem;

    line-height: 1.6;

    text-align: center;
}



/* ==========================================================
   LOGIN FOOTER
========================================================== */

.login-footer {

    width:
        min(
            460px,
            100%
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 40px;

    color:
        var(--muted);

    font-size: .48rem;

    letter-spacing: .06em;
}


.login-footer > div {

    display: flex;

    gap: 14px;
}


.login-footer a:hover {

    color:
        var(--purple);
}



/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1000px) {

    .login-main {

        grid-template-columns:
            1fr;
    }


    .login-showcase {

        min-height: auto;

        padding:
            145px 40px
            80px;

        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }


    .login-showcase-content {

        max-width: 800px;
    }


    .login-dashboard-preview {

        max-width: 700px;
    }


    .login-form-section {

        min-height: auto;

        padding:
            90px 35px
            40px;
    }


    .login-form-wrap,
    .login-footer {

        width:
            min(
                600px,
                100%
            );
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 620px) {

    .login-header {

        top: 10px;

        width:
            calc(100% - 20px);

        height: 64px;

        padding:
            0 9px
            0 12px;

        border-radius: 18px;
    }


    .login-header
    .brand img {

        width: 38px;

        height: 38px;
    }


    .login-back {

        width: 42px;

        height: 42px;

        min-height: 42px;

        justify-content: center;

        padding: 0;
    }


    .login-back {

        font-size: 0;
    }


    .login-back i {

        font-size: .75rem;
    }


    .login-showcase {

        padding:
            120px 15px
            70px;
    }


    .login-showcase-grid {

        background-size:
            48px 48px;
    }


    .login-showcase-content h1 {

        font-size:
            clamp(
                3.5rem,
                16vw,
                5rem
            );
    }


    .login-showcase-content > p {

        font-size: .8rem;
    }


    .login-benefits {

        grid-template-columns:
            1fr;
    }


    .login-dashboard-preview {

        margin-top: 35px;

        transform: none;
    }


    .login-preview-body {

        padding: 18px 13px;
    }


    .preview-client-grid {

        grid-template-columns:
            1fr;
    }


    .login-form-section {

        padding:
            80px 15px
            30px;
    }


    .login-form-wrap > h2 {

        font-size:
            4rem;
    }


    .login-help {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .login-footer {

        align-items:
            flex-start;

        flex-direction:
            column;

        margin-top: 55px;
    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .login-header
    .brand-copy span {

        display: none;
    }


    .login-showcase-content h1 {

        font-size: 3.4rem;
    }


    .login-form-wrap > h2 {

        font-size: 3.6rem;
    }

}




/* ==========================================================
   LAXNA TECHNOLOGIES
   CLIENT DASHBOARD
========================================================== */


/* ==========================================================
   DASHBOARD VARIABLES
========================================================== */

.dashboard-page {

    min-height: 100vh;

    background:
        var(--bg-deep);
}



/* ==========================================================
   SIDEBAR
========================================================== */

.dashboard-sidebar {

    position: fixed;

    inset:
        0 auto 0 0;

    z-index: 1500;

    width: 275px;

    display: flex;

    flex-direction: column;

    padding:
        22px 17px;

    border-right:
        1px solid var(--line);

    background:
        var(--header);

    backdrop-filter:
        blur(30px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(145%);

    transition:
        transform .35s
        cubic-bezier(.22,1,.36,1);
}


.dashboard-brand {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-brand
.brand img {

    width: 43px;

    height: 43px;
}


.dashboard-sidebar-close {

    display: none;

    width: 38px;

    height: 38px;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 11px;
}



/* CLIENT CARD */

.dashboard-client-card {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 23px;

    padding: 12px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface);
}


.dashboard-avatar {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: #fff;

    border-radius: 12px;

    background:
        var(--accent);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.2rem;

    font-weight: 700;
}


.dashboard-client-card small {

    display: block;

    color:
        var(--muted);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .12em;
}


.dashboard-client-card strong {

    display: block;

    margin-top: 4px;

    font-size: .64rem;
}



/* ==========================================================
   SIDEBAR NAV
========================================================== */

.dashboard-nav {

    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-top: 30px;
}


.dashboard-nav-label {

    display: block;

    margin:
        0 10px
        9px;

    color:
        var(--muted);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.dashboard-nav-label.second {

    margin-top: 24px;
}


.dashboard-nav-item {

    position: relative;

    width: 100%;

    min-height: 46px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        0 13px;

    border-radius: 12px;

    color:
        var(--text-soft);

    font-size: .66rem;

    font-weight: 600;

    text-align: left;

    transition:
        .3s ease;
}


.dashboard-nav-item i {

    width: 20px;

    color:
        var(--muted);

    font-size: .76rem;

    transition:
        .3s ease;
}


.dashboard-nav-item:hover {

    color:
        var(--text);

    background:
        rgba(126, 85, 239, .055);
}


.dashboard-nav-item.active {

    color:
        var(--text);

    background:
        linear-gradient(
            90deg,
            rgba(126, 85, 239, .13),
            rgba(126, 85, 239, .04)
        );
}


.dashboard-nav-item.active::before {

    content: "";

    position: absolute;

    left: 0;

    width: 2px;

    height: 21px;

    border-radius: 5px;

    background:
        var(--purple);

    box-shadow:
        0 0 13px
        var(--purple);
}


.dashboard-nav-item.active i {

    color:
        var(--purple);
}



/* SIDEBAR BOTTOM */

.dashboard-sidebar-bottom {

    display: grid;

    gap: 5px;

    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid var(--line);
}


.dashboard-sidebar-bottom a,
.dashboard-sidebar-bottom button {

    min-height: 43px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        0 12px;

    border-radius: 11px;

    color:
        var(--text-soft);

    font-size: .61rem;

    font-weight: 600;

    text-align: left;

    transition:
        .3s ease;
}


.dashboard-sidebar-bottom i {

    width: 18px;

    color:
        var(--muted);
}


.dashboard-sidebar-bottom a:hover {

    color:
        var(--purple);

    background:
        rgba(126, 85, 239, .05);
}


.dashboard-logout:hover {

    color: #e05252;

    background:
        rgba(224,82,82,.06);
}



/* ==========================================================
   MAIN SHELL
========================================================== */

.dashboard-shell {

    min-height: 100vh;

    margin-left: 275px;
}



/* ==========================================================
   HEADER
========================================================== */

.dashboard-header {

    position: sticky;

    top: 0;

    z-index: 900;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 32px;

    border-bottom:
        1px solid var(--line);

    background:
        var(--header);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);
}


.dashboard-header-left {

    display: flex;

    align-items: center;

    gap: 13px;
}


.dashboard-header-left small {

    display: block;

    color:
        var(--muted);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .15em;
}


.dashboard-header-left strong {

    display: block;

    margin-top: 4px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.25rem;

    font-weight: 600;
}


.dashboard-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        var(--surface);
}


.dashboard-header-actions {

    display: flex;

    align-items: center;

    gap: 9px;
}


.dashboard-status-pill {

    min-height: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 12px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    font-size: .52rem;

    font-weight: 700;
}


.dashboard-status-pill span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #35c878;

    box-shadow:
        0 0 12px
        rgba(53,200,120,.7);
}


.dashboard-notification {

    position: relative;

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        var(--surface);
}


.dashboard-notification > span {

    position: absolute;

    top: 8px;

    right: 9px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--purple);
}


.dashboard-user {

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 12px;

    background:
        var(--accent);

    font-family:
        "Cormorant Garamond",
        serif;

    font-weight: 700;
}



/* ==========================================================
   CONTENT
========================================================== */

.dashboard-content {

    width:
        min(
            calc(100% - 64px),
            1320px
        );

    margin-inline: auto;

    padding:
        50px 0
        80px;
}


.dashboard-panel {

    display: none;

    animation:
        dashboardPanelIn
        .4s ease;
}


.dashboard-panel.active {

    display: block;
}


@keyframes dashboardPanelIn {

    from {

        opacity: 0;

        transform:
            translateY(10px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}



/* ==========================================================
   PAGE TYPOGRAPHY
========================================================== */

.dashboard-eyebrow {

    color:
        var(--purple);

    font-size: .5rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.dashboard-page-heading {

    max-width: 750px;

    margin-bottom: 45px;
}


.dashboard-page-heading h1 {

    margin-top: 13px;

    font-size:
        clamp(
            3.6rem,
            5.5vw,
            6rem
        );

    line-height: .9;
}


.dashboard-page-heading > p:last-child {

    max-width: 520px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: .78rem;

    line-height: 1.8;
}


.dashboard-heading-row {

    max-width: none;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}



/* ==========================================================
   WELCOME
========================================================== */

.dashboard-welcome {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 45px;

    margin-bottom: 38px;
}


.dashboard-welcome h1 {

    max-width: 800px;

    margin-top: 13px;

    font-size:
        clamp(
            3.6rem,
            5.7vw,
            6.2rem
        );
}


.dashboard-welcome > div:first-child > p:last-child {

    max-width: 590px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: .78rem;

    line-height: 1.8;
}


.dashboard-project-code {

    flex-shrink: 0;

    padding:
        15px 18px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        var(--surface);
}


.dashboard-project-code small {

    display: block;

    color:
        var(--muted);

    font-size: .41rem;

    letter-spacing: .12em;
}


.dashboard-project-code strong {

    display: block;

    margin-top: 5px;

    color:
        var(--purple);

    font-size: .67rem;

    letter-spacing: .09em;
}



/* ==========================================================
   OVERVIEW
========================================================== */

.dashboard-overview-grid {

    display: grid;

    grid-template-columns:
        1.45fr
        .55fr;

    gap: 15px;
}


.dashboard-main-project-card {

    min-height: 390px;

    padding: 32px;

    border:
        1px solid var(--line);

    border-radius: 25px;

    background:

        linear-gradient(
            140deg,
            rgba(126,85,239,.11),
            var(--surface)
        );

    box-shadow:
        var(--shadow);
}


.project-card-heading {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 25px;
}


.project-card-heading small {

    color:
        var(--muted);

    font-size: .46rem;

    font-weight: 700;

    letter-spacing: .15em;
}


.project-card-heading h2 {

    margin-top: 8px;

    font-size:
        clamp(
            2.5rem,
            4vw,
            4rem
        );
}


.project-stage {

    padding:
        8px 11px;

    border:
        1px solid
        rgba(126,85,239,.2);

    border-radius: 100px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.06);

    font-size: .44rem;

    font-weight: 800;

    letter-spacing: .09em;
}


.project-progress-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 70px;
}


.project-progress-info span {

    color:
        var(--text-soft);

    font-size: .66rem;
}


.project-progress-info strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 2rem;
}


.dashboard-progress {

    height: 7px;

    margin-top: 13px;

    border-radius: 100px;

    background:
        var(--line);

    overflow: hidden;
}


.dashboard-progress > span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        var(--accent);
}


.project-stage-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin-top: 36px;
}


.project-stage-grid > div {

    min-height: 80px;

    display: flex;

    justify-content: space-between;

    flex-direction: column;

    padding: 13px;

    border:
        1px solid var(--line);

    border-radius: 13px;

    color:
        var(--muted);

    background:
        var(--surface-solid);

    font-size: .54rem;
}


.project-stage-grid i {

    font-size: .7rem;
}


.project-stage-grid
.completed {

    color:
        var(--text-soft);
}


.project-stage-grid
.completed i {

    color: #35c878;
}


.project-stage-grid
.current {

    color:
        var(--text);

    border-color:
        rgba(126,85,239,.3);

    background:
        rgba(126,85,239,.06);
}


.project-stage-grid
.current i {

    color:
        var(--purple);
}



/* QUICK CARDS */

.dashboard-quick-grid {

    display: grid;

    gap: 10px;
}


.dashboard-quick-grid article {

    min-height: 123px;

    display: grid;

    grid-template-columns:
        44px 1fr;

    align-items: center;

    gap:
        5px 13px;

    padding: 15px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        var(--surface);

    transition:
        .3s ease;
}


.dashboard-quick-grid article:hover {

    border-color:
        rgba(126,85,239,.25);

    transform:
        translateX(-4px);
}


.quick-icon {

    grid-row:
        1 / 4;

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.07);
}


.dashboard-quick-grid small {

    color:
        var(--muted);

    font-size: .4rem;

    letter-spacing: .12em;
}


.dashboard-quick-grid strong {

    font-size: .66rem;
}


.dashboard-quick-grid button {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--purple);

    font-size: .5rem;

    font-weight: 700;
}



/* ==========================================================
   SECTION HEADING
========================================================== */

.dashboard-section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin:
        55px 0
        20px;
}


.dashboard-section-heading small {

    color:
        var(--muted);

    font-size: .45rem;

    font-weight: 700;

    letter-spacing: .15em;
}


.dashboard-section-heading h2 {

    margin-top: 6px;

    font-size: 2.2rem;
}


.dashboard-section-heading button {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--purple);

    font-size: .56rem;

    font-weight: 700;
}



/* ==========================================================
   UPDATE CARD
========================================================== */

.latest-update-card {

    display: grid;

    grid-template-columns:
        70px
        1fr
        45px;

    align-items: center;

    gap: 22px;

    padding: 24px;

    border:
        1px solid var(--line);

    border-radius: 19px;

    background:
        var(--surface);
}


.update-date {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    align-content: center;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface-solid);
}


.update-date span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.6rem;

    line-height: 1;
}


.update-date small {

    color:
        var(--muted);

    font-size: .38rem;

    font-weight: 800;
}


.update-status {

    color:
        var(--purple);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.update-content h3 {

    margin-top: 7px;

    font-size: 1.65rem;
}


.update-content p {

    max-width: 750px;

    margin-top: 7px;

    color:
        var(--text-soft);

    font-size: .67rem;

    line-height: 1.7;
}


.latest-update-card > i {

    color:
        var(--purple);
}



/* ==========================================================
   PROJECT DETAILS
========================================================== */

.project-detail-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 15px;
}


.project-information-card,
.project-timeline-card,
.payment-history-card {

    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        var(--surface);
}


.dashboard-card-label {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--line);
}


.dashboard-card-label span {

    color:
        var(--muted);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.dashboard-card-label i {

    color:
        var(--purple);
}


.project-information-list {

    display: grid;

    margin-top: 10px;
}


.project-information-list > div {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid var(--line);
}


.project-information-list > div:last-child {

    border-bottom: 0;
}


.project-information-list span {

    color:
        var(--text-soft);

    font-size: .61rem;
}


.project-information-list strong {

    font-size: .65rem;
}


.project-active-text {

    color: #35c878;
}



/* ==========================================================
   TIMELINE
========================================================== */

.dashboard-timeline {

    padding-top: 22px;
}


.dashboard-timeline > div {

    position: relative;

    min-height: 95px;

    display: grid;

    grid-template-columns:
        24px
        1fr;

    gap: 18px;
}


.dashboard-timeline
> div > span {

    position: relative;

    width: 11px;

    height: 11px;

    margin-top: 4px;

    border:
        2px solid var(--muted);

    border-radius: 50%;

    background:
        var(--surface-solid);
}


.dashboard-timeline
> div:not(:last-child)
> span::after {

    content: "";

    position: absolute;

    top: 14px;

    left: 3px;

    width: 1px;

    height: 80px;

    background:
        var(--line);
}


.dashboard-timeline
.done > span {

    border-color: #35c878;

    background: #35c878;
}


.dashboard-timeline
.active > span {

    border-color:
        var(--purple);

    background:
        var(--purple);

    box-shadow:
        0 0 15px
        var(--purple);
}


.dashboard-timeline small {

    color:
        var(--muted);

    font-size: .4rem;

    letter-spacing: .12em;
}


.dashboard-timeline strong {

    display: block;

    margin-top: 4px;

    font-size: .7rem;
}


.dashboard-timeline p {

    margin-top: 4px;

    color:
        var(--muted);

    font-size: .55rem;
}



/* ==========================================================
   UPDATES TIMELINE
========================================================== */

.updates-timeline {

    max-width: 900px;
}


.updates-timeline > article {

    display: grid;

    grid-template-columns:
        40px
        1fr;

    gap: 17px;
}


.update-timeline-marker {

    position: relative;

    display: flex;

    justify-content: center;
}


.update-timeline-marker span {

    position: relative;

    z-index: 2;

    width: 10px;

    height: 10px;

    margin-top: 28px;

    border-radius: 50%;

    background:
        var(--purple);

    box-shadow:
        0 0 15px
        rgba(126,85,239,.6);
}


.updates-timeline
article:not(:last-child)
.update-timeline-marker::after {

    content: "";

    position: absolute;

    top: 38px;

    bottom: -10px;

    width: 1px;

    background:
        var(--line);
}


.update-timeline-card {

    margin-bottom: 13px;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        var(--surface);
}


.update-timeline-head {

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.update-timeline-head span {

    color:
        var(--purple);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.update-timeline-head small {

    color:
        var(--muted);

    font-size: .44rem;
}


.update-timeline-card h3 {

    margin-top: 16px;

    font-size: 2rem;
}


.update-timeline-card p {

    max-width: 650px;

    margin-top: 10px;

    color:
        var(--text-soft);

    font-size: .67rem;

    line-height: 1.75;
}



/* ==========================================================
   PRIMARY ACTION
========================================================== */

.dashboard-primary-action {

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 15px;

    border-radius: 12px;

    color: #fff;

    background:
        var(--accent);

    font-size: .6rem;

    font-weight: 700;
}



/* ==========================================================
   FILES
========================================================== */

.dashboard-file-table {

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        var(--surface);

    overflow: hidden;
}


.dashboard-file-heading,
.dashboard-file-row {

    display: grid;

    grid-template-columns:
        1.7fr
        .55fr
        .55fr
        60px;

    align-items: center;

    gap: 20px;

    padding:
        0 22px;
}


.dashboard-file-heading {

    min-height: 55px;

    border-bottom:
        1px solid var(--line);

    color:
        var(--muted);

    background:
        rgba(126,85,239,.035);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.dashboard-file-row {

    min-height: 85px;

    border-bottom:
        1px solid var(--line);
}


.dashboard-file-row:last-child {

    border-bottom: 0;
}


.file-name {

    display: flex;

    align-items: center;

    gap: 12px;
}


.file-name > span {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.07);
}


.file-name strong {

    display: block;

    font-size: .64rem;
}


.file-name small {

    display: block;

    margin-top: 4px;

    color:
        var(--muted);

    font-size: .49rem;
}


.dashboard-file-row > span {

    color:
        var(--text-soft);

    font-size: .56rem;
}


.dashboard-file-row > button {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 10px;

    color:
        var(--purple);
}



/* ==========================================================
   CHAT
========================================================== */

.dashboard-chat {

    max-width: 1000px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        var(--surface);

    overflow: hidden;
}


.dashboard-chat-header {

    min-height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        0 22px;

    border-bottom:
        1px solid var(--line);
}


.chat-person {

    display: flex;

    align-items: center;

    gap: 11px;
}


.chat-avatar {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 12px;

    background:
        var(--accent);

    font-size: .53rem;

    font-weight: 800;
}


.chat-person strong {

    display: block;

    font-size: .65rem;
}


.chat-person small {

    display: block;

    margin-top: 3px;

    color:
        var(--muted);

    font-size: .48rem;
}


.chat-online {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--text-soft);

    font-size: .5rem;
}


.chat-online i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #35c878;
}


.dashboard-chat-body {

    min-height: 430px;

    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 28px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(126,85,239,.025)
        );
}


.chat-message {

    display: flex;
}


.chat-message > div {

    max-width: 65%;

    padding:
        14px 16px;

    border:
        1px solid var(--line);

    border-radius: 16px;
}


.support-message {

    justify-content: flex-start;
}


.support-message > div {

    background:
        var(--surface-solid);

    border-bottom-left-radius: 5px;
}


.client-message {

    justify-content: flex-end;
}


.client-message > div {

    border-color:
        rgba(126,85,239,.18);

    background:
        rgba(126,85,239,.08);

    border-bottom-right-radius: 5px;
}


.chat-message small {

    color:
        var(--purple);

    font-size: .4rem;

    font-weight: 800;
}


.chat-message p {

    margin-top: 6px;

    color:
        var(--text-soft);

    font-size: .65rem;

    line-height: 1.7;
}


.chat-message span {

    display: block;

    margin-top: 7px;

    color:
        var(--muted);

    font-size: .4rem;
}


.dashboard-chat-input {

    min-height: 72px;

    display: grid;

    grid-template-columns:
        40px
        1fr
        42px;

    align-items: center;

    gap: 10px;

    padding:
        0 17px;

    border-top:
        1px solid var(--line);
}


.dashboard-chat-input button {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 10px;

    color:
        var(--text-soft);
}


.dashboard-chat-input input {

    width: 100%;

    height: 42px;

    padding:
        0 14px;

    border:
        1px solid var(--line);

    outline: none;

    border-radius: 11px;

    color:
        var(--text);

    background:
        var(--surface-solid);

    font-family:
        "Manrope",
        sans-serif;

    font-size: .65rem;
}


.dashboard-chat-input
.chat-send {

    color: #fff;

    border-color:
        transparent;

    background:
        var(--accent);
}



/* ==========================================================
   PAYMENTS
========================================================== */

.dashboard-payment-summary {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.dashboard-payment-summary article {

    min-height: 180px;

    padding: 23px;

    border:
        1px solid var(--line);

    border-radius: 19px;

    background:
        var(--surface);
}


.dashboard-payment-summary small {

    color:
        var(--muted);

    font-size: .44rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.dashboard-payment-summary strong {

    display: block;

    margin-top: 30px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 3rem;

    font-weight: 600;
}


.dashboard-payment-summary p {

    margin-top: 11px;

    color:
        var(--muted);

    font-size: .55rem;

    line-height: 1.7;
}


.payment-history-card {

    margin-top: 15px;
}


.payment-empty-state {

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;
}


.payment-empty-state > span {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 17px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.06);

    font-size: 1.2rem;
}


.payment-empty-state h3 {

    margin-top: 20px;

    font-size: 2rem;
}


.payment-empty-state p {

    max-width: 380px;

    margin-top: 10px;

    color:
        var(--text-soft);

    font-size: .64rem;

    line-height: 1.7;
}



/* ==========================================================
   SUPPORT
========================================================== */

.dashboard-support-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    max-width: 900px;
}


.dashboard-support-grid > a {

    position: relative;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    padding: 27px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        var(--surface);

    transition:
        .35s ease;
}


.dashboard-support-grid > a:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(126,85,239,.25);

    box-shadow:
        var(--shadow);
}


.dashboard-support-grid
> a > div {

    width: 47px;

    height: 47px;

    display: grid;

    place-items: center;

    color:
        var(--purple);

    border-radius: 13px;

    background:
        rgba(126,85,239,.07);
}


.dashboard-support-grid small {

    margin-top: 55px;

    color:
        var(--purple);

    font-size: .44rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.dashboard-support-grid h3 {

    margin-top: 8px;

    font-size: 2.7rem;
}


.dashboard-support-grid p {

    max-width: 340px;

    margin-top: 10px;

    color:
        var(--text-soft);

    font-size: .65rem;

    line-height: 1.75;
}


.dashboard-support-grid
> a > span {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color:
        var(--purple);

    font-size: .57rem;

    font-weight: 700;
}



/* ==========================================================
   OVERLAY
========================================================== */

.dashboard-overlay {

    position: fixed;

    inset: 0;

    z-index: 1400;

    background:
        rgba(5,7,14,.55);

    backdrop-filter:
        blur(6px);

    opacity: 0;

    visibility: hidden;

    transition:
        .3s ease;
}


.dashboard-overlay.active {

    opacity: 1;

    visibility: visible;
}



/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1050px) {

    .dashboard-sidebar {

        transform:
            translateX(-100%);
    }


    .dashboard-sidebar.active {

        transform:
            translateX(0);
    }


    .dashboard-sidebar-close {

        display: grid;
    }


    .dashboard-shell {

        margin-left: 0;
    }


    .dashboard-menu-button {

        display: grid;
    }


    .dashboard-overview-grid,
    .project-detail-grid {

        grid-template-columns:
            1fr;
    }


    .dashboard-quick-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .dashboard-quick-grid article {

        display: flex;

        align-items: flex-start;

        flex-direction: column;

        min-height: 180px;
    }


    .dashboard-quick-grid button {

        margin-top: auto;
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 650px) {

    .dashboard-sidebar {

        width:
            min(
                300px,
                88vw
            );
    }


    .dashboard-header {

        height: 70px;

        padding:
            0 12px;
    }


    .dashboard-header-left small {

        display: none;
    }


    .dashboard-header-left strong {

        margin-top: 0;

        font-size: 1rem;
    }


    .dashboard-status-pill {

        display: none;
    }


    .dashboard-header
    .theme-toggle {

        width: 58px;
    }


    .dashboard-content {

        width:
            calc(100% - 28px);

        padding:
            35px 0
            65px;
    }


    .dashboard-welcome {

        align-items: flex-start;

        flex-direction: column;
    }


    .dashboard-welcome h1,
    .dashboard-page-heading h1 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.5rem
            );
    }


    .dashboard-project-code {

        display: none;
    }


    .dashboard-main-project-card {

        min-height: auto;

        padding: 23px 18px;
    }


    .project-card-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .project-progress-info {

        margin-top: 45px;
    }


    .project-stage-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .dashboard-quick-grid {

        grid-template-columns:
            1fr;
    }


    .dashboard-quick-grid article {

        min-height: 135px;
    }


    .dashboard-section-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .latest-update-card {

        grid-template-columns:
            55px
            1fr;
    }


    .latest-update-card > i {

        display: none;
    }


    .update-date {

        width: 52px;

        height: 52px;
    }


    .dashboard-heading-row {

        align-items: flex-start;

        flex-direction: column;
    }


    .dashboard-primary-action {

        width: 100%;
    }


    /* FILES */

    .dashboard-file-table {

        overflow-x: auto;
    }


    .dashboard-file-heading,
    .dashboard-file-row {

        min-width: 680px;
    }


    /* CHAT */

    .dashboard-chat-body {

        min-height: 380px;

        padding: 18px 12px;
    }


    .chat-message > div {

        max-width: 85%;
    }


    .chat-online {

        display: none;
    }


    /* PAYMENTS */

    .dashboard-payment-summary {

        grid-template-columns:
            1fr;
    }


    /* SUPPORT */

    .dashboard-support-grid {

        grid-template-columns:
            1fr;
    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .dashboard-header-actions
    .dashboard-notification {

        display: none;
    }


    .dashboard-page-heading h1,
    .dashboard-welcome h1 {

        font-size: 3.25rem;
    }


    .project-stage-grid {

        grid-template-columns:
            1fr;
    }

}


/* ==========================================================
   LAXNA TECHNOLOGIES
   ADMIN LOGIN
========================================================== */


/* ==========================================================
   PAGE
========================================================== */

.admin-login-page {

    min-height: 100vh;

    background:
        var(--bg);
}



/* ==========================================================
   TOP HEADER
========================================================== */

.admin-login-header {

    position: fixed;

    top: 22px;

    left: 50%;

    z-index: 2000;

    width:
        min(
            calc(100% - 40px),
            1400px
        );

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 14px
        0 18px;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--header);

    backdrop-filter:
        blur(30px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(145%);

    box-shadow:
        0 15px 50px
        rgba(12, 8, 30, .10);

    transform:
        translateX(-50%);
}


.admin-login-header-right {

    display: flex;

    align-items: center;

    gap: 12px;
}


.admin-private-label {

    min-height: 38px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 13px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .12em;
}


.admin-private-label i {

    color:
        var(--purple);
}



/* ==========================================================
   LAYOUT
========================================================== */

.admin-login-main {

    min-height: 100svh;

    display: grid;

    grid-template-columns:
        1.18fr
        .82fr;
}



/* ==========================================================
   LEFT SHOWCASE
========================================================== */

.admin-login-showcase {

    position: relative;

    min-height: 100svh;

    display: flex;

    justify-content: center;

    flex-direction: column;

    padding:
        145px
        clamp(35px, 5.5vw, 95px)
        60px;

    border-right:
        1px solid var(--line);

    background:
        var(--bg-deep);

    overflow: hidden;
}


.admin-login-grid {

    position: absolute;

    inset: 0;

    opacity: .17;

    background-image:

        linear-gradient(
            var(--line) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        radial-gradient(
            circle at 55% 45%,
            #000,
            transparent 78%
        );
}



/* GLOWS */

.admin-login-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(120px);
}


.admin-glow-one {

    width: 580px;

    height: 580px;

    top: 5%;

    right: -180px;

    background:
        rgba(146, 84, 255, .17);

    animation:
        adminGlowMove
        9s ease-in-out infinite;
}


.admin-glow-two {

    width: 440px;

    height: 440px;

    left: -180px;

    bottom: -100px;

    background:
        rgba(70, 112, 247, .09);
}


@keyframes adminGlowMove {

    50% {

        transform:
            translate(-35px, 25px)
            scale(1.06);
    }
}



/* ==========================================================
   COPY
========================================================== */

.admin-login-copy {

    position: relative;

    z-index: 3;

    max-width: 720px;
}


.admin-system-badge {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        var(--purple);

    font-size: .51rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.admin-system-badge span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        var(--purple);

    box-shadow:
        0 0 14px
        var(--purple);
}


.admin-login-copy h1 {

    margin-top: 24px;

    font-size:
        clamp(
            4.2rem,
            6.7vw,
            7.3rem
        );

    line-height: .88;
}


.admin-login-copy > p {

    max-width: 570px;

    margin-top: 29px;

    color:
        var(--text-soft);

    font-size: .83rem;

    line-height: 1.9;
}



/* ==========================================================
   ADMIN MODULES
========================================================== */

.admin-module-preview {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    max-width: 620px;

    margin-top: 38px;
}


.admin-module-preview article {

    min-height: 88px;

    display: grid;

    grid-template-columns:
        25px
        38px
        1fr;

    align-items: center;

    gap: 11px;

    padding:
        12px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface);

    backdrop-filter:
        blur(18px);

    transition:
        .3s ease;
}


.admin-module-preview article:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(126,85,239,.28);
}


.admin-module-preview
article > span {

    color:
        var(--muted);

    font-size: .43rem;
}


.admin-module-preview
article > i {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    color:
        var(--purple);

    border-radius: 11px;

    background:
        rgba(126,85,239,.07);

    font-size: .75rem;
}


.admin-module-preview strong {

    display: block;

    font-size: .63rem;
}


.admin-module-preview small {

    display: block;

    margin-top: 4px;

    color:
        var(--muted);

    font-size: .47rem;
}



/* ==========================================================
   ADMIN CONSOLE PREVIEW
========================================================== */

.admin-console-preview {

    position: relative;

    z-index: 3;

    width:
        min(
            620px,
            100%
        );

    margin-top: 42px;

    border:
        1px solid var(--line);

    border-radius: 23px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    overflow: hidden;

    transform:
        perspective(1200px)
        rotateX(2deg)
        rotateY(-3deg);

    transition:
        .45s ease;
}


.admin-console-preview:hover {

    transform:
        perspective(1200px)
        rotateX(0deg)
        rotateY(0deg)
        translateY(-6px);
}


.admin-console-top {

    min-height: 47px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        0 16px;

    border-bottom:
        1px solid var(--line);
}


.admin-console-top > div {

    display: flex;

    gap: 5px;
}


.admin-console-top
> div span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        var(--muted);

    opacity: .45;
}


.admin-console-top p {

    margin-left: auto;

    color:
        var(--muted);

    font-size: .42rem;

    letter-spacing: .13em;
}


.console-live {

    display: flex;

    align-items: center;

    gap: 5px;

    color:
        var(--text-soft);

    font-size: .4rem;
}


.console-live i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        #35c878;

    box-shadow:
        0 0 10px
        #35c878;
}



/* CONSOLE BODY */

.admin-console-body {

    min-height: 300px;

    display: grid;

    grid-template-columns:
        65px
        1fr;
}


.admin-console-body aside {

    display: flex;

    align-items: center;

    flex-direction: column;

    gap: 18px;

    padding-top: 22px;

    border-right:
        1px solid var(--line);
}


.console-logo {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    margin-bottom: 15px;

    color: #fff;

    border-radius: 10px;

    background:
        var(--accent);

    font-size: .48rem;

    font-weight: 800;
}


.admin-console-body
aside > span {

    width: 25px;

    height: 5px;

    border-radius: 20px;

    background:
        var(--line);
}


.admin-console-body
aside > span.active {

    background:
        var(--purple);
}


.console-main {

    padding: 24px;
}


.console-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.console-heading small {

    display: block;

    color:
        var(--muted);

    font-size: .4rem;

    letter-spacing: .12em;
}


.console-heading strong {

    display: block;

    margin-top: 4px;

    font-size: .71rem;
}


.console-heading > i {

    color:
        var(--purple);
}


.console-feature-card {

    min-height: 120px;

    margin-top: 20px;

    padding: 18px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:

        linear-gradient(
            135deg,
            rgba(126,85,239,.09),
            var(--surface-solid)
        );
}


.console-feature-card small {

    color:
        var(--purple);

    font-size: .4rem;

    letter-spacing: .12em;
}


.console-feature-card strong {

    display: block;

    margin-top: 9px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.6rem;
}


.console-progress {

    height: 4px;

    margin-top: 22px;

    border-radius: 100px;

    background:
        var(--line);
}


.console-progress span {

    display: block;

    width: 74%;

    height: 100%;

    border-radius: inherit;

    background:
        var(--accent);
}


.console-mini-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 9px;
}


.console-mini-grid article {

    min-height: 75px;

    display: flex;

    justify-content: space-between;

    flex-direction: column;

    padding: 11px;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        var(--surface-solid);
}


.console-mini-grid i {

    color:
        var(--purple);

    font-size: .65rem;
}


.console-mini-grid span {

    color:
        var(--text-soft);

    font-size: .45rem;
}



/* ==========================================================
   RIGHT LOGIN
========================================================== */

.admin-login-form-section {

    min-height: 100svh;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    padding:
        145px 55px
        40px;

    background:
        var(--bg);
}


.admin-login-form-wrap {

    width:
        min(
            455px,
            100%
        );
}


.admin-login-kicker {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--purple);

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .17em;
}


.admin-login-kicker span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        var(--purple);

    box-shadow:
        0 0 12px
        var(--purple);
}


.admin-login-form-wrap > h2 {

    margin-top: 18px;

    font-size:
        clamp(
            3.8rem,
            5vw,
            5.3rem
        );

    line-height: .87;
}


.admin-login-description {

    max-width: 380px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: .76rem;

    line-height: 1.8;
}



/* ==========================================================
   ADMIN FORM
========================================================== */

.admin-login-form {

    display: grid;

    gap: 22px;

    margin-top: 36px;
}


.admin-login-field {

    display: grid;

    gap: 9px;
}


.admin-login-field label {

    color:
        var(--text-soft);

    font-size: .61rem;

    font-weight: 700;
}


.admin-login-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.admin-login-label-row > span {

    display: flex;

    align-items: center;

    gap: 6px;

    color:
        var(--muted);

    font-size: .49rem;
}


.admin-login-label-row
> span i {

    color:
        var(--purple);
}


.admin-input-shell {

    height: 57px;

    display: flex;

    align-items: center;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        var(--surface-solid);

    transition:
        .3s ease;
}


.admin-input-shell:focus-within {

    border-color:
        rgba(126,85,239,.48);

    box-shadow:
        0 0 0 4px
        rgba(126,85,239,.06);
}


.admin-input-shell > i {

    width: 48px;

    color:
        var(--purple);

    text-align: center;

    font-size: .73rem;
}


.admin-input-shell input {

    width: 100%;

    height: 100%;

    padding-right: 15px;

    border: 0;

    outline: 0;

    color:
        var(--text);

    background:
        transparent;

    font-family:
        "Manrope",
        sans-serif;

    font-size: .73rem;
}


.admin-input-shell
input::placeholder {

    color:
        var(--muted);
}



/* REMEMBER */

.admin-remember-login {

    display: flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color:
        var(--text-soft);

    font-size: .57rem;

    cursor: pointer;
}


.admin-remember-login input {

    position: absolute;

    opacity: 0;
}


.admin-remember-box {

    width: 18px;

    height: 18px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 5px;

    background:
        var(--surface-solid);
}


.admin-remember-box i {

    color: #fff;

    font-size: .45rem;

    opacity: 0;
}


.admin-remember-login
input:checked
+ .admin-remember-box {

    border-color:
        transparent;

    background:
        var(--accent);
}


.admin-remember-login
input:checked
+ .admin-remember-box i {

    opacity: 1;
}



/* LOGIN BUTTON */

.admin-login-button {

    min-height: 57px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        0 16px
        0 20px;

    border-radius: 15px;

    color: #fff;

    background:
        var(--accent);

    box-shadow:
        0 18px 45px
        rgba(110,72,230,.25);

    font-size: .7rem;

    font-weight: 700;

    transition:
        .35s cubic-bezier(.22,1,.36,1);
}


.admin-login-button > span {

    display: flex;

    align-items: center;

    gap: 9px;
}


.admin-login-button
> i {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.14);
}


.admin-login-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 24px 58px
        rgba(110,72,230,.36);
}



/* ==========================================================
   SECURITY
========================================================== */

.admin-security-panel {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-top: 28px;

    padding: 18px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface);
}


.admin-security-panel
> span {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.07);
}


.admin-security-panel strong {

    display: block;

    font-size: .61rem;
}


.admin-security-panel p {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .52rem;

    line-height: 1.7;
}


.admin-login-notice {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    color:
        var(--muted);

    font-size: .49rem;
}


.admin-login-notice i {

    color:
        var(--purple);
}



/* ==========================================================
   FOOTER
========================================================== */

.admin-login-footer {

    width:
        min(
            455px,
            100%
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 40px;

    color:
        var(--muted);

    font-size: .47rem;

    letter-spacing: .06em;
}


.admin-login-footer a {

    display: flex;

    align-items: center;

    gap: 7px;

    transition:
        .3s ease;
}


.admin-login-footer a:hover {

    color:
        var(--purple);
}



/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1000px) {

    .admin-login-main {

        grid-template-columns:
            1fr;
    }


    .admin-login-showcase {

        min-height: auto;

        padding:
            145px 40px
            80px;

        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }


    .admin-login-form-section {

        min-height: auto;

        padding:
            90px 35px
            40px;
    }


    .admin-login-form-wrap,
    .admin-login-footer {

        width:
            min(
                600px,
                100%
            );
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 620px) {

    .admin-login-header {

        top: 10px;

        width:
            calc(100% - 20px);

        min-height: 64px;

        padding:
            0 9px
            0 12px;

        border-radius: 18px;
    }


    .admin-private-label {

        display: none;
    }


    .admin-login-showcase {

        padding:
            120px 15px
            70px;
    }


    .admin-login-grid {

        background-size:
            48px 48px;
    }


    .admin-login-copy h1 {

        font-size:
            clamp(
                3.5rem,
                16vw,
                5rem
            );
    }


    .admin-module-preview {

        grid-template-columns:
            1fr;
    }


    .admin-console-preview {

        transform: none;
    }


    .admin-console-body {

        grid-template-columns:
            48px
            1fr;
    }


    .console-main {

        padding: 18px 12px;
    }


    .console-mini-grid {

        grid-template-columns:
            1fr;
    }


    .admin-login-form-section {

        padding:
            80px 15px
            30px;
    }


    .admin-login-form-wrap > h2 {

        font-size: 4rem;
    }


    .admin-login-footer {

        align-items:
            flex-start;

        flex-direction:
            column;

        margin-top: 55px;
    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .admin-login-header
    .brand-copy span {

        display: none;
    }


    .admin-login-copy h1 {

        font-size: 3.4rem;
    }


    .admin-login-form-wrap > h2 {

        font-size: 3.55rem;
    }

}




/* ==========================================================
   LAXNA TECHNOLOGIES
   ADMIN DASHBOARD
========================================================== */


/* ==========================================================
   PAGE
========================================================== */

.admin-dashboard-page {

    min-height: 100vh;

    background:
        var(--bg-deep);
}



/* ==========================================================
   SIDEBAR
========================================================== */

.admin-sidebar {

    position: fixed;

    inset:
        0 auto 0 0;

    z-index: 1600;

    width: 280px;

    display: flex;

    flex-direction: column;

    padding:
        20px 17px;

    border-right:
        1px solid var(--line);

    background:
        var(--header);

    backdrop-filter:
        blur(30px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(145%);

    transition:
        transform
        .35s cubic-bezier(.22,1,.36,1);
}



.admin-sidebar-brand {

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.admin-sidebar-brand
.brand img {

    width: 43px;

    height: 43px;
}


.admin-sidebar-close {

    display: none;

    width: 38px;

    height: 38px;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 11px;

    color:
        var(--text);

    background:
        var(--surface);
}



/* ==========================================================
   PROFILE
========================================================== */

.admin-profile-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 22px;

    padding: 12px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        var(--surface);
}


.admin-avatar {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 12px;

    background:
        var(--accent);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.2rem;

    font-weight: 700;
}


.admin-profile-card small {

    display: block;

    color:
        var(--muted);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .12em;
}


.admin-profile-card strong {

    display: block;

    margin-top: 4px;

    font-size: .63rem;
}


.admin-online-dot {

    position: absolute;

    right: 13px;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #35c878;

    box-shadow:
        0 0 12px
        rgba(53,200,120,.7);
}



/* ==========================================================
   NAVIGATION
========================================================== */

.admin-navigation {

    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-top: 30px;
}


.admin-nav-label {

    margin:
        0 10px
        8px;

    color:
        var(--muted);

    font-size: .44rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.admin-nav-label-second {

    margin-top: 22px;
}


.admin-nav-item {

    position: relative;

    width: 100%;

    min-height: 45px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        0 13px;

    border-radius: 12px;

    color:
        var(--text-soft);

    font-size: .64rem;

    font-weight: 600;

    text-align: left;

    transition:
        .3s ease;
}


.admin-nav-item i {

    width: 19px;

    color:
        var(--muted);

    text-align: center;

    transition:
        .3s ease;
}


.admin-nav-item:hover {

    color:
        var(--text);

    background:
        rgba(126,85,239,.055);
}


.admin-nav-item.active {

    color:
        var(--text);

    background:
        linear-gradient(
            90deg,
            rgba(126,85,239,.14),
            rgba(126,85,239,.035)
        );
}


.admin-nav-item.active::before {

    content: "";

    position: absolute;

    left: 0;

    width: 2px;

    height: 21px;

    border-radius: 5px;

    background:
        var(--purple);

    box-shadow:
        0 0 13px
        var(--purple);
}


.admin-nav-item.active i {

    color:
        var(--purple);
}



/* ==========================================================
   SIDEBAR FOOTER
========================================================== */

.admin-sidebar-footer {

    display: grid;

    gap: 5px;

    margin-top: auto;

    padding-top: 18px;

    border-top:
        1px solid var(--line);
}


.admin-sidebar-footer a,
.admin-sidebar-footer button {

    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        0 12px;

    border-radius: 11px;

    color:
        var(--text-soft);

    font-size: .59rem;

    text-align: left;

    transition:
        .3s ease;
}


.admin-sidebar-footer a:hover {

    color:
        var(--purple);

    background:
        rgba(126,85,239,.05);
}


.admin-signout:hover {

    color: #e35d5d;

    background:
        rgba(227,93,93,.06);
}



/* ==========================================================
   MAIN
========================================================== */

.admin-main-shell {

    min-height: 100vh;

    margin-left: 280px;
}



/* ==========================================================
   HEADER
========================================================== */

.admin-dashboard-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding:
        0 30px;

    border-bottom:
        1px solid var(--line);

    background:
        var(--header);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);
}


.admin-dashboard-header-left {

    display: flex;

    align-items: center;

    gap: 13px;
}


.admin-dashboard-header-left small {

    display: block;

    color:
        var(--muted);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .15em;
}


.admin-dashboard-header-left strong {

    display: block;

    margin-top: 4px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.3rem;

    font-weight: 600;
}


.admin-mobile-menu {

    display: none;

    width: 42px;

    height: 42px;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        var(--surface);
}


.admin-dashboard-header-actions {

    display: flex;

    align-items: center;

    gap: 9px;
}


.admin-system-status {

    min-height: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 12px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    font-size: .51rem;

    font-weight: 700;
}


.admin-system-status span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #35c878;

    box-shadow:
        0 0 11px
        #35c878;
}


.admin-notification-button {

    position: relative;

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 11px;

    background:
        var(--surface);
}


.admin-notification-button span {

    position: absolute;

    top: 8px;

    right: 8px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--purple);
}


.admin-header-avatar {

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    color: #fff;

    border-radius: 11px;

    background:
        var(--accent);

    font-family:
        "Cormorant Garamond",
        serif;

    font-weight: 700;
}



/* ==========================================================
   CONTENT
========================================================== */

.admin-dashboard-content {

    width:
        min(
            calc(100% - 64px),
            1360px
        );

    margin-inline: auto;

    padding:
        50px 0
        85px;
}


.admin-panel {

    display: none;

    animation:
        adminPanelIn
        .38s ease;
}


.admin-panel.active {

    display: block;
}


@keyframes adminPanelIn {

    from {

        opacity: 0;

        transform:
            translateY(9px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}



/* ==========================================================
   PAGE HEADING
========================================================== */

.admin-page-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 45px;

    margin-bottom: 42px;
}


.admin-eyebrow {

    color:
        var(--purple);

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .18em;
}


.admin-page-heading h1 {

    max-width: 800px;

    margin-top: 13px;

    font-size:
        clamp(
            3.7rem,
            5.6vw,
            6.2rem
        );

    line-height: .89;
}


.admin-page-heading
> div > p:last-child {

    max-width: 580px;

    margin-top: 19px;

    color:
        var(--text-soft);

    font-size: .76rem;

    line-height: 1.8;
}



/* ==========================================================
   BUTTONS
========================================================== */

.admin-primary-button {

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding:
        0 16px;

    border-radius: 12px;

    color: #fff;

    background:
        var(--accent);

    box-shadow:
        0 14px 35px
        rgba(112,73,230,.22);

    font-size: .61rem;

    font-weight: 700;

    transition:
        .3s ease;
}


.admin-primary-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 19px 45px
        rgba(112,73,230,.32);
}


.admin-secondary-button {

    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 15px;

    border:
        1px solid var(--line);

    border-radius: 11px;

    color:
        var(--text);

    background:
        var(--surface-solid);

    font-size: .59rem;

    font-weight: 700;
}



/* ==========================================================
   OVERVIEW STATS
========================================================== */

.admin-overview-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}


.admin-overview-stats article {

    min-height: 190px;

    padding: 22px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        var(--surface);

    transition:
        .35s ease;
}


.admin-overview-stats article:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(126,85,239,.25);

    box-shadow:
        var(--shadow);
}


.admin-stat-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.admin-stat-top span {

    color:
        var(--muted);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.admin-stat-top i {

    color:
        var(--purple);
}


.admin-overview-stats
article > strong {

    display: block;

    margin-top: 38px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 3.5rem;

    font-weight: 600;
}


.admin-overview-stats
article > p {

    margin-top: 8px;

    color:
        var(--muted);

    font-size: .54rem;
}



/* ==========================================================
   SECTION HEADING
========================================================== */

.admin-section-heading {

    margin:
        52px 0
        18px;
}


.admin-section-heading-space {

    margin-top: 60px;
}


.admin-section-heading small {

    color:
        var(--muted);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.admin-section-heading h2 {

    margin-top: 5px;

    font-size: 2.2rem;
}



/* ==========================================================
   QUICK ACTIONS
========================================================== */

.admin-quick-actions {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 11px;
}


.admin-quick-actions > button {

    min-height: 120px;

    display: grid;

    grid-template-columns:
        43px
        1fr
        25px;

    align-items: center;

    gap: 12px;

    padding: 16px;

    border:
        1px solid var(--line);

    border-radius: 17px;

    color:
        var(--text);

    background:
        var(--surface);

    text-align: left;

    transition:
        .3s ease;
}


.admin-quick-actions
> button:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(126,85,239,.26);
}


.admin-quick-actions
> button > span {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    color:
        var(--purple);

    border-radius: 12px;

    background:
        rgba(126,85,239,.07);
}


.admin-quick-actions strong {

    display: block;

    font-size: .62rem;
}


.admin-quick-actions small {

    display: block;

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .47rem;

    line-height: 1.5;
}


.admin-quick-actions
> button > i {

    color:
        var(--purple);
}



/* ==========================================================
   EMPTY ACTIVITY
========================================================== */

.admin-activity-card,
.admin-enquiry-preview,
.admin-message-view {

    min-height: 310px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 35px;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);
}


.admin-empty-icon {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 18px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.06);

    font-size: 1.2rem;
}


.admin-activity-card h3,
.admin-enquiry-preview h3,
.admin-message-view h3 {

    margin-top: 19px;

    font-size: 2rem;
}


.admin-activity-card p,
.admin-enquiry-preview p,
.admin-message-view p {

    max-width: 460px;

    margin-top: 9px;

    color:
        var(--text-soft);

    font-size: .63rem;

    line-height: 1.7;
}



/* ==========================================================
   TOOLBAR
========================================================== */

.admin-toolbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;
}


.admin-search {

    width:
        min(
            430px,
            100%
        );

    height: 45px;

    display: flex;

    align-items: center;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        var(--surface);
}


.admin-search i {

    width: 42px;

    color:
        var(--muted);

    text-align: center;
}


.admin-search input {

    width: 100%;

    height: 100%;

    padding-right: 15px;

    border: 0;

    outline: 0;

    color:
        var(--text);

    background:
        transparent;

    font-family:
        "Manrope",
        sans-serif;

    font-size: .63rem;
}


.admin-toolbar > button {

    min-height: 43px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 14px;

    border:
        1px solid var(--line);

    border-radius: 11px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    font-size: .57rem;
}



/* ==========================================================
   DATA TABLE
========================================================== */

.admin-data-table {

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        var(--surface);

    overflow: hidden;
}


.admin-table-heading {

    min-height: 56px;

    display: grid;

    align-items: center;

    gap: 20px;

    padding:
        0 22px;

    border-bottom:
        1px solid var(--line);

    color:
        var(--muted);

    background:
        rgba(126,85,239,.035);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.admin-client-columns {

    grid-template-columns:
        1.4fr
        1fr
        .6fr
        .4fr;
}


.admin-payment-columns {

    grid-template-columns:
        1.2fr
        .7fr
        .7fr
        .7fr;
}


.admin-empty-table {

    min-height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 30px;
}


.admin-empty-table > span {

    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.07);

    font-size: 1.1rem;
}


.admin-empty-table h3 {

    margin-top: 18px;

    font-size: 2rem;
}


.admin-empty-table p {

    max-width: 370px;

    margin:
        8px 0
        20px;

    color:
        var(--text-soft);

    font-size: .62rem;

    line-height: 1.7;
}



/* ==========================================================
   PROJECT BOARD
========================================================== */

.admin-project-board {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 11px;
}


.admin-board-column {

    min-height: 430px;

    padding: 13px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        var(--surface);
}


.admin-board-heading {

    min-height: 48px;

    display: grid;

    grid-template-columns:
        9px
        1fr
        auto;

    align-items: center;

    gap: 9px;

    padding:
        0 7px
        12px;

    border-bottom:
        1px solid var(--line);
}


.board-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;
}


.board-dot.planning {

    background: #8b82a0;
}


.board-dot.development {

    background:
        var(--purple);
}


.board-dot.review {

    background: #dfad45;
}


.board-dot.complete {

    background: #35c878;
}


.admin-board-heading strong {

    font-size: .58rem;
}


.admin-board-heading small {

    min-width: 24px;

    height: 24px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color:
        var(--muted);

    background:
        var(--surface-solid);

    font-size: .45rem;
}


.admin-board-empty {

    min-height: 340px;

    display: grid;

    place-items: center;

    color:
        var(--muted);

    font-size: .53rem;
}



/* ==========================================================
   ENQUIRIES
========================================================== */

.admin-enquiry-layout {

    min-height: 540px;

    display: grid;

    grid-template-columns:
        330px
        1fr;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);

    overflow: hidden;
}


.admin-enquiry-list {

    border-right:
        1px solid var(--line);
}


.admin-enquiry-list-head {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 20px;

    border-bottom:
        1px solid var(--line);
}


.admin-enquiry-list-head strong {

    font-size: .65rem;
}


.admin-enquiry-list-head span {

    min-width: 27px;

    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color:
        var(--purple);

    background:
        rgba(126,85,239,.07);

    font-size: .46rem;
}


.admin-enquiry-empty {

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 12px;

    color:
        var(--muted);

    font-size: .54rem;
}


.admin-enquiry-empty i {

    font-size: 1.2rem;
}



/* ==========================================================
   PORTFOLIO
========================================================== */

.admin-portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.admin-portfolio-card {

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);

    overflow: hidden;

    transition:
        .35s ease;
}


.admin-portfolio-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}


.admin-portfolio-image {

    aspect-ratio:
        16 / 10;

    padding: 8px;
}


.admin-portfolio-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 14px;
}


.admin-portfolio-info {

    padding:
        20px;
}


.admin-portfolio-info small {

    color:
        var(--purple);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.admin-portfolio-info h3 {

    margin-top: 8px;

    font-size: 2rem;
}


.admin-portfolio-info > a {

    display: block;

    margin-top: 8px;

    color:
        var(--text-soft);

    font-size: .54rem;
}


.admin-portfolio-actions {

    display: flex;

    gap: 8px;

    margin-top: 22px;
}


.admin-portfolio-actions button {

    min-height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        0 11px;

    border:
        1px solid var(--line);

    border-radius: 9px;

    color:
        var(--text-soft);

    background:
        var(--surface-solid);

    font-size: .5rem;
}


.admin-portfolio-actions
.danger-action {

    color: #df6262;
}


.admin-add-portfolio-card {

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    border:
        1px dashed
        rgba(126,85,239,.3);

    border-radius: 21px;

    color:
        var(--text);

    background:
        rgba(126,85,239,.025);

    transition:
        .3s ease;
}


.admin-add-portfolio-card:hover {

    background:
        rgba(126,85,239,.06);

    transform:
        translateY(-5px);
}


.admin-add-portfolio-card > span {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    color: #fff;

    background:
        var(--accent);
}


.admin-add-portfolio-card strong {

    margin-top: 18px;

    font-size: .68rem;
}


.admin-add-portfolio-card small {

    margin-top: 6px;

    color:
        var(--muted);

    font-size: .5rem;
}



/* ==========================================================
   PAYMENTS
========================================================== */

.admin-payment-summary {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 14px;
}


.admin-payment-summary article {

    min-height: 175px;

    padding: 22px;

    border:
        1px solid var(--line);

    border-radius: 19px;

    background:
        var(--surface);
}


.admin-payment-summary small {

    color:
        var(--muted);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.admin-payment-summary strong {

    display: block;

    margin-top: 30px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 3rem;

    font-weight: 600;
}


.admin-payment-summary p {

    margin-top: 9px;

    color:
        var(--muted);

    font-size: .52rem;
}



/* ==========================================================
   MESSAGES
========================================================== */

.admin-message-layout {

    min-height: 550px;

    display: grid;

    grid-template-columns:
        310px
        1fr;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);

    overflow: hidden;
}


.admin-message-clients {

    padding: 15px;

    border-right:
        1px solid var(--line);
}


.admin-message-search {

    height: 42px;

    display: flex;

    align-items: center;

    border:
        1px solid var(--line);

    border-radius: 11px;

    background:
        var(--surface-solid);
}


.admin-message-search i {

    width: 40px;

    color:
        var(--muted);

    text-align: center;
}


.admin-message-search input {

    width: 100%;

    height: 100%;

    padding-right: 10px;

    border: 0;

    outline: 0;

    color:
        var(--text);

    background:
        transparent;

    font-family:
        "Manrope",
        sans-serif;

    font-size: .58rem;
}


.admin-message-empty {

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 10px;

    color:
        var(--muted);

    font-size: .51rem;
}



/* ==========================================================
   SETTINGS
========================================================== */

.admin-settings-layout {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


.admin-settings-card {

    padding: 26px;

    border:
        1px solid var(--line);

    border-radius: 21px;

    background:
        var(--surface);
}


.admin-settings-card-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--line);
}


.admin-settings-card-head small {

    color:
        var(--purple);

    font-size: .42rem;

    font-weight: 800;

    letter-spacing: .13em;
}


.admin-settings-card-head h3 {

    margin-top: 5px;

    font-size: 1.8rem;
}


.admin-settings-card-head > i {

    color:
        var(--purple);

    font-size: 1.1rem;
}


.admin-settings-form {

    display: grid;

    gap: 17px;

    margin:
        23px 0;
}


.admin-settings-form label {

    display: grid;

    gap: 8px;

    color:
        var(--text-soft);

    font-size: .56rem;

    font-weight: 700;
}


.admin-settings-form input {

    width: 100%;

    height: 48px;

    padding:
        0 13px;

    border:
        1px solid var(--line);

    outline: 0;

    border-radius: 11px;

    color:
        var(--text);

    background:
        var(--surface-solid);

    font-family:
        "Manrope",
        sans-serif;

    font-size: .63rem;
}


.admin-security-list {

    display: grid;

    margin-top: 15px;
}


.admin-security-list > div {

    min-height: 95px;

    display: grid;

    grid-template-columns:
        43px
        1fr
        22px;

    align-items: center;

    gap: 13px;

    border-bottom:
        1px solid var(--line);
}


.admin-security-list
> div:last-child {

    border-bottom: 0;
}


.admin-security-list
> div > span {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    color:
        var(--purple);

    border-radius: 12px;

    background:
        rgba(126,85,239,.07);
}


.admin-security-list strong {

    display: block;

    font-size: .62rem;
}


.admin-security-list p {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .5rem;
}


.admin-security-list
> div > i {

    color:
        var(--purple);
}



/* ==========================================================
   ADMIN ACTION MODAL
========================================================== */

.admin-action-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: grid;

    place-items: center;

    padding: 20px;

    background:
        rgba(4,6,13,.66);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    opacity: 0;

    visibility: hidden;

    transition:
        .3s ease;
}


.admin-action-overlay.active {

    opacity: 1;

    visibility: visible;
}


.admin-action-modal {

    position: relative;

    width:
        min(
            540px,
            100%
        );

    padding: 38px;

    border:
        1px solid var(--line);

    border-radius: 27px;

    background:
        var(--surface-solid);

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.4);

    transform:
        translateY(20px)
        scale(.98);

    transition:
        .35s cubic-bezier(.22,1,.36,1);
}


.admin-action-overlay.active
.admin-action-modal {

    transform:
        translateY(0)
        scale(1);
}


.admin-action-close {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--line);

    border-radius: 11px;

    color:
        var(--text-soft);

    background:
        var(--surface);
}


.admin-action-label {

    color:
        var(--purple);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .15em;
}


.admin-action-icon {

    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    margin-top: 35px;

    color: #fff;

    border-radius: 17px;

    background:
        var(--accent);

    font-size: 1.1rem;
}


.admin-action-modal h2 {

    margin-top: 20px;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4rem
        );
}


.admin-action-modal
> p {

    margin-top: 13px;

    color:
        var(--text-soft);

    font-size: .68rem;

    line-height: 1.8;
}


.admin-action-placeholder {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin:
        25px 0;

    padding: 17px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        var(--surface);
}


.admin-action-placeholder
> i {

    margin-top: 3px;

    color:
        var(--purple);
}


.admin-action-placeholder strong {

    display: block;

    font-size: .6rem;
}


.admin-action-placeholder span {

    display: block;

    margin-top: 5px;

    color:
        var(--muted);

    font-size: .52rem;

    line-height: 1.65;
}



/* ==========================================================
   SIDEBAR OVERLAY
========================================================== */

.admin-sidebar-overlay {

    position: fixed;

    inset: 0;

    z-index: 1500;

    background:
        rgba(4,6,13,.55);

    backdrop-filter:
        blur(5px);

    opacity: 0;

    visibility: hidden;

    transition:
        .3s ease;
}


.admin-sidebar-overlay.active {

    opacity: 1;

    visibility: visible;
}



/* ==========================================================
   TABLET
========================================================== */

@media
(max-width: 1100px) {

    .admin-overview-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .admin-quick-actions {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .admin-project-board {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .admin-portfolio-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



@media
(max-width: 1050px) {

    .admin-sidebar {

        transform:
            translateX(-100%);
    }


    .admin-sidebar.active {

        transform:
            translateX(0);
    }


    .admin-sidebar-close {

        display: grid;
    }


    .admin-main-shell {

        margin-left: 0;
    }


    .admin-mobile-menu {

        display: grid;
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media
(max-width: 700px) {

    .admin-sidebar {

        width:
            min(
                300px,
                88vw
            );
    }


    .admin-dashboard-header {

        height: 70px;

        padding:
            0 12px;
    }


    .admin-dashboard-header-left small {

        display: none;
    }


    .admin-dashboard-header-left strong {

        margin-top: 0;

        font-size: 1rem;
    }


    .admin-system-status {

        display: none;
    }


    .admin-notification-button {

        display: none;
    }


    .admin-dashboard-content {

        width:
            calc(100% - 28px);

        padding:
            35px 0
            65px;
    }


    .admin-page-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 25px;
    }


    .admin-page-heading h1 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                4.6rem
            );
    }


    .admin-primary-button {

        width: 100%;
    }


    .admin-overview-stats,
    .admin-quick-actions,
    .admin-project-board,
    .admin-portfolio-grid,
    .admin-payment-summary,
    .admin-settings-layout {

        grid-template-columns:
            1fr;
    }


    .admin-quick-actions
    > button {

        min-height: 105px;
    }


    .admin-board-column {

        min-height: 260px;
    }


    .admin-board-empty {

        min-height: 180px;
    }


    .admin-toolbar {

        align-items:
            stretch;

        flex-direction:
            column;
    }


    .admin-toolbar
    .admin-search {

        width: 100%;
    }


    .admin-client-columns,
    .admin-payment-columns {

        min-width: 650px;
    }


    .admin-data-table {

        overflow-x: auto;
    }


    .admin-table-heading {

        min-width: 650px;
    }


    .admin-enquiry-layout,
    .admin-message-layout {

        grid-template-columns:
            1fr;
    }


    .admin-enquiry-list,
    .admin-message-clients {

        display: none;
    }


    .admin-enquiry-preview,
    .admin-message-view {

        min-height: 430px;
    }


    .admin-action-modal {

        padding:
            30px 21px;
    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */

@media
(max-width: 390px) {

    .admin-dashboard-header
    .theme-toggle {

        width: 57px;
    }


    .admin-page-heading h1 {

        font-size: 3.3rem;
    }


    .admin-overview-stats
    article > strong {

        font-size: 3rem;
    }

}




/* ==========================================================
   ADMIN LOGIN STATUS MESSAGE
========================================================== */

.admin-login-message {
    padding: 12px 14px;
    border: 1px solid rgba(225, 85, 85, 0.18);
    border-radius: 11px;

    background: rgba(225, 85, 85, 0.06);

    color: #df6262;

    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.6;
}


.admin-login-message.success {
    color: #35c878;

    border-color: rgba(53, 200, 120, 0.20);

    background: rgba(53, 200, 120, 0.06);
}


.admin-login-button:disabled {
    cursor: wait;

    opacity: 0.75;

    transform: none;
}


/* ==========================================================
   ADMIN CLIENT MANAGEMENT - REAL BACKEND UI
========================================================== */

.admin-client-modal {

    width:
        min(
            760px,
            100%
        );

    max-height:
        calc(100vh - 40px);

    overflow-y: auto;

    scrollbar-width: thin;

    scrollbar-color:
        var(--line)
        transparent;
}


.admin-client-modal::-webkit-scrollbar {

    width: 7px;
}


.admin-client-modal::-webkit-scrollbar-track {

    background: transparent;
}


.admin-client-modal::-webkit-scrollbar-thumb {

    border-radius: 100px;

    background: var(--line);
}


.admin-client-form {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 28px;
}


.admin-client-field {

    display: grid;

    gap: 9px;
}


.admin-client-field > span {

    color: var(--text-soft);

    font-size: .58rem;

    font-weight: 700;
}


.admin-client-field input {

    width: 100%;

    height: 52px;

    padding:
        0 14px;

    border:
        1px solid var(--line);

    outline: 0;

    border-radius: 12px;

    color: var(--text);

    background: var(--surface);

    font-family:
        "Manrope",
        sans-serif;

    font-size: .66rem;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.admin-client-field input::placeholder {

    color: var(--muted);
}


.admin-client-field input:focus {

    border-color:
        rgba(126, 85, 240, .52);

    box-shadow:
        0 0 0 4px
        rgba(126, 85, 240, .07);

    background: var(--surface-solid);
}


.admin-client-field > small {

    color: var(--muted);

    font-size: .48rem;

    line-height: 1.55;
}


.admin-client-form-message {

    grid-column:
        1 / -1;

    padding:
        12px 14px;

    border:
        1px solid
        rgba(225, 85, 85, .18);

    border-radius: 11px;

    color: #df6262;

    background:
        rgba(225, 85, 85, .06);

    font-size: .59rem;

    font-weight: 600;

    line-height: 1.6;
}


.admin-client-form-message[hidden] {

    display: none;
}


.admin-client-form-message.success {

    color: #35c878;

    border-color:
        rgba(53, 200, 120, .20);

    background:
        rgba(53, 200, 120, .06);
}


.admin-client-form-actions {

    grid-column:
        1 / -1;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    padding-top: 6px;
}


.admin-client-form-actions
.admin-secondary-button,
.admin-client-form-actions
.admin-primary-button {

    min-width: 135px;
}


.admin-client-form-actions
.admin-primary-button span {

    display: inline-flex;

    align-items: center;

    gap: 8px;
}


.admin-client-form-actions
.admin-primary-button:disabled {

    cursor: wait;

    opacity: .72;

    transform: none;
}


/* ==========================================================
   ADMIN CLIENT LIST ROWS
========================================================== */

#adminClientsList {

    width: 100%;
}


.admin-client-row {

    min-height: 82px;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        .6fr
        .4fr;

    align-items: center;

    gap: 20px;

    padding:
        12px 22px;

    border-bottom:
        1px solid var(--line);

    transition:
        background .3s ease,
        border-color .3s ease;
}


.admin-client-row:last-child {

    border-bottom: 0;
}


.admin-client-row:hover {

    background:
        rgba(126, 85, 239, .035);
}


.admin-client-info {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 12px;
}


.admin-client-avatar {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(126, 85, 239, .16);

    border-radius: 12px;

    color: var(--purple);

    background:
        linear-gradient(
            135deg,
            rgba(126, 85, 239, .11),
            var(--surface-solid)
        );

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.25rem;

    font-weight: 700;
}


.admin-client-info > div {

    min-width: 0;
}


.admin-client-info strong {

    display: block;

    overflow: hidden;

    color: var(--text);

    font-size: .64rem;

    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.admin-client-info small {

    display: block;

    margin-top: 5px;

    overflow: hidden;

    color: var(--muted);

    font-size: .48rem;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.admin-client-project-count {

    display: flex;

    align-items: baseline;

    gap: 6px;
}


.admin-client-project-count strong {

    color: var(--text);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.45rem;

    font-weight: 600;
}


.admin-client-project-count small {

    color: var(--muted);

    font-size: .47rem;
}


.admin-client-status {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    border:
        1px solid var(--line);

    border-radius: 100px;

    color: var(--text-soft);

    background: var(--surface-solid);

    font-size: .44rem;

    font-weight: 800;

    letter-spacing: .06em;
}


.admin-client-status::before {

    content: "";

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: currentColor;
}


.admin-client-status.active {

    color: #35c878;

    border-color:
        rgba(53, 200, 120, .18);

    background:
        rgba(53, 200, 120, .06);
}


.admin-client-status.inactive {

    color: #c79a42;

    border-color:
        rgba(199, 154, 66, .18);

    background:
        rgba(199, 154, 66, .06);
}


.admin-client-status.blocked {

    color: #df6262;

    border-color:
        rgba(223, 98, 98, .18);

    background:
        rgba(223, 98, 98, .06);
}


.admin-client-view-button {

    min-height: 36px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        0 11px;

    border:
        1px solid var(--line);

    border-radius: 10px;

    color: var(--text-soft);

    background: var(--surface-solid);

    font-size: .49rem;

    font-weight: 700;

    transition:
        .3s ease;
}


.admin-client-view-button i {

    color: var(--purple);

    font-size: .48rem;

    transition:
        transform .3s ease;
}


.admin-client-view-button:hover {

    color: #fff;

    border-color: transparent;

    background: var(--accent);

    transform:
        translateY(-2px);
}


.admin-client-view-button:hover i {

    color: #fff;

    transform:
        translateX(2px);
}


/* ==========================================================
   ADMIN CLIENT RESPONSIVE
========================================================== */

@media
(max-width: 760px) {

    .admin-client-modal {

        width: 100%;

        max-height:
            calc(100vh - 24px);
    }


    .admin-client-form {

        grid-template-columns:
            1fr;
    }


    .admin-client-form-message,
    .admin-client-form-actions {

        grid-column: auto;
    }


    .admin-client-form-actions {

        align-items: stretch;

        flex-direction: column-reverse;
    }


    .admin-client-form-actions
    .admin-secondary-button,
    .admin-client-form-actions
    .admin-primary-button {

        width: 100%;

        min-width: 0;
    }


    .admin-client-row {

        min-width: 650px;
    }
}


@media
(max-width: 390px) {

    .admin-client-modal {

        padding:
            30px 18px;
    }


    .admin-client-field input {

        height: 50px;
    }
}

