/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --neon: #ccff02;
    --bg: #0D0B2E;
    --bg2: #110E38;
    --secondary: #211c72;
    --card: #15123A;
    --card2: #1C1852;
    --text: #FFFFFF;
    --muted: #A0A3BD;
    --border: rgba(204, 255, 2, 0.12);
    --border2: rgba(255, 255, 255, 0.06);
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Syne', sans-serif;
    --glow: 0 0 40px rgba(204, 255, 2, 0.15);
    --glow-sm: 0 0 20px rgba(204, 255, 2, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(204, 255, 2, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-ring.hover {
    width: 52px;
    height: 52px;
    opacity: 0.6;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

/* ============================================
   GRID BACKGROUND
   ============================================ */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(204, 255, 2, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 2, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   TYPOGRAPHY UTILS
   ============================================ */
.mono {
    font-family: var(--font-mono);
}

.neon {
    color: var(--neon);
}

.muted {
    color: var(--muted);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 2px;
}

/* ============================================
   NAV
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border2);
    background: rgba(13, 11, 46, 0.85);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-logo:hover {
    opacity: 0.88;
    transform: scale(1.03);
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(204, 255, 2, 0.25));
}

.nav-logo span {
    color: var(--neon);
}

.nav-logo .bracket {
    color: var(--muted);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon);
    transition: width 0.25s;
}

.nav-links a:hover {
    color: var(--neon);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--neon);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 255, 2, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg2);
        padding: 32px 5%;
        border-bottom: 1px solid var(--border);
        gap: 24px;
    }

    .nav-links.open a {
        font-size: 1rem;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--neon);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--neon);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 28, 114, 0.6) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 255, 2, 0.06) 0%, transparent 70%);
    bottom: 0;
    left: 10%;
    pointer-events: none;
    animation: pulse-glow 5s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-glow {
    from {
        transform: scale(1);
        opacity: 0.8;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }
}

.hero-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--neon);
    background: rgba(204, 255, 2, 0.08);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 1.4s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-h1 em {
    font-style: normal;
    color: var(--neon);
    position: relative;
}

.hero-h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-sub {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--neon);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(204, 255, 2, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border2);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* Hero Code Window */
.hero-code {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), var(--glow);
    animation: fadeInRight 0.8s 0.2s ease both;
}

.code-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border2);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ff5f57;
}

.code-dot.yellow {
    background: #febc2e;
}

.code-dot.green {
    background: #28c840;
}

.code-filename {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    margin-left: 8px;
}

.code-body {
    padding: 28px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
}

.ln {
    color: rgba(160, 163, 189, 0.35);
    margin-right: 20px;
    user-select: none;
    min-width: 16px;
    text-align: right;
}

.kw {
    color: #c792ea;
}

.fn {
    color: #82aaff;
}

.str {
    color: var(--neon);
}

.obj {
    color: #ffcb6b;
}

.cm {
    color: rgba(160, 163, 189, 0.45);
}

.pu {
    color: #89ddff;
}

.cursor-blink {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--neon);
    margin-left: 2px;
    animation: blink 1s ease infinite;
    vertical-align: middle;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-code {
        display: none;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    padding: 120px 5%;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 255, 2, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--glow-sm);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    color: var(--neon);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--neon);
    background: rgba(204, 255, 2, 0.08);
    border: 1px solid rgba(204, 255, 2, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.service-card .card-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(160, 163, 189, 0.25);
    letter-spacing: 0.1em;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process {
    padding: 120px 5%;
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
}

.process-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0.3;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--neon);
    color: var(--bg);
    box-shadow: var(--glow);
}

.step-icon {
    font-size: 1.4rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 24px;
    right: -10px;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: rgba(204, 255, 2, 0.4);
    z-index: 2;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHY DTD
   ============================================ */
#why {
    padding: 120px 5%;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.why-feature {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 24px;
    transition: border-color 0.2s;
}

.why-feature:hover {
    border-color: var(--border);
}

.why-feature .icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
}

.why-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}

.why-terminal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border2);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
}

.terminal-body {
    padding: 28px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 2;
}

.t-prompt {
    color: var(--neon);
}

.t-cmd {
    color: var(--text);
}

.t-out {
    color: var(--muted);
}

.t-success {
    color: #4ade80;
}

.t-line {
    margin: 2px 0;
}

@media (max-width: 900px) {
    .why-inner {
        grid-template-columns: 1fr;
    }

    .why-terminal {
        order: -1;
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
#portfolio {
    padding: 120px 5%;
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
}

.portfolio-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.project-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), var(--glow-sm);
}

.project-preview {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-preview .mock-browser {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.mock-bar {
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    flex-shrink: 0;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-dot.r {
    background: #ff5f57;
}

.mock-dot.y {
    background: #febc2e;
}

.mock-dot.g {
    background: #28c840;
}

.mock-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 8px;
}

/* Project 1: SaaS Dashboard */
.project-1 .mock-content {
    background: linear-gradient(135deg, #0a1a0a 0%, #0a2a1a 100%);
}

.mock-hero-block {
    height: 40px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 6px;
    opacity: 0.8;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    flex: 1;
}

.mock-card-sm {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-row {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 6px;
}

.mock-row.short {
    width: 60%;
}

.mock-row.neon {
    background: rgba(204, 255, 2, 0.3);
}

/* Project 2: Restaurant */
.project-2 .mock-content {
    background: linear-gradient(135deg, #1a0f00 0%, #2d1a00 100%);
}

.mock-hero-img {
    height: 50px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 6px;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.mock-hero-img::after {
    content: 'MENU';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
}

.mock-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mock-card-rect {
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
}

/* Project 3: Startup */
.project-3 .mock-content {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
}

.mock-nav-sm {
    height: 18px;
    background: rgba(204, 255, 2, 0.1);
    border-radius: 3px;
    border: 1px solid rgba(204, 255, 2, 0.2);
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.mock-h {
    height: 24px;
    background: linear-gradient(90deg, rgba(204, 255, 2, 0.6), rgba(204, 255, 2, 0.2));
    border-radius: 3px;
}

.mock-txt-sm {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mock-btn-sm {
    height: 16px;
    width: 80px;
    background: rgba(204, 255, 2, 0.7);
    border-radius: 3px;
}

.project-info {
    padding: 24px;
}

.project-domain {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--neon);
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.project-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
    padding: 120px 5%;
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: border-color 0.2s, transform 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(204, 255, 2, 0.1);
    line-height: 1;
}

.testimonial-stars {
    color: var(--neon);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--bg);
}

.av1 {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Royal Purple to Soft Pink - Premium & Creative */
.av2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Sunset Orange to Deep Magenta - Bold & Energetic */
.av3 {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
}

.author-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.author-role {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta {
    padding: 120px 5%;
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.cta-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s ease infinite;
}

#cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

#cta p {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: #25D366;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

.cta-note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 24px;
    letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid var(--border2);
    padding: 48px 5%;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--neon);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--neon);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
}

/* Official Brand Colors */
.fab-wa {
    background-color: #25D366;
}

.fab-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-wa {
    background: #25D366;
}

.fab-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.01);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(160, 163, 189, 0.4);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
}

.marquee-item .sep {
    color: var(--neon);
    opacity: 0.6;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   WHY FEATURES SECTION - layout fix
   ============================================ */
.why-left {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .why-features {
        grid-template-columns: 1fr;
    }
}
