/* ==========================================================================
   DAGIM — DIAMOND DESIGN RESUME & PORTFOLIO
   Inspired by Kidus Yohannes Aesthetics & Diamond Design Brand
   ========================================================================== */

:root {
    --bg-dark: #0C0C0C;
    --bg-card: #141414;
    --bg-card-glass: rgba(22, 22, 22, 0.75);
    --border-subtle: rgba(215, 226, 234, 0.15);
    --border-strong: #D7E2EA;
    --text-primary: #D7E2EA;
    --text-pure: #FFFFFF;
    --text-muted: rgba(215, 226, 234, 0.60);
    --accent-cyan: #00F0FF;
    --accent-grey: #6B7280;
    --accent-dark-grey: #262A30;
    --accent-purple: #3A3F47;
    --accent-amber: #4B5563;
    --gradient-btn: linear-gradient(135deg, #181A1D 0%, #2D3239 45%, #424953 80%, #22262C 100%);
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(140, 150, 165, 0.35);
    color: #FFFFFF;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

.select-none {
    user-select: none;
    -webkit-user-select: none;
}

/* --------------------------------------------------------------------------
   AMBIENT GLOWS & VIGNETTE
   -------------------------------------------------------------------------- */
.ambient-glows {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    will-change: transform;
}

.glow-cyan {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00F0FF 0%, transparent 70%);
    top: -100px;
    left: -150px;
}

.glow-grey, .glow-magenta {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(120, 130, 145, 0.25) 0%, transparent 70%);
    bottom: 20%;
    right: -200px;
}

.glow-purple {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(60, 66, 76, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 10%;
}

.glow-amber {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 85, 99, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: 40%;
}

/* --------------------------------------------------------------------------
   SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(215, 226, 234, 0.08);
    transition: var(--transition);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    transition: opacity 0.2s;
}

.brand-logo:hover {
    opacity: 0.8;
}

.diamond-icon {
    color: var(--accent-cyan);
    font-size: 1rem;
    text-shadow: 0 0 12px var(--accent-cyan);
}

.brand-year {
    color: var(--text-muted);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-pill-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-btn);
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.6), inset 2px 2px 8px rgba(255, 255, 255, 0.18);
    outline: 2px solid #E5E7EB;
    outline-offset: -3px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-pill-gradient:hover {
    transform: scale(1.03);
    filter: brightness(1.2);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.75), inset 2px 2px 10px rgba(255, 255, 255, 0.25);
    outline-color: #FFFFFF;
}

.btn-pill-gradient:active {
    transform: scale(0.98);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.72rem;
}

.btn-md {
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.85rem;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
    transition: var(--transition);
}

.btn-outline-pill:hover {
    background: rgba(215, 226, 234, 0.12);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: scale(1.02);
}

.btn-outline-pill.btn-sm {
    padding: 0.55rem 1.3rem;
    font-size: 0.72rem;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION (KIDUS AESTHETICS)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 5rem;
    z-index: 10;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(48% 42% at 50% 60%, rgba(70, 78, 90, 0.35), transparent 72%),
        radial-gradient(40% 34% at 20% 30%, rgba(0, 240, 255, 0.16), transparent 70%),
        radial-gradient(38% 32% at 82% 28%, rgba(90, 98, 110, 0.22), transparent 70%),
        radial-gradient(70% 50% at 50% 108%, rgba(60, 66, 76, 0.35), transparent 70%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(75% 62% at 50% 50%, transparent 35%, rgba(12, 12, 12, 0.8) 100%);
}

.hero-title-container {
    position: absolute;
    top: 14%;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
    text-align: center;
}

.hero-giant-heading {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 14.5vw, 180px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--text-primary);
    opacity: 0.88;
    white-space: nowrap;
    text-shadow: 0 0 50px rgba(0, 240, 255, 0.15);
}

/* Interactive 3D Orbital Canvas */
.hero-orbit-stage {
    position: absolute;
    inset: 0;
    top: 6%;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    touch-action: none;
}

.hero-orbit-stage:active {
    cursor: grabbing;
}

.orbit-center {
    position: absolute;
    width: 650px;
    height: 650px;
    pointer-events: none;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: auto;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.orbit-token {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.2s ease;
}

.orbit-token:hover {
    transform: scale(1.1);
}

.token-svg {
    width: 90px;
    height: 90px;
}

.token-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.token-circle.bg-purple {
    background: linear-gradient(135deg, #374151, #1F2937);
}

.token-circle.bg-amber {
    background: linear-gradient(135deg, #4B5563, #2B303A);
}

.token-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    background: #2D3239;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00F0FF;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.token-square, .token-square.bg-grey, .token-square.bg-magenta {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #4B5563, #1A1D23);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.token-card {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: rgba(22, 22, 22, 0.85);
    border: 1px solid rgba(215, 226, 234, 0.25);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

.token-badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    background: rgba(12, 12, 12, 0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Central Portrait Masking (Kidus Signature) */
.hero-portrait-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: clamp(260px, 32vw, 460px);
    pointer-events: none;
}

.hero-portrait {
    width: 100%;
    height: auto;
    object-contain: fit;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95));
    mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: relative;
    z-index: 30;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-tagline-col {
    max-width: 280px;
}

.hero-tagline {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1.4;
}

.hero-spin-hint {
    display: none;
}

@media (min-width: 768px) {
    .hero-spin-hint {
        display: block;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: rgba(215, 226, 234, 0.45);
        padding-bottom: 0.5rem;
    }
}

/* --------------------------------------------------------------------------
   2. INFINITE DUAL-ROW MARQUEE
   -------------------------------------------------------------------------- */
.marquee-section {
    background: var(--bg-dark);
    padding: 4rem 0 2rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.marquee-left .marquee-track {
    animation: scrollLeft 45s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-card {
    width: clamp(260px, 24vw, 360px);
    height: clamp(160px, 15vw, 230px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #161616;
    border: 1px solid rgba(215, 226, 234, 0.12);
    flex-shrink: 0;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.marquee-card-meta {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.95), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.marquee-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

.marquee-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.marquee-text-track {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(215, 226, 234, 0.1);
    border-bottom: 1px solid rgba(215, 226, 234, 0.1);
}

.marquee-text-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: rgba(215, 226, 234, 0.85);
}

.star-accent {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   3. ABOUT ME SECTION
   -------------------------------------------------------------------------- */
.about-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7rem 2rem;
    background: var(--bg-dark);
    overflow: hidden;
}

.about-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: #374151;
    top: 10%;
    left: 5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #00F0FF;
    bottom: 15%;
    right: 5%;
}

.section-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 10;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.section-label.text-cyan {
    color: var(--accent-cyan);
}

.section-giant-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 9vw, 110px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--text-primary);
}

.section-subheading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 65px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
}

.about-content-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

.about-statement {
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(215, 226, 234, 0.75);
    max-width: 780px;
}

.statement-highlight {
    color: #FFFFFF;
    font-weight: 600;
}

.statement-accent {
    color: var(--accent-cyan);
    font-weight: 600;
}

.about-metrics-grid {
    display: grid;
    grid-cols: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
}

@media (min-width: 768px) {
    .about-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(215, 226, 234, 0.12);
    border-radius: 20px;
    padding: 1.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.metric-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.metric-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

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

/* --------------------------------------------------------------------------
   4. EXPERTISE SECTION (KIDUS HIGH-CONTRAST INVERTED LUXURY)
   -------------------------------------------------------------------------- */
.expertise-section {
    background: #FFFFFF;
    color: #0C0C0C;
    border-top-left-radius: clamp(36px, 5vw, 60px);
    border-top-right-radius: clamp(36px, 5vw, 60px);
    padding: 7rem 2rem 9rem 2rem;
    position: relative;
    z-index: 20;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.dark-text {
    color: #0C0C0C !important;
}

.expertise-list {
    border-bottom: 1px solid rgba(12, 12, 12, 0.15);
    margin-top: 2rem;
}

.expertise-item {
    border-top: 1px solid rgba(12, 12, 12, 0.15);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background-color 0.25s ease;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .expertise-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        padding: 3.5rem 2rem;
    }
}

.expertise-item:hover {
    background-color: rgba(12, 12, 12, 0.03);
}

.expertise-num {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 95px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #0C0C0C;
    flex-shrink: 0;
}

.expertise-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #0C0C0C;
}

.expertise-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 400;
    color: rgba(12, 12, 12, 0.65);
    max-width: 650px;
    line-height: 1.6;
}

.expertise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.skill-pill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(12, 12, 12, 0.15);
    color: rgba(12, 12, 12, 0.75);
    background: rgba(12, 12, 12, 0.04);
}

/* --------------------------------------------------------------------------
   5. SIGNATURE STACKING CARDS PROJECTS SHOWCASE (KIDUS FORMAT)
   -------------------------------------------------------------------------- */
.projects-section {
    background: var(--bg-dark);
    color: var(--text-primary);
    border-top-left-radius: clamp(36px, 5vw, 60px);
    border-top-right-radius: clamp(36px, 5vw, 60px);
    margin-top: -3.5rem;
    position: relative;
    z-index: 30;
    padding: 7rem 1.5rem 8rem 1.5rem;
}

.projects-intro {
    max-width: 1440px;
    margin: 0 auto 3rem auto;
}

.stacking-cards-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.project-sticky-wrapper {
    position: sticky;
    top: 5rem;
    height: 85vh;
    min-height: 600px;
    max-height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 1;
}

.project-card {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border: 2px solid var(--border-strong);
    border-radius: clamp(28px, 4vw, 50px);
    padding: clamp(1.25rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    transition: var(--transition);
}

.project-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(215, 226, 234, 0.15);
    flex-shrink: 0;
}

.project-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.project-index {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.05em;
}

.project-meta-titles {
    display: flex;
    flex-direction: column;
}

.project-role {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.project-name {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.project-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Dual Column Layout */
.project-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

@media (min-width: 860px) {
    .project-card-grid {
        grid-template-columns: 5fr 7fr;
        gap: 1.75rem;
    }
}

.project-grid-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    min-height: 0;
    justify-content: space-between;
}

.project-thumb-box {
    width: 100%;
    border-radius: clamp(18px, 2.5vw, 36px);
    overflow: hidden;
    background: #181818;
    border: 1px solid rgba(215, 226, 234, 0.2);
    position: relative;
    cursor: pointer;
}

.project-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-thumb-box:hover img {
    transform: scale(1.06);
}

.thumb-top {
    height: clamp(120px, 15vw, 200px);
    flex-shrink: 0;
}

.thumb-bottom {
    flex: 1;
    min-height: 120px;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.25s ease;
}

.project-thumb-box:hover .thumb-overlay {
    opacity: 1;
}

/* Main Hero Showcase Box */
.project-grid-main {
    width: 100%;
    height: 100%;
    border-radius: clamp(20px, 3vw, 40px);
    overflow: hidden;
    background: #181818;
    border: 1px solid rgba(215, 226, 234, 0.2);
    position: relative;
    cursor: pointer;
}

.project-grid-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-grid-main:hover img {
    transform: scale(1.04);
}

.main-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.3) 40%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
}

.overlay-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

.overlay-desc {
    font-size: 0.85rem;
    color: var(--text-primary);
    max-width: 480px;
    margin-top: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.overlay-expand-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    transition: var(--transition);
}

.project-grid-main:hover .overlay-expand-btn {
    background: var(--accent-cyan);
    color: #0C0C0C;
    border-color: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   6. 48-HOUR SIGNATURE SERVICE SECTION
   -------------------------------------------------------------------------- */
.service-section {
    padding: 7rem 2rem;
    background: #111111;
    border-top: 1px solid rgba(215, 226, 234, 0.1);
    border-bottom: 1px solid rgba(215, 226, 234, 0.1);
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .service-grid {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
    }
}

.service-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 65px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin: 1rem 0 1.5rem 0;
}

.italic-gradient {
    font-style: italic;
    background: linear-gradient(120deg, #FFFFFF 10%, #9CA3AF 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-pricing-box {
    margin-top: 2.5rem;
    background: #161616;
    border: 1px solid rgba(215, 226, 234, 0.18);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.pricing-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.deposit-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

.pricing-turnaround {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.big-hours {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
}

.hours-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(215, 226, 234, 0.12);
    border: 1px solid rgba(215, 226, 234, 0.12);
    border-radius: 20px;
    overflow: hidden;
    margin: 1.5rem 0 3rem 0;
}

@media (min-width: 580px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deliverable-item {
    background: #141414;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-cyan);
    color: #0C0C0C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.deliverable-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Workflow Steps */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 580px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .workflow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.workflow-card {
    background: #141414;
    border: 1px solid rgba(215, 226, 234, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    transition: var(--transition);
}

.workflow-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.6rem 0 0.3rem 0;
    color: #FFFFFF;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. SOCIAL MEDIA & POSTERS GALLERY
   -------------------------------------------------------------------------- */
.posters-section {
    padding: 7rem 2rem;
    background: var(--bg-dark);
}

.posters-container {
    max-width: 1400px;
    margin: 0 auto;
}

.posters-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.posters-desc {
    max-width: 480px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.posters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 580px) {
    .posters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .posters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.poster-card {
    background: #141414;
    border: 1px solid rgba(215, 226, 234, 0.12);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.poster-card:hover {
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.poster-image-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.poster-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.poster-card:hover .poster-image-wrap img {
    transform: scale(1.06);
}

.poster-caption {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.5) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poster-brand {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.poster-category {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   8. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 7rem 2rem 9rem 2rem;
    background: #0E0E0E;
    border-top: 1px solid rgba(215, 226, 234, 0.1);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 75px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

.contact-direct-card, .contact-form-card {
    background: #141414;
    border: 1px solid rgba(215, 226, 234, 0.14);
    border-radius: 28px;
    padding: clamp(1.75rem, 3vw, 3rem);
}

.direct-title, .form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.direct-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.direct-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direct-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    background: #1B1B1B;
    border: 1px solid rgba(215, 226, 234, 0.12);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.direct-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    color: #FFFFFF;
    transform: translateX(4px);
}

.whatsapp-btn:hover {
    border-color: #25D366;
}

.insta-btn:hover {
    border-color: #9CA3AF;
}

.form-btn:hover {
    border-color: var(--accent-cyan);
}

/* Contact Form */
.ajax-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    background: #1B1B1B;
    border: 1px solid rgba(215, 226, 234, 0.15);
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    background: #202020;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.spinner-hidden {
    display: none;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid var(--accent-cyan);
    color: #FFFFFF;
}

.form-feedback.error {
    display: block;
    background: rgba(255, 68, 68, 0.12);
    border: 1px solid #FF4444;
    color: #FFAAAA;
}

/* --------------------------------------------------------------------------
   SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(215, 226, 234, 0.12);
    padding: 3rem 2rem;
    position: relative;
    z-index: 40;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand p {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.footer-tagline {
    font-size: 0.7rem;
    color: rgba(215, 226, 234, 0.4);
    margin-top: 0.2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-link:hover {
    color: #FFFFFF;
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-weight: 600;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
}

.lightbox-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 2.5rem;
    color: #FFFFFF;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

.lightbox-content {
    background: #141414;
    border: 1px solid rgba(215, 226, 234, 0.2);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #0C0C0C;
}

.lightbox-caption {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(215, 226, 234, 0.1);
}

.lightbox-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
}

.lightbox-caption p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   BRANDING DISCOVERY BRIEF MODAL & INLINE SECTION
   -------------------------------------------------------------------------- */
.form-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.form-modal.active {
    display: flex;
}

.form-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.form-modal-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    height: 92vh;
    background: #141414;
    border: 1px solid rgba(215, 226, 234, 0.2);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.98);
}

.form-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: #181818;
    border-bottom: 1px solid rgba(215, 226, 234, 0.12);
}

.form-modal-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.form-modal-title h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.form-modal-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-modal-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.form-external-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.2s;
}

.form-external-link:hover {
    color: var(--accent-cyan);
}

.form-modal-close {
    font-size: 2.25rem;
    color: var(--text-muted);
    line-height: 1;
    transition: var(--transition);
}

.form-modal-close:hover {
    color: #FFFFFF;
    transform: rotate(90deg) scale(1.15);
}

.form-modal-body {
    flex: 1;
    position: relative;
    background: #0E1013;
    overflow-y: auto;
    padding: 2.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 240, 255, 0.3) transparent;
}

.form-modal-body::-webkit-scrollbar {
    width: 6px;
}
.form-modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.form-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 9999px;
}

/* On-Page Questionnaire Frame Card */
.questionnaire-inline-section {
    padding: 6rem 2rem 8rem 2rem;
    background: #0A0B0D;
    border-top: 1px solid rgba(215, 226, 234, 0.08);
}

.questionnaire-inline-container {
    max-width: 1120px;
    margin: 0 auto;
}

.questionnaire-inline-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.questionnaire-frame-card {
    background: #111317;
    border: 1px solid rgba(215, 226, 234, 0.16);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.frame-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 2rem;
    background: #16181E;
    border-bottom: 1px solid rgba(215, 226, 234, 0.1);
}

.frame-card-dots {
    display: flex;
    gap: 0.45rem;
}

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

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.frame-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.frame-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.frame-card-body {
    background: #0E1013;
    overflow: visible;
    height: auto;
    padding: 2.75rem;
}

/* ==========================================================================
   NATIVE BRANDING DISCOVERY QUESTIONNAIRE COMPONENT
   ========================================================================== */
.brand-questionnaire-form {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.q-block {
    background: rgba(22, 25, 31, 0.7);
    border: 1px solid rgba(215, 226, 234, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.q-block:hover {
    border-color: rgba(215, 226, 234, 0.18);
    background: rgba(24, 28, 35, 0.85);
}

.q-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(215, 226, 234, 0.08);
}

.q-step-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(35, 41, 52, 0.8) 100%);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    flex-shrink: 0;
}

.q-block-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.q-block-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.q-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.q-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.q-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #D7E2EA;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.q-req {
    color: var(--accent-cyan);
}

.q-helper {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.q-field input,
.q-field select,
.q-field textarea {
    background: #090B0E;
    border: 1px solid rgba(215, 226, 234, 0.14);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.q-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300F0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.q-field select option {
    background: #14171D;
    color: #FFFFFF;
}

.q-field input:focus,
.q-field select:focus,
.q-field textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
    background: #0C0E12;
}

.q-field input::placeholder,
.q-field textarea::placeholder {
    color: rgba(215, 226, 234, 0.35);
}

/* Interactive Chips (Brand Vibes) */
.q-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

.q-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(215, 226, 234, 0.14);
    color: var(--text-primary);
    border-radius: 9999px;
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.q-chip:hover {
    border-color: rgba(0, 240, 255, 0.5);
    color: #FFFFFF;
    background: rgba(0, 240, 255, 0.08);
    transform: translateY(-1px);
}

.q-chip.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(30, 36, 46, 0.9) 100%);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    font-weight: 600;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.22);
}

/* Package Selection Grid */
.q-package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.q-package-card {
    background: #090B0E;
    border: 1px solid rgba(215, 226, 234, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    position: relative;
}

.q-package-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
    background: #0D1015;
}

.q-package-card.selected {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.12);
}

.q-pkg-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.q-pkg-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.q-pkg-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(215, 226, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: var(--transition);
}

.q-package-card.selected .q-pkg-check {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #0C0C0C;
    font-weight: 700;
}

.q-pkg-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.q-pkg-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Actions Row */
.q-actions-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-top: 0.5rem;
}

.q-submit-btn {
    width: 100%;
    max-width: 480px;
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-security-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.q-badge-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Feedback Box */
.q-feedback-box {
    border-radius: 18px;
    padding: 1.75rem;
    margin-top: 1rem;
    animation: fadeIn 0.4s ease forwards;
}

.q-feedback-box.success {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.15);
}

.q-feedback-box.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #F87171;
}

.q-success-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.q-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00F0FF, #3B82F6);
    color: #0C0C0C;
    font-size: 1.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.q-success-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
}

.q-success-msg {
    font-size: 0.95rem;
    color: var(--text-primary);
    max-width: 550px;
    line-height: 1.6;
}

.q-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-whatsapp-direct {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #0C0C0C;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-direct:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #000000;
}


/* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
    .desktop-nav {
        display: none;
    }

    .project-sticky-wrapper {
        position: relative;
        top: 0 !important;
        height: auto;
        min-height: unset;
        max-height: unset;
        margin-bottom: 2rem;
    }

    .project-card {
        height: auto;
    }

    .project-grid-main {
        min-height: 260px;
    }

    .hero-orbit-stage {
        overflow: hidden;
        touch-action: pan-y;
    }

    .form-modal-container {
        height: 96vh;
        border-radius: 20px;
    }

    .form-modal-body {
        padding: 1.25rem;
    }

    .frame-card-body {
        height: auto;
        padding: 1.25rem;
    }

    .q-block {
        padding: 1.25rem;
    }

    .q-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .q-package-grid {
        grid-template-columns: 1fr;
    }

    .q-submit-btn {
        max-width: 100%;
    }

    /* Mobile Header adjustments */
    .header-container {
        padding: 0.85rem 1.25rem;
    }

    .header-reserve-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Hero bottom layout on phones */
    .hero-bottom-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1.25rem 2rem 1.25rem;
        text-align: center;
    }

    .hero-tagline-col {
        max-width: 100%;
    }

    .hero-spin-hint {
        display: flex !important;
    }

    .hero-cta-col {
        width: 100%;
    }

    .hero-cta-col .btn-pill-gradient {
        width: 100%;
    }

    /* Mobile bottom dock visibility */
    .mobile-bottom-dock {
        display: flex !important;
    }

    /* Prevent iOS auto-zoom on input focus */
    .q-field input,
    .q-field select,
    .q-field textarea,
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }

    /* Mobile Bottom Sheet Modal */
    .form-modal {
        align-items: flex-end;
        padding: 0;
    }

    .form-modal-container {
        width: 100%;
        max-width: 100%;
        height: 90vh;
        max-height: 90vh;
        border-radius: 24px 24px 0 0;
        border-bottom: none;
    }

    .form-modal-header {
        padding: 1rem 1.25rem;
    }

    .form-modal-actions .form-external-link {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   PHONE INTERACTIVE CONTROLS (HAMBURGER, DRAWER, DOCK, TOASTS)
   -------------------------------------------------------------------------- */
/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(215, 226, 234, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:active {
    transform: scale(0.92);
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--accent-cyan);
}

.hamburger-bar {
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle.active .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background: var(--accent-cyan);
}

.mobile-menu-toggle.active .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--accent-cyan);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
}

.mobile-nav-drawer.active {
    display: block;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 7, 9, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease forwards;
}

.mobile-drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(85vw, 360px);
    background: #0E1014;
    border-left: 1px solid rgba(215, 226, 234, 0.14);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    justify-content: space-between;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(215, 226, 234, 0.1);
}

.mobile-drawer-close {
    font-size: 2rem;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #D7E2EA;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
    color: #FFFFFF;
    background: rgba(0, 240, 255, 0.08);
    transform: translateX(4px);
}

.m-num {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 700;
    font-family: var(--font-body);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(215, 226, 234, 0.1);
}

.mobile-drawer-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.m-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.m-wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25D366;
}

.m-wa:active {
    background: #25D366;
    color: #000000;
}

.m-call {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
}

.m-call:active {
    background: var(--accent-cyan);
    color: #000000;
}

/* Floating Mobile Bottom Action Dock */
.mobile-bottom-dock {
    display: none;
    position: fixed;
    bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    background: rgba(14, 16, 21, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(215, 226, 234, 0.2);
    border-radius: 9999px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 240, 255, 0.15);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    max-width: calc(100% - 1.5rem);
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-dock.dock-hidden {
    transform: translate(-50%, 140%);
    opacity: 0;
    pointer-events: none;
}

.dock-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 0.95rem;
    border-radius: 9999px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.dock-btn:active {
    transform: scale(0.94);
}

.dock-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.dock-primary {
    background: var(--gradient-btn);
    color: #FFFFFF;
    border: 1px solid rgba(0, 240, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
    position: relative;
    padding: 0.65rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
}

.dock-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dock-call {
    background: rgba(255, 255, 255, 0.06);
    color: #D7E2EA;
    border: 1px solid rgba(215, 226, 234, 0.15);
}

/* Mobile Tactile Interaction Toast */
.mobile-orbit-toast {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-25px);
    background: rgba(14, 16, 20, 0.94);
    border: 1px solid var(--accent-cyan);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.35rem;
    border-radius: 9999px;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-orbit-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mobile-orbit-toast .toast-icon {
    color: var(--accent-cyan);
}

/* Hero spin hint styling */
.hero-spin-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.12);
}

.hero-spin-hint .spin-icon {
    animation: spinSlow 4s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Global Mobile Touch Polish */
button, a, .orbit-token, .q-chip, .q-package-card {
    -webkit-tap-highlight-color: transparent;
}


