/* =========================================================
   FOCAL DREAM - PUBLIC WEBSITE
   Main Stylesheet
   PHP 8.3 / Modern Responsive Design
   ========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --black: #000000;
    --black-soft: #080808;
    --black-card: #101010;
    --black-card-2: #151515;

    --gold: #da9100;
    --orange: #f96c1b;

    --white: #ffffff;
    --white-soft: #f5f5f5;

    --text: #eeeeee;
    --text-muted: #a4a4a4;
    --text-dark: #777777;

    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(255, 255, 255, 0.16);

    --gold-gradient: linear-gradient(
        135deg,
        #da9100 0%,
        #f96c1b 100%
    );

    --dark-gradient: linear-gradient(
        135deg,
        #080808 0%,
        #151515 100%
    );

    --container: 1240px;

    --header-height: 88px;

    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;

    --transition: 0.3s ease;

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    background: var(--gold);
}

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(280px, 0.7fr);

    gap: 60px;

    align-items: end;

    margin-bottom: 65px;
}

.section-heading h2,
.about-content h2,
.process-intro h2,
.cta-content h2 {
    margin-top: 20px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(
        38px,
        5vw,
        68px
    );

    font-weight: 700;

    letter-spacing: -0.045em;

    line-height: 1.05;
}

.section-heading h2 span,
.about-content h2 span,
.process-intro h2 span,
.cta-content h2 span {
    color: var(--gold);
}

.section-heading > p {
    max-width: 510px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PRELOADER
========================================================= */

.site-loader {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--black);

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 3px;

    margin-bottom: 25px;

    font-family: var(--font-heading);

    font-size: 42px;
    font-weight: 800;

    letter-spacing: -0.08em;
}

.loader-logo span:first-child {
    color: var(--gold);
}

.loader-logo span:last-child {
    color: var(--orange);
}

.loader-line {
    width: 120px;
    height: 2px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
    display: block;

    width: 50%;
    height: 100%;

    background: var(--gold-gradient);

    animation: loaderProgress 1.2s ease-in-out infinite;
}

@keyframes loaderProgress {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }

}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    height: var(--header-height);

    background: rgba(0, 0, 0, 0.45);

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(0);

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.88);

    border-color: var(--border);

    backdrop-filter: blur(18px);
}

.header-container {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.logo-mark {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(218, 145, 0, 0.65);

    background:
        linear-gradient(
            135deg,
            rgba(218, 145, 0, 0.15),
            rgba(249, 108, 27, 0.05)
        );

    border-radius: 10px;

    overflow: hidden;
}

.logo-f,
.logo-d {
    position: absolute;

    display: block;

    width: 17px;
    height: 17px;

    border: 3px solid;
}

.logo-f {
    top: 8px;
    left: 8px;

    border-color: var(--gold);

    border-right-color: transparent;
    border-bottom-color: transparent;
}

.logo-d {
    right: 7px;
    bottom: 7px;

    border-color: var(--orange);

    border-left-color: transparent;
    border-top-color: transparent;
}

.logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.04em;
}

.logo-text span {
    margin-top: 3px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.28em;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.main-navigation a {
    position: relative;

    padding: 6px 0;

    color: #cfcfcf;

    font-size: 14px;

    font-weight: 500;

    transition: color var(--transition);
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--gold-gradient);

    transition: width var(--transition);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--white);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-action {
    display: flex;

    align-items: center;
}

.header-cta {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border: 1px solid rgba(218, 145, 0, 0.45);

    border-radius: 100px;

    color: var(--white);

    background: rgba(218, 145, 0, 0.08);

    font-size: 13px;

    font-weight: 700;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.header-cta span {
    color: var(--gold);

    font-size: 17px;

    transition: transform var(--transition);
}

.header-cta:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);

    transform: translateY(-2px);
}

.header-cta:hover span {
    color: var(--black);

    transform: translate(2px, -2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--white);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        calc(var(--header-height) + 90px)
        0
        100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(218, 145, 0, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(249, 108, 27, 0.05),
            transparent 30%
        ),
        var(--black);
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 85%
    );
}

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, 0.9fr);

    gap: 70px;

    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    padding: 7px 13px;

    border: 1px solid rgba(218, 145, 0, 0.22);

    border-radius: 100px;

    color: #d1d1d1;

    background: rgba(218, 145, 0, 0.045);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.15em;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 4px rgba(218, 145, 0, 0.08),
        0 0 20px rgba(218, 145, 0, 0.7);
}

.hero h1 {
    max-width: 820px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(
        48px,
        6.2vw,
        82px
    );

    font-weight: 800;

    letter-spacing: -0.065em;

    line-height: 0.98;
}

.hero h1 span {
    display: block;

    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text {
    max-width: 620px;

    margin-top: 32px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 38px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    color: var(--black);

    background: var(--gold-gradient);

    box-shadow:
        0 12px 30px rgba(218, 145, 0, 0.12);
}

.btn-primary span {
    font-size: 18px;

    transition: transform var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 38px rgba(218, 145, 0, 0.22);
}

.btn-primary:hover span {
    transform: translate(3px, -2px);
}

.btn-outline {
    border: 1px solid var(--border-light);

    color: var(--white);

    background: rgba(255, 255, 255, 0.025);
}

.btn-outline:hover {
    border-color: rgba(218, 145, 0, 0.55);

    color: var(--gold);

    background: rgba(218, 145, 0, 0.05);

    transform: translateY(-3px);
}

.btn-large {
    min-height: 58px;

    padding-inline: 30px;

    font-size: 14px;
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 55px;
}

.trust-item {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.trust-item strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 700;
}

.trust-item span {
    color: #777;

    font-size: 10px;

    letter-spacing: 0.04em;
}

.trust-line {
    width: 1px;
    height: 28px;

    background: var(--border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-card-main {
    position: relative;

    width: 100%;
    max-width: 570px;

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 20px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65);

    transform:
        perspective(1200px)
        rotateY(-4deg)
        rotateX(2deg);

    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform:
            perspective(1200px)
            rotateY(-4deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1200px)
            rotateY(-4deg)
            rotateX(2deg)
            translateY(-12px);
    }

}

.hero-card-top {
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid var(--border);

    background: rgba(0, 0, 0, 0.45);
}

.window-controls {
    display: flex;

    gap: 6px;
}

.window-controls span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #555;
}

.window-controls span:first-child {
    background: var(--gold);
}

.window-label {
    color: #666;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;
}

.hero-dashboard {
    display: grid;

    grid-template-columns: 72px 1fr;

    min-height: 390px;
}

.dashboard-sidebar {
    padding: 20px 16px;

    border-right: 1px solid var(--border);

    background: rgba(0, 0, 0, 0.3);
}

.dash-logo {
    width: 30px;
    height: 30px;

    margin-bottom: 42px;

    border-radius: 8px;

    background: var(--gold-gradient);

    opacity: 0.85;
}

.dash-line {
    width: 100%;
    height: 5px;

    margin-bottom: 18px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);
}

.dash-line.active {
    background: var(--gold);

    box-shadow:
        0 0 15px rgba(218, 145, 0, 0.25);
}

.dashboard-content {
    padding: 28px;
}

.dash-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.dash-heading small {
    color: #666;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.dash-heading h3 {
    margin-top: 4px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 700;
}

.dash-badge {
    padding: 7px 10px;

    border: 1px solid rgba(218, 145, 0, 0.25);

    border-radius: 7px;

    color: var(--gold);

    background: rgba(218, 145, 0, 0.08);

    font-size: 9px;

    font-weight: 700;
}

.chart {
    position: relative;

    height: 180px;

    margin-top: 30px;

    overflow: hidden;
}

.chart-grid {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.chart-grid span {
    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.055);
}

.chart svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.dashboard-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 20px;
}

.dashboard-stats div {
    padding: 12px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.025);
}

.dashboard-stats small {
    display: block;

    margin-bottom: 3px;

    color: #555;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.1em;
}

.dashboard-stats strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 17px;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 13px;

    background: rgba(12, 12, 12, 0.9);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(15px);
}

.floating-card strong {
    display: block;

    color: var(--white);

    font-size: 11px;
}

.floating-card span {
    display: block;

    margin-top: 2px;

    color: #777;

    font-size: 8px;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--black);

    background: var(--gold);

    font-size: 16px;
}

.floating-card-one {
    left: -30px;
    bottom: 90px;

    animation: floatingOne 5s ease-in-out infinite;
}

.floating-card-two {
    right: -20px;
    top: 80px;

    animation: floatingTwo 5s ease-in-out infinite;
}

.floating-number {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(249, 108, 27, 0.35);

    border-radius: 8px;

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;
}

@keyframes floatingOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes floatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    bottom: 35px;
    left: 50%;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    transform: translateX(-50%);

    color: #555;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--black-soft);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.service-card {
    position: relative;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius-medium);

    overflow: hidden;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(218, 145, 0, 0.08);

    filter: blur(30px);

    opacity: 0;

    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(218, 145, 0, 0.3);

    background: rgba(218, 145, 0, 0.035);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured-service {
    background:
        linear-gradient(
            145deg,
            rgba(218, 145, 0, 0.10),
            rgba(255, 255, 255, 0.025)
        );

    border-color: rgba(218, 145, 0, 0.24);
}

.service-number {
    position: absolute;

    top: 26px;
    right: 28px;

    color: #444;

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 65px;

    border: 1px solid rgba(218, 145, 0, 0.28);

    border-radius: 13px;

    color: var(--gold);

    background: rgba(218, 145, 0, 0.07);

    font-family: var(--font-heading);

    font-size: 18px;

    font-weight: 700;
}

.service-card h3 {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 700;

    letter-spacing: -0.025em;

    line-height: 1.2;
}

.service-card p {
    margin-top: 15px;

    color: #888;

    font-size: 13px;

    line-height: 1.75;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 25px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.service-link span {
    transition: transform var(--transition);
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--black);
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(400px, 0.9fr)
        minmax(0, 1fr);

    gap: 110px;

    align-items: center;
}

.about-visual {
    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.about-frame {
    position: relative;

    width: 410px;
    height: 410px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(218, 145, 0, 0.2);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(218, 145, 0, 0.09),
            transparent 60%
        );
}

.about-frame::before,
.about-frame::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.about-frame::before {
    inset: 35px;
}

.about-frame::after {
    inset: 85px;
}

.about-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid transparent;
}

.orbit-one {
    inset: 18px;

    border-top-color: var(--gold);

    transform: rotate(30deg);
}

.orbit-two {
    inset: 58px;

    border-right-color: var(--orange);

    transform: rotate(-35deg);
}

.about-center {
    position: relative;

    z-index: 2;

    width: 145px;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(218, 145, 0, 0.5);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(218, 145, 0, 0.16),
            rgba(249, 108, 27, 0.08)
        );

    box-shadow:
        0 0 80px rgba(218, 145, 0, 0.12);
}

.about-center span {
    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    font-family: var(--font-heading);

    font-size: 54px;

    font-weight: 800;

    letter-spacing: -0.08em;
}

.about-label {
    position: absolute;

    z-index: 3;

    padding: 7px 12px;

    border: 1px solid var(--border);

    border-radius: 100px;

    background: rgba(0, 0, 0, 0.85);

    color: #aaa;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.about-label-one {
    top: 40px;
    right: 25px;

    color: var(--gold);
}

.about-label-two {
    bottom: 50px;
    left: 5px;

    color: var(--orange);
}

.about-label-three {
    top: 45%;
    right: -30px;
}

.about-content > p {
    max-width: 600px;

    margin-top: 25px;

    color: #898989;

    font-size: 15px;

    line-height: 1.85;
}

.about-points {
    display: grid;

    gap: 20px;

    margin-top: 35px;
}

.about-point {
    display: flex;

    gap: 15px;
}

.about-point > span {
    flex: 0 0 auto;

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--black);

    background: var(--gold);

    font-size: 12px;

    font-weight: 800;
}

.about-point strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 14px;
}

.about-point p {
    margin-top: 2px;

    color: #707070;

    font-size: 12px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 38px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 65px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--black-soft);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.stat {
    text-align: center;
}

.stat strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 1;
}

.stat strong span {
    color: var(--gold);
}

.stat p {
    margin-top: 10px;

    color: #666;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: var(--black-soft);
}

.projects-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr;

    gap: 14px;
}

.project-card {
    min-height: 360px;

    border-radius: var(--radius-medium);

    overflow: hidden;
}

.project-large {
    grid-row: span 2;

    min-height: 734px;
}

.project-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 360px;

    overflow: hidden;

    background-color: #111;

    transition: transform 0.7s ease;
}

.project-large .project-image {
    min-height: 734px;
}

.project-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(218, 145, 0, 0.55),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #0a0a0a,
            #1d1305
        );
}

.project-image-two::before {
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(249, 108, 27, 0.45),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #111,
            #1a0e08
        );
}

.project-image-three::before {
    background:
        radial-gradient(
            circle at 70% 65%,
            rgba(218, 145, 0, 0.42),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #111,
            #0d100f
        );
}

.project-image::after {
    content: "";

    position: absolute;

    inset: 12%;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    transform:
        perspective(900px)
        rotateY(-12deg)
        rotateX(5deg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5);
}

.project-card:hover .project-image {
    transform: scale(1.035);
}

.project-overlay {
    position: absolute;

    inset: auto 0 0 0;

    z-index: 3;

    padding: 35px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0)
        );
}

.project-overlay span {
    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.project-overlay h3 {
    margin-top: 7px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 25px;

    font-weight: 700;

    letter-spacing: -0.025em;
}

.project-overlay a {
    display: inline-block;

    margin-top: 12px;

    color: #aaa;

    font-size: 11px;

    font-weight: 600;
}

.project-overlay a:hover {
    color: var(--gold);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--black);
}

.process-intro {
    max-width: 700px;

    margin-bottom: 70px;
}

.process-intro > p {
    max-width: 520px;

    margin-top: 25px;

    color: #858585;

    font-size: 15px;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    border-top: 1px solid var(--border);
}

.process-item {
    position: relative;

    min-height: 280px;

    padding:
        35px 30px
        35px 0;

    border-right: 1px solid var(--border);
}

.process-item:not(:first-child) {
    padding-left: 30px;
}

.process-item:last-child {
    border-right: 0;
}

.process-number {
    display: block;

    color: var(--gold);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.1em;
}

.process-item h3 {
    margin-top: 55px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 22px;

    font-weight: 700;
}

.process-item p {
    max-width: 230px;

    margin-top: 12px;

    color: #707070;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    border-top: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(218, 145, 0, 0.15),
            transparent 40%
        ),
        var(--black-soft);
}

.cta-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(249, 108, 27, 0.08),
            transparent 65%
        );

    transform: translate(-50%, -50%);

    filter: blur(30px);

    pointer-events: none;
}

.cta-content {
    position: relative;

    z-index: 2;

    text-align: center;
}

.cta-content h2 {
    max-width: 900px;

    margin:
        20px auto
        0;
}

.cta-content p {
    max-width: 560px;

    margin:
        25px auto
        35px;

    color: #818181;

    font-size: 15px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 80px 0 30px;

    border-top: 1px solid var(--border);

    background: #050505;
}

.footer-top {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 65px;
}

.footer-brand {
    max-width: 370px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-brand > p {
    max-width: 330px;

    color: #686868;

    font-size: 13px;

    line-height: 1.8;
}

.footer-start-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.footer-column a {
    color: #696969;

    font-size: 12px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: #4f4f4f;

    font-size: 10px;
}

.footer-legal {
    display: flex;

    gap: 20px;
}

.footer-legal a {
    color: #4f4f4f;

    font-size: 10px;

    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(218, 145, 0, 0.25);

    border-radius: 50%;

    color: var(--gold);

    background: rgba(10, 10, 10, 0.88);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--black);

    background: var(--gold);

    border-color: var(--gold);
}


/* =========================================================
   RESPONSIVE - 1200PX
========================================================= */

@media (max-width: 1200px) {

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.8fr);

        gap: 45px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-card {
        min-height: 350px;
    }

    .about-grid {
        gap: 70px;
    }

}


/* =========================================================
   RESPONSIVE - 1024PX
========================================================= */

@media (max-width: 1024px) {

    :root {
        --header-height: 76px;
    }

    .section {
        padding: 90px 0;
    }

    .main-navigation {
        gap: 22px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-cta {
        padding: 10px 15px;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {
        min-height: 500px;

        max-width: 700px;

        margin-inline: auto;
    }

    .hero-card-main {
        max-width: 620px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 470px;
    }

    .about-content {
        max-width: 750px;
    }

    .footer-top {
        grid-template-columns:
            1.5fr
            1fr
            1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE - 800PX
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .main-navigation {
        position: fixed;

        top: var(--header-height);
        left: 16px;
        right: 16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 12px;

        border: 1px solid var(--border);

        border-radius: 16px;

        background: rgba(8, 8, 8, 0.98);

        box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.55);

        backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-navigation.mobile-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .main-navigation a {
        width: 100%;

        padding: 14px 15px;

        border-radius: 9px;

        font-size: 14px;
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation a:hover,
    .main-navigation a.active {
        background: rgba(218, 145, 0, 0.08);

        color: var(--gold);
    }

    .header-action {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .hero h1 {
        font-size: clamp(
            44px,
            10vw,
            68px
        );
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large {
        grid-row: auto;

        min-height: 500px;
    }

    .project-large .project-image {
        min-height: 500px;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .footer-top {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE - 600PX
========================================================= */

@media (max-width: 600px) {

    :root {
        --header-height: 70px;
    }

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .section {
        padding: 75px 0;
    }

    .site-logo .logo-text strong {
        font-size: 13px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            125px 0
            80px;
    }

    .hero h1 {
        font-size: clamp(
            42px,
            12vw,
            60px
        );

        line-height: 1;
    }

    .hero-text {
        margin-top: 25px;

        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

        margin-top: 40px;
    }

    .trust-line {
        display: none;
    }

    .hero-visual {
        min-height: 400px;

        margin-top: 25px;
    }

    .hero-card-main {
        transform: none;

        animation: none;
    }

    .hero-dashboard {
        grid-template-columns: 50px 1fr;

        min-height: 290px;
    }

    .dashboard-sidebar {
        padding: 15px 11px;
    }

    .dash-logo {
        width: 25px;
        height: 25px;

        margin-bottom: 30px;
    }

    .dashboard-content {
        padding: 20px;
    }

    .chart {
        height: 130px;
    }

    .dashboard-stats {
        gap: 5px;
    }

    .dashboard-stats div {
        padding: 8px;
    }

    .dashboard-stats strong {
        font-size: 14px;
    }

    .floating-card {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading h2,
    .about-content h2,
    .process-intro h2,
    .cta-content h2 {
        font-size: clamp(
            34px,
            10vw,
            48px
        );
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

    .service-icon {
        margin-bottom: 50px;
    }

    .about-visual {
        min-height: 360px;
    }

    .about-frame {
        width: 310px;
        height: 310px;
    }

    .about-center {
        width: 105px;
        height: 105px;
    }

    .about-center span {
        font-size: 40px;
    }

    .about-label {
        font-size: 7px;
    }

    .about-label-three {
        right: -15px;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat strong {
        font-size: 42px;
    }

    .stat p {
        font-size: 9px;
    }

    .project-large,
    .project-large .project-image {
        min-height: 430px;
    }

    .project-card {
        min-height: 320px;
    }

    .project-image {
        min-height: 320px;
    }

    .project-overlay {
        padding: 25px;
    }

    .project-overlay h3 {
        font-size: 21px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .process-item:not(:first-child) {
        min-height: auto;

        padding: 30px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-item:nth-child(2),
    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        border-top: 0;
    }

    .process-item h3 {
        margin-top: 35px;
    }

    .cta-section {
        padding: 90px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}


/* =========================================================
   RESPONSIVE - 400PX
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .dashboard-content {
        padding: 14px;
    }

    .dash-heading h3 {
        font-size: 16px;
    }

    .dash-badge {
        display: none;
    }

    .chart {
        height: 110px;
    }

    .about-frame {
        width: 280px;
        height: 280px;
    }

    .about-label-three {
        right: -5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

.animate-on-scroll {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* Slightly different entrance for the visual */

.about-visual.animate-on-scroll {
    transform:
        translateY(25px)
        scale(0.98);
}

.about-visual.animate-on-scroll.is-visible {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   STAGGERED SERVICE / PROJECT ANIMATIONS
========================================================= */

.services-grid .service-card:nth-child(2),
.projects-grid .project-card:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .service-card:nth-child(3),
.projects-grid .project-card:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.24s;
}