/* ============================================
   OOG Agency - Styles
   ============================================ */

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

:root {
    --orange: #f39200;
    --orange-light: #ffb74d;
    --orange-dark: #c77700;
    --grey-900: #0a0a0a;
    --grey-800: #141414;
    --grey-700: #1e1e1e;
    --grey-600: #2a2a2a;
    --grey-500: #3a3a3a;
    --grey-400: #646363;
    --grey-300: #949494;
    --grey-200: #b0b0b0;
    --grey-100: #d4d4d4;
    --white: #f5f5f5;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-med: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--grey-900);
    color: var(--grey-100);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

input, textarea, select {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,146,0,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-med);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-200);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition-med);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-link-cta {
    background: var(--orange);
    color: var(--grey-900) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 146, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.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);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(243, 146, 0, 0.2);
    background: rgba(243, 146, 0, 0.05);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 32px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
    white-space: nowrap;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--white) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent {
    -webkit-text-fill-color: var(--orange);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-300);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--grey-900);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 146, 0, 0.35);
}

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

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    display: inline;
}

.hero-stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-300);
    margin-top: 4px;
}

/* Hero Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--grey-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Marquee --- */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee {
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-separator {
    color: var(--orange);
    font-size: 1.2rem;
}

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

/* --- Sections Common --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--grey-300);
    max-width: 500px;
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--grey-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(243,146,0,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.service-card:hover {
    border-color: rgba(243,146,0,0.2);
    transform: translateY(-4px);
}

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

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(243, 146, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-card-tags span {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    color: var(--grey-300);
    border: 1px solid rgba(255,255,255,0.06);
}

/* --- Work Section --- */
.work {
    padding: 120px 0 0;
}

.work-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual project */
.work-project {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.work-project:last-child {
    border-bottom: none;
}

.work-project-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}

.work-project:nth-child(even) .work-project-inner {
    direction: rtl;
}

.work-project:nth-child(even) .work-project-inner > * {
    direction: ltr;
}

/* Browser mockup */
.work-project-browser {
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey-700);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 4px 6px rgba(0,0,0,0.1),
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.03) inset;
    transition: all 0.6s var(--ease-out-expo);
}

.work-project:hover .work-project-browser {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(0,0,0,0.15),
        0 40px 80px rgba(0,0,0,0.4),
        0 0 80px rgba(243,146,0,0.06),
        0 0 0 1px rgba(243,146,0,0.1) inset;
}

.work-project-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--grey-800);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: var(--grey-400);
    background: rgba(255,255,255,0.04);
    padding: 5px 16px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    letter-spacing: 0.02em;
}

.work-project-frame {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.work-project-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    border: none;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
}

/* Project info */
.work-project-info {
    position: relative;
}

.work-project-num {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    margin-bottom: -20px;
    letter-spacing: -0.05em;
}

.work-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.work-project-tags span {
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(243,146,0,0.1);
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(243,146,0,0.15);
}

.work-project-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.work-project-desc {
    font-size: 0.95rem;
    color: var(--grey-300);
    line-height: 1.7;
    margin-bottom: 24px;
}

.work-project-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}

.work-project-meta-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 4px;
}

.work-project-meta-value {
    font-size: 0.85rem;
    color: var(--grey-200);
}

.work-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition-fast);
}

.work-project-link:hover {
    background: var(--orange);
    color: var(--grey-900);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243,146,0,0.3);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    background: var(--grey-800);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-med);
}

.process-step:hover {
    border-color: rgba(243,146,0,0.2);
    transform: translateX(8px);
}

.process-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    min-width: 48px;
}

.process-step:hover .process-step-number {
    opacity: 1;
}

.process-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    background: var(--grey-800);
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    color: var(--orange);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--grey-100);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--grey-900);
    font-size: 0.9rem;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--grey-300);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--grey-200);
    transition: color var(--transition-fast);
}

.contact-detail:hover {
    color: var(--orange);
}

.contact-detail svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--grey-800);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--grey-400);
}

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23949494' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--grey-800);
    color: var(--white);
}

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

/* --- Footer --- */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--grey-300);
    max-width: 280px;
}

.footer-links-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: var(--grey-300);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--grey-400);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-300);
    transition: all var(--transition-fast);
}

.footer-social:hover {
    background: var(--orange);
    color: var(--grey-900);
    transform: translateY(-2px);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic hover effect for cards */
.service-card,
.work-card,
.process-step {
    will-change: transform;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .work-project-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .work-project:nth-child(even) .work-project-inner {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-med);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        white-space: nowrap;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

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

    .work-project-frame {
        height: 260px;
    }

    .work-project-meta {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

/* --- Utility: Smooth reveal for staggered items --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection color */
::selection {
    background: rgba(243, 146, 0, 0.3);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--grey-900);
}

::-webkit-scrollbar-thumb {
    background: var(--grey-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--grey-400);
}
