/* =================================================================
   Phoenix Edis - V5 Neon Tech-Forward
   ================================================================= */

/* ----------------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
    /* Core palette */
    --bg-deep:        #0a0e1a;
    --bg-surface:     #0f1424;
    --bg-elevated:    #151b30;
    --bg-card:        rgba(15, 20, 40, 0.6);

    /* Neon accents */
    --neon-cyan:      #00e5ff;
    --neon-blue:      #3d5afe;
    --neon-magenta:   #e040fb;
    --neon-cyan-dim:  rgba(0, 229, 255, 0.15);
    --neon-magenta-dim: rgba(224, 64, 251, 0.1);

    /* Text */
    --text-primary:   #e8ecf4;
    --text-secondary: #8892a8;
    --text-muted:     #505a70;

    /* Glass */
    --glass-bg:       rgba(15, 20, 40, 0.65);
    --glass-border:   rgba(0, 229, 255, 0.12);
    --glass-border-hover: rgba(0, 229, 255, 0.3);

    /* Shadows & Glows */
    --glow-cyan:      0 0 20px rgba(0, 229, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1);
    --glow-cyan-sm:   0 0 10px rgba(0, 229, 255, 0.2);
    --glow-magenta:   0 0 20px rgba(224, 64, 251, 0.3), 0 0 60px rgba(224, 64, 251, 0.1);
    --glow-text:      0 0 20px rgba(0, 229, 255, 0.5), 0 0 40px rgba(0, 229, 255, 0.2);

    /* Sizing */
    --nav-height:     72px;
    --container-max:  1200px;
    --radius:         12px;
    --radius-sm:      8px;
    --radius-lg:      20px;

    /* Fonts */
    --font-heading:   'Chakra Petch', sans-serif;
    --font-body:      'Manrope', sans-serif;
    --font-mono:      'JetBrains Mono', monospace;

    /* Transitions */
    --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
    --transition:     0.3s var(--ease-out);
}

/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ----------------------------------------------------------------
   Utility Classes
   ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.8em;
    letter-spacing: 0.02em;
}

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

.section-tag {
    display: inline-block;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 56px;
    line-height: 1.75;
}

/* ----------------------------------------------------------------
   Animated Background
   ---------------------------------------------------------------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 30s linear infinite;
    pointer-events: none;
}

@keyframes gridShift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.bg-glow--1 {
    background: var(--neon-cyan);
    top: -200px;
    right: -100px;
    opacity: 0.12;
    animation: floatGlow1 20s ease-in-out infinite;
}

.bg-glow--2 {
    background: var(--neon-magenta);
    bottom: -200px;
    left: -150px;
    opacity: 0.08;
    animation: floatGlow2 25s ease-in-out infinite;
}

@keyframes floatGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-60px, 80px) scale(1.15); }
}

@keyframes floatGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(80px, -60px) scale(1.1); }
}

/* ----------------------------------------------------------------
   Navigation
   ---------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--glass-border), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1001;
}

.nav__logo-icon {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--neon-cyan);
    background: var(--neon-cyan-dim);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.nav__logo-text .accent {
    font-weight: 400;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan-sm);
    transition: width var(--transition);
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__links a:not(.nav__cta):hover::after {
    width: 100%;
}

.nav__cta {
    color: var(--neon-cyan) !important;
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__cta:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan-sm);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.btn--primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.4), var(--glow-cyan);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--ghost:hover {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.05);
    color: var(--neon-cyan);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

/* ----------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-cyan);
    background: var(--neon-cyan-dim);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.hero__tag-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 229, 255, 0); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title-glow {
    color: var(--neon-cyan);
    text-shadow: var(--glow-text);
}

.hero__subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Code Window */
.hero__visual {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
}

.hero__code-window {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.code-window__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.code-window__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-window__dot--red    { background: #ff5f57; }
.code-window__dot--yellow { background: #ffbd2e; }
.code-window__dot--green  { background: #28ca41; }

.code-window__filename {
    margin-left: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.code-window__body {
    padding: 20px;
    font-size: 0.85rem;
    line-height: 1.9;
}

.code-line {
    white-space: pre;
}

.code-tag  { color: var(--neon-cyan); }
.code-attr { color: var(--neon-magenta); }
.code-str  { color: #ffd740; }
.code-glow-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.blink {
    animation: blink 1s step-end infinite;
    color: var(--neon-cyan);
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ----------------------------------------------------------------
   About Section
   ---------------------------------------------------------------- */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.about__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: center;
}

.about__photo-wrapper {
    position: relative;
}

.about__photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--glass-border);
}

.about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s var(--ease-out);
}

.about__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 229, 255, 0.2) 0%,
        rgba(224, 64, 251, 0.15) 100%
    );
    mix-blend-mode: color;
    transition: opacity 0.6s var(--ease-out);
}

.about__photo-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.06) 2px,
        rgba(0, 0, 0, 0.06) 4px
    );
    pointer-events: none;
    opacity: 0.6;
}

.about__photo-wrapper:hover .about__photo {
    filter: grayscale(30%) contrast(1.05);
}

.about__photo-wrapper:hover .about__photo-overlay {
    opacity: 0.6;
}

.about__photo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.about__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--glow-cyan-sm);
}

.stat-card__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ----------------------------------------------------------------
   Services Section
   ---------------------------------------------------------------- */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.03) 0%, transparent 40%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--glow-cyan-sm);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(0, 229, 255, 0.04);
}

.service-card--featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    background: var(--neon-cyan-dim);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    letter-spacing: 0.05em;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-cyan-dim);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--neon-cyan);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    box-shadow: var(--glow-cyan-sm);
    border-color: rgba(0, 229, 255, 0.3);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__list li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding-left: 20px;
    position: relative;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

/* ----------------------------------------------------------------
   Portfolio / Work Section
   ---------------------------------------------------------------- */
.work {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.work__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.project-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), var(--glow-cyan-sm);
}

.project-card__preview {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.project-card__placeholder--alt1 {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b1b3a 100%);
}

.project-card__placeholder--alt2 {
    background: linear-gradient(135deg, #0a1628 0%, #132035 100%);
}

.project-card__placeholder--alt3 {
    background: linear-gradient(135deg, #110d20 0%, #1a1030 100%);
}

/* Wireframe mockups inside portfolio cards */
.project-card__mockup {
    width: 85%;
    height: 80%;
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--transition);
}

.project-card:hover .project-card__mockup {
    border-color: rgba(0, 229, 255, 0.25);
}

.mockup-nav {
    height: 8px;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 2px;
}

.mockup-hero {
    height: 40%;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.mockup-hero-full {
    height: 45%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(224, 64, 251, 0.04));
    border-radius: 4px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
}

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

.mockup-grid > div {
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.06);
    border-radius: 3px;
}

.mockup-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.mockup-text-block {
    background: rgba(0, 229, 255, 0.04);
    border-radius: 4px;
    border: 1px dashed rgba(0, 229, 255, 0.08);
}

.mockup-img-block {
    background: rgba(224, 64, 251, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(224, 64, 251, 0.08);
}

.mockup-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    flex: 1;
}

.mockup-cards > div {
    background: rgba(0, 229, 255, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.06);
}

.mockup-footer {
    height: 12px;
    background: rgba(0, 229, 255, 0.04);
    border-radius: 2px;
}

.project-card__preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card__coming-soon {
    position: absolute;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: var(--glow-text);
}

.project-card__info {
    padding: 24px 28px 28px;
}

.project-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.project-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.7rem;
    color: var(--neon-cyan);
    background: var(--neon-cyan-dim);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.12);
    letter-spacing: 0.03em;
}

/* ----------------------------------------------------------------
   Contact Section
   ---------------------------------------------------------------- */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact__detail svg {
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.contact__response {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.contact__response-dot {
    width: 6px;
    height: 6px;
    background: #28ca41;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(40, 202, 65, 0.4);
}

/* Form */
.contact__form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), var(--glow-cyan-sm);
}

.form-input--textarea {
    resize: vertical;
    min-height: 120px;
}

/* Disabled Form */
.contact__form--disabled {
    position: relative;
    cursor: pointer;
}

.contact__form--disabled .form-input,
.contact__form--disabled .btn {
    pointer-events: none;
}

.contact__form-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.contact__form--disabled:hover .contact__form-overlay,
.contact__form-overlay--visible {
    opacity: 1;
}

.contact__form-overlay-msg {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.contact__form-overlay-msg svg {
    color: var(--neon-cyan);
    margin-bottom: 4px;
}

.contact__form-overlay-msg p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact__form-email {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-decoration: none;
    padding: 8px 24px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    pointer-events: auto;
}

.contact__form-email:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan-sm);
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

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

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* ----------------------------------------------------------------
   Scroll Reveal Animation
   ---------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ----------------------------------------------------------------
   Responsive - Tablet
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 48px;
        padding-top: 140px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        max-width: 420px;
        width: 100%;
    }

    .about__grid {
        grid-template-columns: 280px 1fr;
        gap: 48px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .work__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ----------------------------------------------------------------
   Responsive - Mobile
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        border-left: 1px solid var(--glass-border);
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__links a {
        font-size: 1.1rem;
    }

    .nav__cta {
        text-align: center;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero__visual {
        max-width: 100%;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__photo-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .stat-card__number {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .footer__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact__form {
        padding: 24px 20px;
    }
}

/* ----------------------------------------------------------------
   Reduced Motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .bg-grid {
        animation: none;
    }
}
