:root {
    --bg: #050505;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #7000ff;
    /* Deep purple/blue */
    --accent-glow: #00f0ff;
    /* Cyan */

    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
    position: relative;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    top: 0;
    left: 0;
    transition: transform 0.1s var(--easing);
    mix-blend-mode: difference;
}

/* Hover States for Cursor */
a:hover~.cursor-circle,
button:hover~.cursor-circle {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Fluid Background */
.fluid-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #2e0057 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #003657 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #570048 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.section-title {
    margin-bottom: 3rem;
}

.section-title span {
    font-size: 0.9rem;
    color: var(--accent-glow);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

h2.section-title {
    font-size: 3rem;
    line-height: 1;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-pad {
    padding: 10vh 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 2rem 0;
    transition: 0.3s;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

.lang-link {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

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

.lang-link:hover,
.lang-link.active {
    transform: scale(1.2);
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.sep {
    display: none;
}

.btn-fluid {
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-fluid:hover {
    background: white;
    color: black;
    border-color: white;
}

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn .bar {
    width: 30px;
    height: 2px;
    background: white;
    display: block;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 10vh;
}

.hero-title {
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 3rem;
}

.line-wrapper {
    overflow: hidden;
}

.word-reveal {
    display: block;
    transform: translateY(110%);
    animation: revealUp 1s var(--easing) forwards;
}

.line-wrapper:nth-child(2) .word-reveal {
    animation-delay: 0.1s;
}

.line-wrapper:nth-child(3) .word-reveal {
    animation-delay: 0.2s;
}

.stroke-text {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    font-size: 1.5rem;
    max-width: 600px;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-sub strong {
    color: white;
    font-weight: 400;
}

.hero-footer {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-transform: uppercase;
    opacity: 0.6;
}

.socials {
    display: flex;
    gap: 2rem;
}

/* Services */
.section-head {
    margin-bottom: 5rem;
}

.tag {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-head h2 {
    font-size: 4rem;
}

.accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--accent-glow);
}

.accordion-header h3 {
    font-size: 3rem;
    flex: 1;
    font-weight: 400;
}

.num {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    margin-right: 4rem;
    color: var(--text-muted);
}

.acc-icon {
    transition: 0.3s;
}

.active .acc-icon {
    transform: rotate(45deg);
}

.accordion-body {
    height: 0;
    overflow: hidden;
    transition: height 0.5s var(--easing);
}

.acc-content {
    padding-bottom: 3rem;
    padding-left: 6rem;
    /* Align with title */
}

.tags-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: 1.5rem;
}

.tags-list li {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Work */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.work-card {
    display: block;
}

.work-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/3;
}

.work-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: transform 0.8s var(--easing);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.work-overlay span {
    padding: 1rem 2rem;
    border: 1px solid white;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.work-card:hover .work-img {
    transform: scale(1.1);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.work-info span {
    color: var(--text-muted);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-cont h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fluid-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: white;
    font-family: inherit;
    font-size: 1.2rem;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--accent-glow);
}

/* Animations */
@keyframes revealUp {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-pad {
        padding: 5vh 0;
    }

    .hero-title {
        font-size: 11vw;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-cont h2 {
        font-size: 3rem;
        /* Reduced size */
        word-wrap: break-word;
    }

    .fluid-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        margin: 2rem auto 0;
        box-sizing: border-box !important;
    }

    .input-group select,
    .input-group input {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
        text-overflow: ellipsis;
    }

    .hero,
    .contact-wrapper,
    .fluid-form,
    .section-head h2 {
        max-width: 100%;
        box-sizing: border-box;
    }

    .option-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Force overflow safety on sections */
    section {
        overflow-x: hidden;
    }

    .menu-btn {
        display: block;
        z-index: 10000;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100%;
        /* Safety */
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .nav-list li a {
        font-size: 1.8rem;
        /* Reduced from 2.5rem */
        font-weight: 700;
        color: white;
    }

    /* Burger Animation */
    .menu-btn .bar {
        display: block;
        width: 30px;
        height: 2px;
        background: white;
        margin: 6px 0;
        transition: 0.3s;
    }

    .menu-btn.nav-open .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-btn.nav-open .bar:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .work-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .accordion-header h3 {
        font-size: 1.8rem;
    }

    .mega-bento-grid {
        grid-template-columns: 1fr;
    }

    .box-large,
    .box-medium,
    .box-wide {
        grid-column: span 1;
        aspect-ratio: auto;
    }
}

/* Structured Symmetric Grid */
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.category-header h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: var(--text-muted);
}

.category-header .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.mt-5 {
    margin-top: 5rem;
}

/* 2-Column Split */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Wizard Styles consolidated */
.wizard-container {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 50;
}

button,
.option-card,
.budget-btn,
a {
    cursor: pointer !important;
}

input,
select,
textarea {
    cursor: text !important;
}

.wizard-progress {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-glow);
    width: 0%;
    border-radius: 2px;
    transition: width 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0;
    pointer-events: none;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.step-dot.active {
    background: var(--accent-glow);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.option-card.selected {
    border-color: var(--accent-glow);
    background: rgba(0, 240, 255, 0.1);
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.budget-btn {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.budget-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

@media (max-width: 768px) {

    .option-grid,
    .budget-grid {
        grid-template-columns: 1fr;
    }
}



/* Refined Form Button */
.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: white;
    color: black;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.4s var(--easing);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.btn-submit i {
    transition: 0.4s var(--easing);
}

.btn-submit:hover i {
    transform: translateX(10px);
}

/* Refined Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: black;
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.col-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer h4 {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.col-address p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 3-Column Split */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.box-split {
    aspect-ratio: 16/10;
}

.box-tall {
    aspect-ratio: 4/5;
}

@media (max-width: 900px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }

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

    .box-split,
    .box-tall {
        aspect-ratio: auto;
        min-height: 300px;
    }
}

.bento-box {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.box-icon {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 2rem;
    color: var(--accent-glow);
}

.box-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.box-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.micro-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.micro-tags li {
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-bg-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    bottom: -50px;
    right: -50px;
    opacity: 0.2;
    transition: 0.5s;
}

.blue {
    background: blue;
}

.green {
    background: green;
}

.bento-box:hover .box-bg-glow {
    opacity: 0.4;
    transform: scale(1.2);
}

.text-center {
    text-align: center;
}

/* --- Service Detail Pages --- */

.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15vh;
    padding-bottom: 5vh;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 6vw;
    line-height: 1;
    margin-bottom: 2rem;
}

.page-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    color: var(--text-muted);
}

.detail-content {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Breadcrumb / Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: 0.3s;
}

.back-link:hover {
    color: white;
}

/* Legal Pages Styling */
.legal-page-header {
    margin-bottom: 4rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--text);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content a {
    color: var(--text);
    border-bottom: 1px solid var(--accent-glow);
    transition: 0.3s;
}

.legal-content a:hover {
    color: var(--accent-glow);
    border-bottom-color: transparent;
}

/* Legal Table of Contents (Optional for longer pages) */
.legal-toc {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4rem;
}

.legal-toc h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.5rem;
}

.legal-toc a {
    color: var(--text-muted);
    font-size: 0.95rem;
    border: none;
}

.legal-toc a:hover {
    color: var(--accent-glow);
    padding-left: 0.5rem;
}

/* AGB Subpoints */
.agb-item {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.agb-item strong {
    color: var(--accent-glow);
    margin-right: 0.5rem;
}

/* =========================================
   Service Page Expansion
   ========================================= */

/* Extended Intro */
.service-intro {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.service-intro p {
    margin-bottom: 1.5rem;
}

/* USP Section */
.usp-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 8rem;
    padding: 6rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.usp-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-glow);
}

.usp-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Process Timeline */
.process-section {
    margin-bottom: 8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto 8rem auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-glow);
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--accent-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.project-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-item:hover .project-image img {
    transform: scale(1.03);
}

.project-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-info {
    margin-bottom: 1.5rem;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-muted);
}

.project-image {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.project-item:hover .work-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .project-list {
        grid-template-columns: 1fr;
    }
}

/* Missing Service/Expertise Styles - RESTORED */

.expertise-section {
    padding: 10vh 0;
    position: relative;
    z-index: 2;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-glow);
    margin-bottom: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    margin-top: auto;
    transition: 0.3s;
}

.btn-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-link {
    color: var(--accent-glow);
}

.service-card:hover .btn-link i {
    transform: translateX(5px);
}



/* Spacing Fixes */
.section-header {
    margin-bottom: 5rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 1.5rem;
}

/* Case Study Details */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kpi-item h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.kpi-item p {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 5rem 0;
}

.case-visual {
    margin: 5rem 0;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {

    .kpi-grid,
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- Mobile Wow Effects --- */

/* Wizard Progress */
/* Wizard Progress */
.wizard-progress {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
    height: 4px;
    /* Track height */
    background: rgba(255, 255, 255, 0.1);
    /* Track */
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-glow);
    width: 0%;
    border-radius: 2px;
    transition: width 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0;
    /* Reset */
    pointer-events: none;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-dot.active {
    background: var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.2);
}

/* Mobile Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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


/* Legal Pages */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.legal-content p,
.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.agb-item strong {
    color: var(--text-color);
    margin-right: 0.5rem;
}

/* 2. Horizontal Swiping (Snap) for Lists on Mobile */
@media (max-width: 768px) {
    .project-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 2rem;
        /* Space for scrollbar/touch */
        padding-right: 1.5rem;
        /* End padding */
        margin-right: -1.5rem;
        /* Negative margin to pull to edge */
        /* Hide Scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .project-list::-webkit-scrollbar {
        display: none;
    }

    .project-item {
        min-width: 85vw;
        /* Almost full screen width card */
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* 3. Touch Feedback (Active States) */
.btn-fluid:active,
.project-item:active,
.service-card:active,
.option-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* --- Pricing Page Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-glow);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-glow);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price .currency,
.price .unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.feature-list li i {
    width: 18px;
    height: 18px;
    color: var(--accent-glow);
    flex-shrink: 0;
}

.feature-list li strong {
    color: white;
}

.card-footer {
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: scale(1.02);
        z-index: 2;
    }
}