/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/* ── VARIABLES ── */
:root {
    --cream: #F5F0E8;
    --steel: #1E1E2E;
    --steel-light: #252538;
    --obsidian: #0D0D12;
    --moon-white: #F8F9FF;
    --moon-blue: #4A90E2;
    --moon-blue-dim: rgba(74, 144, 226, .15);
    --moon-blue-glow: rgba(74, 144, 226, .35);
    --cyan: #00C8FF;
    --cyan-dim: rgba(0, 200, 255, .12);
    --cyan-glow: rgba(0, 200, 255, .3);
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --border: rgba(74, 144, 226, .15);
    --border-light: rgba(248, 249, 255, .08);
    --nav-pad: 0 5%;
}

/* ── BASE ── */
html {
    scroll-behavior: smooth
}

body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--moon-blue);
    border-radius: 2px
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    cursor: pointer
}

button {
    cursor: pointer
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--cyan-glow)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(0, 200, 255, 0)
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes moonGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(74, 144, 226, .5)) drop-shadow(0 0 60px rgba(74, 144, 226, .2))
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(74, 144, 226, .8)) drop-shadow(0 0 100px rgba(74, 144, 226, .35))
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: .2
    }

    50% {
        opacity: .7
    }
}

@keyframes countUp {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fogMove {

    from {
        transform: translateX(0);
    }

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

}

@keyframes floatParticle {

    from {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    to {
        transform: translateY(-120vh);
        opacity: 0;
    }

}

@keyframes starDrift {

    from {
        transform: translateY(0);
    }

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

}

@keyframes twinkle {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.port-card:hover img {
    transform: scale(1.05);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* ── SECTION LABELS ── */
.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--moon-blue);
    margin-bottom: .8rem;
    display: block
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem
}

.section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--moon-blue);
    font-weight: 400
}

.section-title.light {
    color: var(--moon-white)
}

.section-title.light em {
    color: var(--cyan)
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 1200px;
    line-height: 1.8
}

.blue-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), transparent);
    margin: 1.2rem 0 2.8rem;
    border-radius: 2px
}

/* ──────────────────────────────────────
   NAVBAR
────────────────────────────────────── */
.mobile-menu {

    position: fixed;

    top: 0;
    right: -100%;

    width: 320px;
    max-width: 90%;

    height: 100vh;

    background: var(--steel);

    display: flex;

    flex-direction: column;

    padding: 30px;

    transition: right .35s ease;

    z-index: 1001;

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

    box-shadow: -20px 0 60px rgba(0, 0, 0, .4);

}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 50px;

}

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.mobile-nav a {

    font-family: 'Cinzel', serif;

    font-size: 1rem;

    color: var(--moon-white);

    letter-spacing: .08em;

    transition: .3s;

}

.mobile-nav a:hover {

    color: var(--cyan);

    padding-left: 10px;

}

.mobile-menu-cta {

    margin-top: auto;

    display: block;

    text-align: center;

    padding: 16px;

    border-radius: 12px;

    background: var(--cyan);

    color: var(--obsidian);

    font-family: 'Cinzel', serif;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    box-shadow: 0 0 30px rgba(0, 200, 255, .3);

}

.overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(8px);

    opacity: 0;

    pointer-events: none;

    transition: .3s;

    z-index: 1000;

}

.overlay.show {

    opacity: 1;

    pointer-events: auto;

}

.mobile-close {

    font-size: 1.8rem;

    cursor: pointer;

    color: var(--moon-white);

    transition: .3s;

}

.mobile-close:hover {

    color: var(--cyan);

}

/* Hide on desktop */
@media (min-width:992px) {

    .mobile-menu,

    .overlay,

    .hamburger {

        display: none !important;

    }

}

/* Make sure menu closes when clicking overlay */
.overlay.show+.mobile-menu.open {
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;

    transform: translateY(-100%);
    opacity: 0;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;

    z-index: 1000;
}

#mainNav.show {
    transform: translateY(0);
    opacity: 1;
}

#mainNav.scrolled {
    padding: 12px 5%;
    background: rgba(30, 30, 46, .98)
}

.nav-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-family: 'Cinzel', serif;

    font-size: 1.15rem;

    letter-spacing: .18em;

    color: white;

    font-weight: 700;

}

.nav-logo img {

    width: 42px;

    height: 42px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 8px rgba(0, 200, 255, .35));

}

.nav-logo span {
    color: var(--cyan)
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: .18em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    letter-spacing: .12em;
    color: rgba(248, 249, 255, .65);
    text-transform: uppercase;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--moon-white)
}

.nav-cta {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: var(--cyan);
    color: var(--obsidian);
    border-radius: 6px;
    font-weight: 600;
    transition: all .3s;
    box-shadow: 0 0 20px var(--cyan-glow);
    margin-left: 0;
}

.nav-cta:hover {
    background: var(--moon-white);
    box-shadow: 0 0 30px var(--cyan-glow), 0 4px 20px rgba(0, 0, 0, .2)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--moon-white);
    border-radius: 2px;
    transition: all .3s
}

@media(max-width:768px) {

    .nav-logo img {

        width: 34px;

        height: 34px;

    }

    .nav-logo {

        font-size: 1rem;

    }

}


/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background: var(--obsidian);
    display: flex;
    align-items: center;
    overflow: hidden
}

#hero::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 15% 35%,
            rgba(0, 200, 255, .12),
            transparent 30%);

    mix-blend-mode: screen;

    pointer-events: none;

    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background-image: url('Pic/moon.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;

    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 50%,
            rgba(0, 200, 255, .08),
            transparent 40%),

        linear-gradient(to right,
            rgba(0, 0, 0, .78) 15%,
            rgba(0, 0, 0, .35) 50%,
            rgba(0, 0, 0, .15) 100%),

        linear-gradient(to top,
            rgba(0, 0, 0, .75),
            transparent 40%);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-70px);
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    animation: fadeUp .8s ease forwards
}

.hero-eyebrow::before {
    display: none;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.0rem, 5vw, 3.0rem);
    font-weight: 700;
    color: var(--moon-white);
    line-height: 1.12;
    margin-bottom: 1.2rem;
    animation: fadeUp .8s .15s ease both
}

.hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--cyan);
    font-weight: 400
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(248, 249, 255, .65);
    margin-bottom: 2.4rem;
    line-height: 1.85;
    max-width: 500px;
    animation: fadeUp .8s .3s ease both;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp .8s .45s ease both;
    margin-top: 2rem;
}

.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 14px 30px;
    background: var(--cyan);
    color: var(--obsidian);
    border-radius: 8px;
    font-weight: 700;
    transition: all .3s;
    box-shadow: 0 0 24px var(--cyan-glow);
    display: inline-block
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--cyan-glow), 0 8px 24px rgba(0, 0, 0, .3)
}

.btn-outline {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(248, 249, 255, .3);
    color: var(--moon-white);
    border-radius: 8px;
    transition: all .3s;
    display: inline-block
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-dim)
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 2;
    opacity: .6
}

.scroll-dot {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: float 2s ease-in-out infinite
}

.scroll-text {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--moon-white)
}

@media (max-width:768px) {

    #hero {
        height: auto;
        min-height: 85vh;
        padding: 120px 0 80px;
    }

    .hero-content {
        transform: none;
        padding: 0 8%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }

}

.fog {
    position: absolute;
    inset: 0;

    background:
        url('https://www.transparenttextures.com/patterns/clouds.png');

    opacity: .08;

    animation: fogMove 80s linear infinite;

    z-index: 1;

    pointer-events: none;
}

#particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;

    bottom: -20px;

    width: 2px;
    height: 2px;

    background: var(--cyan);

    border-radius: 50%;

    box-shadow: 0 0 10px var(--cyan);

    animation: floatParticle linear infinite;
}

/* ──────────────────────────────────────
   SERVICES
────────────────────────────────────── */
#services {
    padding: 110px 0;
    background: var(--cream)
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.svc-card {
    background: var(--steel);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(74, 144, 226, .08), transparent 60%);
    pointer-events: none
}

.svc-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(74, 144, 226, .15),
        0 0 0 1px rgba(74, 144, 226, .25);
    z-index: 10;
}

.svc-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.svc-card-link .svc-card {
    cursor: pointer;
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--moon-blue-dim);
    border: 1px solid rgba(74, 144, 226, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem
}

.svc-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--moon-white);
    margin-bottom: .8rem;
    letter-spacing: .05em
}

.svc-desc {
    font-size: .9rem;
    color: rgba(248, 249, 255, .5);
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.svc-list li {
    font-size: .85rem;
    color: rgba(248, 249, 255, .6);
    padding-left: 1.2rem;
    position: relative
}

.svc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--moon-blue);
    font-size: .8rem
}

.svc-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--moon-blue), transparent);
    opacity: 0;
    transition: opacity .35s
}

.svc-card:hover .svc-card-line {
    opacity: 1
}



/* ──────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────── */
#why {
    padding: 110px 0;
    background: var(--cream)
}

.why-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(74, 144, 226, .1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
    transition: all .35s;
    text-align: center
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, .12), 0 0 0 1px rgba(74, 144, 226, .2)
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem
}

.why-title {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .6rem;
    letter-spacing: .03em
}

.why-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7
}

/* ──────────────────────────────────────
   PROCESS
────────────────────────────────────── */
#process {
    padding: 110px 0;
    background: var(--obsidian);
    position: relative;
    overflow: hidden
}

#process::before {
    content: '';

    position: absolute;

    width: 800px;
    height: 800px;

    left: 50%;
    top: 50%;

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

    background:
        radial-gradient(circle,
            rgba(0, 200, 255, .15) transparent 70%);

    pointer-events: none;
}

.process-header {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 5%;
    text-align: center
}

.process-header .section-title {
    color: var(--moon-white)
}

.process-header .section-title em {
    color: var(--cyan)
}

.process-header .blue-divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, transparent, var(--cyan), transparent)
}

.process-header .section-subtitle {
    margin: 0 auto;
    text-align: center;
    color: rgba(248, 249, 255, .5)
}

.process-orbit {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    height: 700px
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--steel);
    border: 1px solid rgba(0, 200, 255, .4);
    box-shadow: 0 0 40px var(--cyan-glow), 0 0 80px rgba(0, 200, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 3s ease-in-out infinite;
    z-index: 10
}

.orbit-center-icon {
    font-size: 1.6rem;
    margin-bottom: .3rem
}

.orbit-center-text {
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cyan);
    line-height: 1.3
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(74, 144, 226, .1)
}

.orbit-ring-1 {
    width: 300px;
    height: 300px
}

.orbit-ring-2 {
    width: 550px;
    height: 550px
}

.orbit-ring-3 {
    width: 700px;
    height: 700px;
    border-style: dashed;
    border-color: rgba(74, 144, 226, .05)
}

.step-node {
    position: absolute;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--steel);
    border: 1px solid rgba(74, 144, 226, .25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .35s;
    position: relative;
    box-shadow: 0 0 0 0 var(--moon-blue-glow)
}

.step-circle:hover {
    transform: scale(1.12);
    background: var(--steel-light);
    border-color: var(--moon-blue);
    box-shadow: 0 0 24px var(--moon-blue-glow)
}

.step-num {
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    color: var(--moon-blue);
    letter-spacing: .1em;
    font-weight: 600
}

.step-icon {
    font-size: 1.2rem;
    margin: .1rem 0
}

.step-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, rgba(74, 144, 226, .4), transparent);
    transform-origin: top center;
    animation: lineGlow 3s ease-in-out infinite
}

.step-content {
    position: absolute;
    width: 160px;
}

.process-orbit {
    display: block;
    overflow: visible;
}

.process-timeline {
    display: none;
}

.process-stars {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 200px 100px, #00c8ff, transparent),
        radial-gradient(1px 1px at 300px 180px, #fff, transparent),
        radial-gradient(2px 2px at 500px 80px, #00c8ff, transparent),
        radial-gradient(1px 1px at 700px 250px, #fff, transparent);

    background-size: 800px 400px;

    opacity: .8;

    animation: starDrift 120s linear infinite;

    z-index: 0;
}

.process-stars::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(0, 200, 255, .9) 0, transparent 8px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .8) 0, transparent 6px),
        radial-gradient(circle at 80% 60%, rgba(0, 200, 255, .8) 0, transparent 10px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, .8) 0, transparent 8px);

    filter: blur(2px);

    animation: twinkle 4s ease-in-out infinite;
}

/* Tooltip */
.step-tooltip {
    position: absolute;
    width: 200px;
    background: var(--steel-light);
    border: 1px solid rgba(74, 144, 226, .3);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 20;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5)
}

.step-node:hover .step-tooltip {
    opacity: 1
}

.tooltip-title {
    font-family: 'Cinzel', serif;
    font-size: .78rem;
    font-weight: 600;
    color: var(--moon-white);
    margin-bottom: .4rem
}

.tooltip-desc {
    font-size: .78rem;
    color: rgba(248, 249, 255, .5);
    line-height: 1.6
}

/* Mobile process timeline */
.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative
}

.timeline-dot {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;      /* Same emoji size as before */
    line-height: 1;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 200, 255, .3);
    box-shadow:
        0 0 15px rgba(0, 200, 255, .15);
    background:
        linear-gradient(135deg,
            rgba(0, 200, 255, .12),
            rgba(74, 144, 226, .05));
}

.step-number{
    position: absolute;
    top: -6px;
    right: 60px;

    width: 20px;
    height: 20px;

    border-radius: 50%;
    background: #00C8FF;
    color: #06131b;

    font-size: 10px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    padding: .1rem 0 2.5rem
}

.timeline-title {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--moon-white);
    margin-bottom: .4rem
}

.timeline-desc {
    font-size: .85rem;
    color: rgba(248, 249, 255, .5);
    line-height: 1.7
}

/* ──────────────────────────────────────
   PORTFOLIO
────────────────────────────────────── */
#portfolio {
    padding: 110px 0;
    background: var(--cream)
}

.portfolio-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.port-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--steel);
    border: 1px solid var(--border);
    position: relative;
    transition: all .35s
}

.port-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, .12)
}

.port-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.port-mock {
    height: 240px;
    background: linear-gradient(135deg, var(--steel-light), var(--obsidian));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.port-mock-inner {
    width: 85%;
    height: 80%;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.mock-bar {
    height: 24px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 0 .8rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.mock-dot.r {
    background: #FF5F57
}

.mock-dot.y {
    background: #FEBC2E
}

.mock-dot.g {
    background: #28C840
}

.mock-body {
    flex: 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
    padding: .6rem
}

.mock-block {
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(74, 144, 226, .15), rgba(74, 144, 226, .05));
    margin-bottom: .4rem
}

.port-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cyan);
    color: var(--obsidian);
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700
}

.port-info {
    padding: 1.5rem
}

.port-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--moon-white);
    margin-bottom: .4rem
}

.port-desc {
    font-size: .85rem;
    color: rgba(248, 249, 255, .5);
    line-height: 1.7
}

.portfolioSwiper {
    width: 100%;
    padding: 20px 5% 60px;
}

.swiper-slide {
    transform: scale(.65);
    opacity: .4;
}

.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(.85);
    opacity: .7;
}

.swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
}

.swiper-slide-active img {

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35),
        0 0 30px rgba(0, 200, 255, .15);

}

@media(min-width:992px) {

    .portfolio-slide {
        flex: 0 0 70%;
    }

}

@media(max-width:768px) {

    .swiper-slide {
        transform: scale(.9);
        opacity: .6;
    }

    .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }
}
/* ──────────────────────────────────────
   ABOUT
────────────────────────────────────── */
#about {
    padding: 110px 0;
    background: var(--cream)
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--steel), var(--obsidian));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.about-photo-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, .05) 0%, rgba(30, 30, 46, .8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.about-photo-icon {
    font-size: 4rem;
    opacity: .3
}

.about-photo-text {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .2em;
    color: rgba(248, 249, 255, .2);
    text-transform: uppercase
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: -1.5rem;
    background: var(--steel);
    border: 1px solid rgba(0, 200, 255, .35);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 0 30px rgba(0, 200, 255, .1)
}

.badge-num {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan)
}

.badge-text {
    font-size: .72rem;
    color: rgba(248, 249, 255, .5);
    letter-spacing: .05em
}

.about-text .section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem)
}

.about-body {
    font-size: .98rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem
}

.about-cta {
    margin-top: 2rem
}

/* ============================= */
/* FAQ                            */
/* ============================= */

#faq {
    padding: 110px 0;
    background: var(--cream);
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 28px 4px;

    text-align: left;

    font-family: 'Cinzel', serif;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 600;

    color: var(--text-dark);

    background: transparent;
    border: none;

    transition: color 0.3s ease;
}

.faq-item:hover .faq-q {
    color: var(--cyan);
}

.faq-plus {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    background: var(--cyan);

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.faq-plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-plus::after {
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    transform: translateX(-50%);
}

.faq-item.open .faq-plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.55s ease;
}

.faq-a-inner {
    padding: 0 4px 30px;

    max-width: 70ch;

    color: var(--text-muted);

    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
    background: var(--steel);
    border-top: 1px solid var(--border);
    padding: 60px 5% 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 50px
}

.footer-brand .nav-logo {
    font-size: 1.1rem;
    margin-bottom: .8rem;
    display: block
}

.footer-tagline {
    font-size: .88rem;
    color: rgba(248, 249, 255, .4);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 1.5rem
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 249, 255, .4);
    font-size: .85rem;
    transition: all .3s
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-dim)
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--moon-white);
    margin-bottom: 1.2rem
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.footer-links a {
    font-size: .88rem;
    color: rgba(248, 249, 255, .45);
    transition: color .3s
}

.footer-links a:hover {
    color: var(--cyan)
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    font-size: .78rem;
    color: rgba(248, 249, 255, .3)
}

.footer-legal {
    display: flex;
    gap: 1.5rem
}

.footer-legal a {
    font-size: .78rem;
    color: rgba(248, 249, 255, .3);
    transition: color .3s
}

.footer-legal a:hover {
    color: var(--cyan)
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--steel), var(--obsidian));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 5%;
    text-align: center
}

.cta-banner .section-title {
    color: var(--moon-white);
    margin-bottom: .8rem
}

.cta-banner .section-title em {
    color: var(--cyan)
}

.cta-banner p {
    color: rgba(248, 249, 255, .5);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .about-inner {
        grid-template-columns: 1fr
    }

    .about-badge {
        right: .5rem
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-orbit {
        display: none
    }

    .process-timeline {
        display: flex
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:560px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-title {
        font-size: 2.2rem
    }
}

@media (max-width:768px) {

    .services-grid,
    .pricing-grid,
    .testi-grid {

        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 20px;

        scroll-snap-type: x mandatory;

        padding: 0 5% 20px;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar,
    .testi-grid::-webkit-scrollbar {
        display: none;
    }

    .svc-card,
    .price-card,
    .testi-card {

        flex: 0 0 88%;

        scroll-snap-align: center;
    }

    .process-orbit {
        display: none;
    }

    .process-timeline {

        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 20px;

        padding: 20px 5%;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .process-timeline::-webkit-scrollbar {
        display: none;
    }

    .timeline-item {

        flex: 0 0 80%;

        scroll-snap-align: center;

        min-height: 320px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        -webkit-overflow-scrolling: touch;

        transform: scale(.82);

        opacity: .7;

        transition:
            transform .3s ease,
            opacity .3s ease,
            box-shadow .3s ease;

        background: var(--steel);

        border: 1px solid rgba(74, 144, 226, .2);

        border-radius: 20px;

        padding: 30px;

        backdrop-filter: blur(10px);

        background:
            linear-gradient(180deg,
                rgba(37, 37, 56, .95),
                rgba(18, 18, 25, .95));

    }

    .timeline-item.active {

        border-color: var(--cyan);

        box-shadow:
            0 0 50px rgba(0, 200, 255, .25),
            0 25px 60px rgba(0, 0, 0, .45);

        transform: scale(1);

        opacity: 1;

    }

    .timeline-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .timeline-title {
        margin-bottom: 15px;
    }

    .timeline-desc {
        line-height: 1.9;
    }

}