
:root {
    --bg-body: #020316;
    --bg-panel: rgba(6, 12, 36, 0.97);
    --bg-panel-alt: rgba(4, 10, 30, 0.97);

    --accent-blue: #1f9fff;
    --accent-blue-soft: #5bc3ff;
    --accent-blue-light: #8fd3ff;

    --text-main: #a9c4df;
    --text-muted: #8fa4c4;

    --border-subtle: rgba(143, 211, 255, 0.28);
    --shadow-soft: 0 28px 70px rgba(0,0,0,0.95);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --content-width: min(1120px, 100% - 3rem);
    --content-max-width: 1250px;
    --content-padding: 1.4rem;
}


html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Orbitron', sans-serif;
    color: #fff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #020316;
}


/* Desktop background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../img/background-pc.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
    pointer-events: none;
}

/* Three.js layer */
#zds-bg-3d {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Mobile-specific background override */
@media (max-width: 768px) {
    body::before {
        background-image: url("../img/background-mobile.jpg?v=2");
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    body {
        background-size: 700px auto;
        background-position: center 60px;
    }
}

@media (max-width: 480px) {
    body {
        background-size: 540px auto;
        background-position: center 70px;
    }
}

/* CONTENT LAYER – ABOVE 3D */
.site-header,
.hero,
.section-glow,
main,
footer,
.consult-modal {
    position: relative;
    z-index: 5;
}

/* LOADER ON TOP OF EVERYTHING (when visible) */
#zds-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
}


/* Typography */
h1,
h2,
h3,
h4 {
    font-family: "Orbitron", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    color: var(--accent-blue-light);
}

p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--text-main);
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(1, 4, 14, 0.96);
    border-bottom: 1px solid rgba(143, 211, 255, 0.25);
}

.nav-inner {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    margin-right: auto;
    margin-left: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: contain;
    box-shadow:
        0 0 18px rgba(31, 159, 255, 0.9),
        0 0 45px rgba(91, 195, 255, 0.6);
}

.brand-text {
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent-blue-light);
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-blue-soft);
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 0.18rem 0.55rem;
    color: var(--text-muted);
    cursor: pointer;
    font: inherit;
    border-radius: 999px;
    transition: 0.2s ease;
}

.lang-btn.active {
    color: var(--accent-blue-light);
    background: rgba(10, 18, 42, 0.96);
    box-shadow: 0 0 14px rgba(31, 159, 255, 0.7);
    border-color: rgba(143, 211, 255, 0.6);
}

.lang-sep {
    opacity: 0.7;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.12rem;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.16rem;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-soft));
    transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.22rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.2rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--accent-blue-soft);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
    box-shadow: 0 0 12px rgba(31, 159, 255, 0.8);
    background: rgba(15, 23, 42, 0.9);
}

.nav-toggle.open {
    transform: scale(1.03);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO 
========================================================= */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 4.2rem;
    overflow: hidden;
    z-index: 10;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1000px, 100% - 3rem);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2.8rem 2.8rem 3rem;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(8, 18, 52, 0.96), rgba(3, 7, 21, 0.98));
    border: 1px solid rgba(143, 211, 255, 0.45);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

/* glow + holo sweep on hero */
.hero-inner::before,
.hero-inner::after {
    content: "";
    position: absolute;
    inset: -40%;
    pointer-events: none;
}

.hero-inner::before {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(143, 211, 255, 0) 40%,
        rgba(143, 211, 255, 0.55) 50%,
        rgba(143, 211, 255, 0) 60%,
        transparent 100%
    );
    mix-blend-mode: screen;
    transform: translateX(-130%);
    animation: holoSweep 7s ease-in-out infinite;
}

.hero-inner::after {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(143, 211, 255, 0.22) 0, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(31, 159, 255, 0.18) 0, transparent 48%),
        radial-gradient(circle at 50% 100%, rgba(91, 195, 255, 0.16) 0, transparent 50%);
    opacity: 0.5;
    animation: particleDrift 20s linear infinite;
}

@keyframes holoSweep {
    0% { transform: translateX(-130%); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(20%); opacity: 1; }
    90% { opacity: 0; }
    100% { transform: translateX(130%); opacity: 0; }
}

@keyframes particleDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-14px, -14px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.hero-logo-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 999px;
    object-fit: contain;
    box-shadow:
        0 0 24px rgba(31, 159, 255, 0.9),
        0 0 75px rgba(91, 195, 255, 0.65);
    animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-title {
    font-size: clamp(2.1rem, 3.3vw, 2.8rem);
    margin-bottom: 0.3rem;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--accent-blue-soft);
    margin-bottom: 1.5rem;
}

/* Hero actions */
.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.7rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-soft));
    color: #031226; /* deep navy, not white */
    box-shadow: 0 12px 26px rgba(31, 159, 255, 0.75);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(31, 159, 255, 0.95);
}

.btn.ghost {
    background: transparent;
    color: var(--accent-blue-soft);
    border-color: rgba(143, 211, 255, 0.5);
}

.btn.ghost:hover {
    background: rgba(143, 211, 255, 0.18);
}

/* Hero social – BIGGER icons */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.hero-social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(143, 211, 255, 0.55);
    color: var(--accent-blue-soft);
    background: rgba(3, 8, 24, 0.96);
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
    transition: 0.2s ease;
}

.hero-social-pill:hover {
    background: rgba(10, 18, 45, 1);
    color: var(--accent-blue-light);
    box-shadow: 0 0 22px rgba(31, 159, 255, 0.9);
    transform: translateY(-3px);
}


.hero-scroll-hint {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
}

.hero-scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-blue-soft);
}

.scroll-icon {
    width: 22px;
    height: 32px;
    border-radius: 18px;
    border: 2px solid rgba(143, 211, 255, 0.6);
    position: relative;
    display: block;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-blue-light);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.8s infinite ease-in-out;
}

@keyframes scrollBounce {
    0% { transform: translate(-50%, 0); opacity: 1; }
    60% { transform: translate(-50%, 16px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

/* Special CTA buttons */
.btn.section-cta {
    border-color: rgba(143, 211, 255, 0.85);
    color: var(--accent-blue-light);
    box-shadow: 0 0 18px rgba(31, 159, 255, 0.7);
}

.btn.section-cta:hover {
    box-shadow: 0 0 28px rgba(143, 211, 255, 0.95);
    transform: translateY(-1px);
}

/* =========================================================
   SECTIONS + GLOW
========================================================= */

.section-glow {
    position: relative;
    padding: 5.2rem 0;
    z-index: 2;
}

.section-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80%;
    max-width: 960px;
    height: 60%;
    border-radius: 999px;
    background: radial-gradient(
        circle at center,
        rgba(143, 211, 255, 0.22),
        rgba(31, 159, 255, 0.16),
        transparent 70%
    );
    filter: blur(30px);
    opacity: 0.9;
    z-index: 0;
}

.section-inner {
    width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at top, rgba(8, 18, 52, 0.96), rgba(3, 7, 21, 0.98));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(111, 209, 255, 0.45);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.98),
        0 0 35px rgba(31, 159, 255, 0.6);
    padding: 3.2rem 2.4rem 3rem;
    overflow: hidden;
}

/* header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.8rem;
}

.section-header p {
    max-width: 540px;
    margin: 0.6rem auto 0;
    color: var(--text-muted);
}

/* CTA row under each section */
.section-footer-cta {
    margin-top: 2.4rem;
    text-align: center;
}

.section-footer-cta .btn {
    margin: 0.25rem 0.35rem;
}

/* =========================================================
   GRID LAYOUTS & CARDS
========================================================= */

.highlights-grid,
.services-grid,
.process-grid,
.pricing-grid {
    display: grid;
    gap: 1.7rem;
}

/* Highlights */
.highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 1.8rem 1.6rem;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.9);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.service-card {
    background: linear-gradient(145deg, rgba(10, 16, 40, 0.98), rgba(4, 10, 32, 0.98));
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 1.8rem 1.6rem;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.88);
    position: relative;
    overflow: hidden;
}

.service-card .icon {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
    color: var(--accent-blue-soft);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Process */
.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 1.8rem 1.6rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.96);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-blue-soft);
    margin: 0 auto 0.55rem;
}

/* Latest launch */
.latest-project-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.latest-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(10, 16, 40, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.latest-launch-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    display: block;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.about-card,
.about-highlight {
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.9rem 1.8rem 1.7rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.about-card p {
    color: var(--text-main);
    font-size: 0.95rem;
}

.about-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 360px;
}

.about-highlight ul li {
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0.18rem 0;
}

/* Pricing cards */
.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 2.4rem 1.6rem 2.2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.96);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.pricing-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* make all Learn More buttons sit at same level */
.pricing-card .btn {
    margin-top: auto;
}

/* price badge (top right) */
.price-badge {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 0.72rem;
}

/* glowing badges (label style, e.g. Premium / Ultimate) */
.badge {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(143, 211, 255, 0.95);
    box-shadow: 0 0 18px rgba(143, 211, 255, 0.95);
    background: radial-gradient(
        circle at top,
        rgba(143, 211, 255, 0.9),
        rgba(31, 159, 255, 0.8)
    );
    color: #021027;
}

.badge-premium {
    box-shadow: 0 0 22px rgba(143, 211, 255, 1);
}

.badge-ultimate {
    box-shadow: 0 0 26px rgba(31, 159, 255, 1);
}

/* =========================================================
   HOLOGRAPHIC SCAN ON CARDS
========================================================= */

.holo-card {
    position: relative;
    overflow: hidden;
}

.holo-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(143, 211, 255, 0) 40%,
        rgba(143, 211, 255, 0.45) 50%,
        rgba(143, 211, 255, 0) 60%,
        transparent 100%
    );
    mix-blend-mode: screen;
    transform: translateX(-140%);
    animation: holoSweepCard 11s ease-in-out infinite;
    pointer-events: none;
}

@keyframes holoSweepCard {
    0% { transform: translateX(-140%); opacity: 0; }
    10% { opacity: 0.9; }
    50% { transform: translateX(20%); opacity: 0.9; }
    90% { opacity: 0; }
    100% { transform: translateX(140%); opacity: 0; }
}

/* =========================================================
   HOVER EFFECTS
========================================================= */

.hover-raise {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hover-raise:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 1),
        0 0 28px rgba(31, 159, 255, 0.9);
    border-color: rgba(91, 195, 255, 0.95);
}

.hover-glow {
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hover-glow:hover {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 1),
        0 0 35px rgba(143, 211, 255, 1);
    border-color: rgba(143, 211, 255, 1);
    transform: translateY(-4px);
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* =========================================================
   FOOTER – premium layout
========================================================= */

.site-footer {
    position: relative;
    background: #020316;
    border-top: 1px solid rgba(143, 211, 255, 0.25);
    padding: 2.6rem 0 1.6rem;
    margin-top: 2.5rem;
    text-align: center;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 85%;
    height: 160px;
    background: radial-gradient(
        circle,
        rgba(31, 159, 255, 0.28),
        rgba(91, 195, 255, 0.14),
        transparent 70%
    );
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

.footer-inner {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.footer-logo {
    max-width: 240px;
    object-fit: contain;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 18px rgba(31, 159, 255, 0.8))
        drop-shadow(0 0 30px rgba(91, 195, 255, 0.55))
        drop-shadow(0 0 50px rgba(143, 211, 255, 0.35));
    transition: filter 0.35s ease, transform 0.35s ease;
}

.footer-logo:hover {
    filter:
        drop-shadow(0 0 26px rgba(31, 159, 255, 1))
        drop-shadow(0 0 50px rgba(91, 195, 255, 0.8))
        drop-shadow(0 0 80px rgba(143, 211, 255, 0.6));
    transform: translateY(-2px);
}

.footer-contact {
    text-align: center;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.footer-contact p {
    margin: 0.3rem 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.footer-social a {
    position: relative;
    color: var(--accent-blue-soft);
    font-size: 1.6rem;
    text-decoration: none;
    padding: 0.35rem;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        filter 0.35s ease,
        box-shadow 0.35s ease;
    filter: drop-shadow(0 0 8px rgba(31, 159, 255, 0.35));
    animation: socialIdlePulse 3.4s ease-in-out infinite;
}

@keyframes socialIdlePulse {
    0% { filter: drop-shadow(0 0 5px rgba(31, 159, 255, 0.25)); }
    50% { filter: drop-shadow(0 0 10px rgba(91, 195, 255, 0.45)); }
    100% { filter: drop-shadow(0 0 5px rgba(31, 159, 255, 0.25)); }
}

.footer-social a:hover {
    color: var(--accent-blue-light);
    transform: translateY(-3px) scale(1.05);
    filter:
        drop-shadow(0 0 18px rgba(31, 159, 255, 0.9))
        drop-shadow(0 0 30px rgba(91, 195, 255, 0.6))
        drop-shadow(0 0 60px rgba(143, 211, 255, 0.45));
}

.footer-copy {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copy a {
    color: var(--accent-blue-soft);
    text-decoration: none;
}

.footer-copy a:hover {
    color: var(--accent-blue-light);
}

/* Desktop footer layout */
@media (min-width: 901px) {
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
        max-width: var(--content-width);
        padding: 0 1.5rem;
        box-sizing: border-box;
        text-align: center;
    }

    .footer-logo {
        justify-self: start;
    }

    .footer-contact {
        justify-self: center;
    }

    .footer-social {
        justify-self: end;
    }

    .footer-social a {
        font-size: 1.75rem;
        padding: 0.45rem;
    }
}

/* Smaller logo / icons on phones */
@media (max-width: 640px) {
    .footer-logo {
        max-width: 200px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        font-size: 1.45rem;
        padding: 0.3rem;
        transform: none;
    }
}

/* =========================================================
   CONSULTATION MODAL (GLOBAL)
========================================================= */

.consult-modal {
    position: fixed;
    inset: 0;
    display: none; /* JS toggles to flex */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.consult-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 3, 18, 0.85);
    backdrop-filter: blur(12px);
}

.consult-dialog {
    position: relative;
    z-index: 1;
    background: var(--bg-panel);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(143, 211, 255, 0.5);
    padding: 2.1rem 2rem 1.8rem;
    width: min(420px, 90%);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.95);
    color: var(--text-main);
    text-align: center;
}

.consult-close {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    background: transparent;
    border: none;
    color: var(--accent-blue-soft);
    cursor: pointer;
    font-size: 1.05rem;
}

.consult-title {
    margin-bottom: 0.5rem;
}

.consult-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.consult-label {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue-soft);
    margin-bottom: 0.4rem;
    text-align: center;
}

.consult-input,
.consult-date-input,
.consult-dialog select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 150, 255, 0.55);
    background: rgba(0, 40, 80, 0.7);
    color: #d7ecff;
    font-size: 1rem;
    text-align: center;
}

.consult-input::placeholder {
    color: #b8d9ff;
}

.flatpickr-calendar {
    background: rgba(10, 20, 40, 0.95) !important;
    border: 1px solid rgba(0, 120, 255, 0.6) !important;
}

.flatpickr-day.selected {
    background: #008cff !important;
    border-color: #008cff !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: rgba(0, 150, 255, 0.25) !important;
}

.flatpickr-day.today {
    color: #ffd978 !important;
}

.consult-actions {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

/* =========================================================
   PRICING / SUBSCRIPTIONS EXTRA (CARD LAYOUTS)
========================================================= */

.subscriptions-section {
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.big-package-box {
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 900px;
    text-align: left;
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: visible;
    position: relative;
}

.big-box-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.big-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.big-box-col h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--accent-blue-light);
}

.big-box-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.big-box-col ul li {
    margin: 0.3rem 0;
    opacity: 0.9;
    color: var(--text-main);
}

/* Subscription cards */
.subscription-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.sub-card {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 10, 32, 0.98);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    color: var(--text-main);
}

.sub-desc {
    margin: 1rem 0;
    opacity: 0.9;
}

.sub-btn {
    margin-top: 1.4rem;
}

/* =========================================================
   PRICING MODAL COLOR STYLES (POPUP)
========================================================= */

.pricing-modal-panel h3,
.modal-detail-group h4 {
    color: var(--accent-blue);
}

.modal-detail-group ul li,
.modal-detail-group p,
.pricing-modal-sub {
    color: var(--accent-blue-light);
}

.pricing-modal-actions .btn,
#build-modal-back,
#build-modal-select {
    color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
}

.pricing-modal-actions .btn.primary,
#build-modal-select.btn.primary {
    background-color: var(--accent-blue);
    color: #fff;
}

/* =========================================================
   INQUIRY PAGE STYLES
========================================================= */

.inquiry-shell {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem 1.2rem 4rem;
    text-align: center;
    color: var(--text-main);
}

.inquiry-hero-card {
    position: relative;
    padding: 2rem 1.6rem;
    border-radius: 20px;
    background: rgba(3, 6, 24, 0.9);
    border: 1px solid rgba(143, 211, 255, 0.25);
    backdrop-filter: blur(12px);
}

.inquiry-hero-inner h1 {
    margin-bottom: 0.4rem;
}

.contact-method-label {
    display: block;
    margin-top: 0.8rem;
    opacity: 0.85;
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.9rem 0 1rem;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-size: 0.86rem;
    background: rgba(8, 16, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: 0.18s;
    color: var(--text-main);
}

.contact-method-btn.active {
    background: linear-gradient(135deg, #1f9fff, #8fd3ff);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 15px rgba(31, 159, 255, 0.7);
    color: #031226;
}

.selection-box {
    background: rgba(2, 4, 18, 0.92);
    border-radius: 14px;
    padding: 1.4rem 1.2rem;
    margin-top: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    text-align: left;
    color: var(--text-main);
}

.selection-line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
    margin-top: 0.35rem;
}

.selection-line span:first-child {
    min-width: 140px;
    display: inline-block;
    font-weight: 600;
}

.selection-value {
    text-align: right;
    flex: 1;
}

/* CONSULT CARD on inquiry page */
.consult-card {
    background: rgba(1, 4, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    margin-top: 2rem;
    color: var(--text-main);
}

/* FORM CARD */
.inquiry-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    margin-top: 2.6rem;
    text-align: center;
    color: var(--text-main);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 1.6rem;
}

@media (max-width: 720px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* INPUTS */
.inquiry-input,
.inquiry-select,
.inquiry-textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: rgba(5, 8, 32, 0.92);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-main);
    font-size: 0.9rem;
}

/* ADD-ONS */
.addons-title {
    font-size: 1.1rem;
    margin-top: 1.8rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.7rem;
    justify-items: center;
    margin-top: 0.6rem;
}

.addon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: rgba(5, 8, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text-main);
}

.addon-pill input {
    transform: scale(1.1);
}

/* ACCORDIONS */
.accordion {
    background: rgba(5, 8, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    margin: 1.2rem 0;
    overflow: hidden;
}

.accordion-header {
    padding: 0.9rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-main);
}

.accordion-arrow {
    transition: 0.3s;
    margin-left: 0.5rem;
}

.accordion.open .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 1rem;
    color: var(--text-main);
}

/* SUBMIT BUTTONS */
.submit-desktop {
    margin-top: 2rem;
}


.sticky-submit {
    display: none !important;
}

/* Center inquiry form container */
.inquiry-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.inquiry-section {
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Confirmation shell/cards (inquiry-confirmation page) */
.confirm-shell {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem 1.2rem 4rem;
}

.confirm-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2.2rem 1.8rem;
    text-align: center;
    color: var(--text-main);
}

/* =========================================================
   PAGE HERO VARIANTS (Pricing, Services, Process, Portfolio)
========================================================= */

.hero.hero-small {
    min-height: 52vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

/* Generic page heroes */
.services-hero,
.process-hero,
.portfolio-hero,
.pricing-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-inner,
.services-hero-inner,
.process-hero-inner,
.pricing-hero-inner,
.portfolio-hero-inner {
    width: var(--content-width);
    margin: 0 auto;
}


.pricing-hero,
.pricing-hero.hero-small {
    min-height: 88vh;
    height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
    overflow: visible;
}

.pricing-hero-inner {
    width: var(--content-width);
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 2.6rem 2rem 3rem;
}

/* Portfolio hero matches process hero */
.portfolio-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.portfolio-hero .hero-inner {
    width: min(1000px, 100% - 3rem);
    margin: 0 auto;
    padding: 3rem 2.8rem 3.4rem;
    border-radius: 32px;
    background: radial-gradient(circle at top,
                rgba(8, 18, 52, 0.96),
                rgba(3, 7, 21, 0.98));
    border: 1px solid rgba(143, 211, 255, 0.4);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero .hero-title {
    font-size: clamp(2.1rem, 3.3vw, 2.8rem);
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.portfolio-hero .hero-tagline {
    font-size: 1.05rem;
    color: var(--accent-blue-soft);
    max-width: 720px;
    margin: 0.6rem auto 2rem;
    line-height: 1.55;
}

.portfolio-hero .hero-scroll-hint {
    margin-top: 2.5rem;
}

/* Skip-support area on pricing */
.support-skip-wrap {
    margin-top: 2.4rem;
    text-align: center;
}

.support-skip-btn {
    min-width: 240px;
}

/* =========================================================
   LOADER – ZDS CINEMATIC
========================================================= */

#zds-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, #06203b, #010314 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    overflow: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

#zds-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.zds-loader-inner {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 480px;
}

/* Aura behind Z */
.zds-loader-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    transform: translate(-50%, -52%);
    background: radial-gradient(circle,
        rgba(31,159,255,0.35) 0%,
        rgba(31,159,255,0.12) 45%,
        rgba(0,0,0,0) 75%
    );
    animation: auraPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes auraPulse {
    0% { transform: translate(-50%, -52%) scale(1); opacity: .85; }
    50% { transform: translate(-50%, -52%) scale(1.15); opacity: .55; }
    100% { transform: translate(-50%, -52%) scale(1); opacity: .85; }
}

/* Z logo */
.zds-loader-logo {
    position: relative;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 0 20px #1f9fff);
    animation: zPulse 2.6s ease-in-out infinite;
}

@keyframes zPulse {
    0%   { transform: scale(.96); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(.96); }
}

/* Text + progress group */
.zds-loader-lower {
    margin-top: 220px;
    z-index: 20;
}

/* Glitch loading text */
.zds-loader-text {
    font-size: 1.2rem;
    color: #8fd3ff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: glitchText 1.4s ease forwards;
}

@keyframes glitchText {
    0%   { opacity: 0; transform: translateY(6px); }
    40%  { opacity: 1; transform: translateY(0); }
    60%  { text-shadow: 2px 0 #1f9fff; }
    80%  { text-shadow: -2px 0 #5bc3ff; }
    100% { text-shadow: none; }
}

/* Progress container */
.zds-loader-progress {
    width: 260px;
    height: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    margin: 1.4rem auto 0;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(31,159,255,0.45);
}

.zds-progress-bar {
    width: 0%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, #1f9fff, #5bc3ff, #8fd3ff);
    animation: progressRun 2.8s ease-out forwards;
}

@keyframes progressRun {
    0% { width: 0%; }
    35% { width: 40%; }
    55% { width: 65%; }
    75% { width: 85%; }
    100% { width: 100%; }
}

/* SYSTEM ONLINE flash */
.zds-system-online {
    margin-top: 1.8rem;
    font-size: 1.25rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.2em;
    color: #1f9fff;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity .25s ease, transform .25s ease;
}

.zds-system-online.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
   RESPONSIVE LAYOUTS
========================================================= */

/* --- 900px & down --- */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 3.1rem;
        right: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        background: rgba(1, 4, 18, 0.98);
        padding: 0.95rem 1.1rem;
        border-radius: 16px;
        border: 1px solid rgba(143, 211, 255, 0.35);
        box-shadow: var(--shadow-soft);
        transform-origin: top right;
        transform: translateY(-8px) scale(0.9);
        opacity: 0;
        pointer-events: none;
        z-index: 25;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .section-inner,
    .section-header,
    .highlight-card,
    .service-card,
    .process-step,
    .latest-card,
    .about-card,
    .about-highlight,
    .pricing-card,
    .hero-inner {
        text-align: center;
    }

    .step-number {
        margin-left: auto;
        margin-right: auto;
    }

    .highlights-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-inner {
        padding: 2.6rem 1.6rem 2.6rem;
    }

    .hero {
        padding-top: 5rem;
    }

    .footer-inner {
        padding: 0 1.2rem;
    }

    .subscription-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .big-box-grid {
        grid-template-columns: 1fr;
    }

    /* tighten gaps & widen cards */
    .highlights-grid,
    .services-grid,
    .process-grid,
    .pricing-grid,
    .about-grid,
    .subscription-grid,
    .big-box-grid {
        gap: 1.2rem;
    }
}

/* --- 768px & down: center shells + padding --- */
@media (max-width: 768px) {
    .section-inner,
    .inquiry-shell,
    .inquiry-card,
    .big-package-box,
    .subscription-grid,
    .latest-project-wrapper,
    .about-grid,
    .pricing-grid,
    .highlights-grid,
    .services-grid,
    .process-grid {
        width: 100%;
        max-width: calc(100% - 2.4rem);
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .inquiry-hero-card,
    .confirm-shell,
    .confirm-card {
        width: 100%;
        max-width: calc(100% - 2.4rem);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

/* --- 640px & down --- */
@media (max-width: 640px) {
    .section-glow {
        padding: 4rem 0;
    }

    .hero,
    .hero.hero-small,
    .services-hero,
    .process-hero,
    .portfolio-hero,
    .pricing-hero,
    .inquiry-hero-card {
        padding-top: 5.5rem;
        padding-bottom: 2.8rem;
    }

    .hero-inner,
    .page-hero-inner,
    .inquiry-hero-card,
    .pricing-hero-inner,
    .portfolio-hero-inner,
    .services-hero-inner,
    .process-hero-inner {
        width: 100%;
        max-width: calc(100% - 2.4rem);
        margin: 0 auto;
        border-radius: 26px;
    }

    .hero-inner {
        padding: 2.1rem 1.6rem 2.4rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .services-grid,
    .pricing-grid,
    .subscription-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .brand-text {
        display: none;
    }

    .highlight-card,
    .service-card,
    .process-step,
    .pricing-card,
    .about-card,
    .about-highlight,
    .sub-card {
        padding: 1.6rem 1.4rem;
    }

    .highlight-card p,
    .service-card p,
    .process-step p,
    .about-card p,
    .about-highlight ul li,
    .pricing-card p,
    .sub-card p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 1.2rem;
        text-align: center;
        word-break: break-word;
    }

    .section-header p {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-top: 0.4rem;
    }

    .portfolio-hero {
        padding-top: 5.2rem;
        padding-bottom: 4rem;
    }

    .portfolio-hero .hero-inner {
        padding: 2.1rem 1.6rem 2.6rem;
        border-radius: 24px;
    }

    .portfolio-hero .hero-title {
        font-size: 1.75rem;
        line-height: 2.1rem;
    }

    .portfolio-hero .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.7rem;
    }

    .portfolio-hero .hero-scroll-hint {
        margin-top: 2rem;
    }

    /* fix holo sweep clipping in tall mobile hero */
    .hero-inner::before,
    .hero-inner::after {
        inset: -80%;
    }
}

/* --- 600px & down: loader tweak --- */
@media (max-width: 600px) {
    .zds-loader-aura {
        width: 240px;
        height: 240px;
        transform: translate(-50%, -50%);
    }

    .zds-loader-logo {
        width: 135px;
    }

    .zds-loader-lower {
        margin-top: 170px;
    }

    .zds-loader-text {
        font-size: .95rem;
    }

    .zds-loader-progress {
        width: 200px;
        height: 8px;
    }

    .zds-system-online {
        font-size: 1rem;
    }
}

/* --- 480px & down: prevent BIH title clipping --- */
@media (max-width: 480px) {
    .services-grid h3,
    .process-grid h3,
    .section-header h2 {
        word-break: break-word;
        hyphens: auto;
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* =========================================================
   DESKTOP WIDENING – nicer card widths
========================================================= */

@media (min-width: 900px) {

    .highlights-grid,
    .services-grid,
    .process-grid,
    .pricing-grid,
    .about-grid,
    .subscription-grid,
    .big-box-grid {
        gap: 1.1rem;
    }

    .highlight-card,
    .service-card,
    .process-step,
    .pricing-card,
    .about-card,
    .about-highlight,
    .sub-card,
    .big-package-box {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section-inner > .highlights-grid,
    .section-inner > .services-grid,
    .section-inner > .process-grid,
    .section-inner > .pricing-grid,
    .section-inner > .about-grid,
    .section-inner > .subscription-grid,
    .section-inner > .big-box-grid {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card p,
    .process-step p,
    .pricing-card p,
    .about-card p,
    .about-highlight li,
    .sub-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}



.section-header h2 {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem) !important;
}

.pricing-hero .hero-scroll-hint,
.pricing-hero .scroll-icon {
    margin-left: auto !important;
    margin-right: auto !important;
}

.pricing-hero .hero-scroll-hint {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.price-badge {
    margin-top: 0 !important;          /* remove negative push */
    transform: translateY(0) !important;
}

.pricing-card-header {
    padding-top: 2rem !important;      /* creates space for badge */
}

* {
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    white-space: normal !important;
    hyphens: none !important;
    word-break: normal !important;
}

[data-i18n] {
    hyphens: none !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}


/* =============================
   ZDS — Neon Step Circles
  
============================= */

.step-number {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 68px;
    height: 68px;

    border-radius: 50%;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.22em;

    color: #031226;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
    box-shadow:
        0 0 18px rgba(31, 159, 255, 0.9),
        0 0 35px rgba(143, 211, 255, 0.55);

    margin: 0 auto 1rem;
    text-shadow: none;

    border: 1px solid rgba(143, 211, 255, 0.55);
}

/* floating glow pulse */
.step-number::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(31, 159, 255, 0.15),
        rgba(31, 159, 255, 0.05),
        transparent 70%
    );
    animation: stepGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes stepGlow {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.12); }
}

/* mobile tweak */
@media (max-width: 640px) {
    .step-number {
        width: 58px;
        height: 58px;
        font-size: 1rem;
        letter-spacing: 0.18em;
    }
}

/* =========================================================
   ZDS — EARLY ACCESS LAUNCH BANNER (15% OFF)
========================================================= */

.zds-early-access-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0.9rem 0;
    background: linear-gradient(110deg, #031226, #051b33, #031227);
    border-bottom: 1px solid rgba(31,159,255,0.35);
    z-index: 15; /* safely behind nav */
}

/* soft pulsing glow */
.zds-early-access-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(31,159,255,0.35), transparent 75%);
    animation: zdsBannerPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes zdsBannerPulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.55; }
    100% { opacity: 0.15; }
}

/* animated horizontal blue circuits */
.zds-banner-circuits {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to right,
        rgba(143,211,255,0.1) 0px,
        rgba(143,211,255,0.1) 2px,
        transparent 4px,
        transparent 12px
    );
    animation: zdsCircuitScroll 18s linear infinite;
    opacity: 0.45;
}

@keyframes zdsCircuitScroll {
    from { transform: translateX(-30%); }
    to   { transform: translateX(100%); }
}

/* main text container */
.zds-banner-inner {
    position: relative;
    z-index: 2;
    color: #8fd3ff;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(31,159,255,0.8);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.8rem;
    text-align: center;
}

.zds-banner-icon {
    margin-right: 0.45rem;
    filter: drop-shadow(0 0 6px #1f9fff);
}

/* dismiss button */
.zds-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31,159,255,0.25);
    border: none;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    color: #8fd3ff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.zds-banner-close:hover {
    background: rgba(31,159,255,0.55);
}

/* ensure banner stays BEHIND mobile hamburger */
@media (max-width: 900px) {
    .zds-early-access-banner {
        z-index: 8; 
    }
}

@media (max-width: 600px) {
    .price-badge {
        margin-top: -8px !important; 
    }
    .pricing-card h3 {
        margin-top: 6px !important;
    }
}


