/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-1: #ff007f; /* Neon Pink */
    --accent-2: #00f0ff; /* Neon Cyan */
    --accent-3: #7000ff; /* Deep Purple */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-dim: #999999;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glow: 0 0 20px rgba(124, 77, 255, 0.3);
}

/* Cinematic Grain */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

#bg-canvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

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

html {
    scroll-behavior: initial; /* Lenis handles this */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--accent-1);
    color: white;
}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-2);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-1);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 127, 0.1);
    border-color: transparent;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
========================================= */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.gradient-text {
    color: var(--accent-1); /* Solid Vibrant Pink for Visibility */
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
    display: inline-block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
}

/* =========================================
   PRELOADER
========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.loader-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.progress-bar {
    width: 300px;
    height: 2px;
    background: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--accent-1);
    box-shadow: 0 0 10px var(--accent-1);
}

/* =========================================
   HEADER
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent-1);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-2);
}

.menu-trigger {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.menu-trigger span {
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-trigger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-1), var(--accent-3));
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    color: white !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent-2);
    background: rgba(0, 240, 255, 0.05);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
    z-index: 10;
    max-width: 900px;
}

.hero-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5; /* Portrait Aspect Ratio for professional branding */
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-1);
    opacity: 0.2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.2);
}

.personal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Center horizontally, align to top to avoid cutting the head */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-frame:hover .personal-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.whatsapp-color {
    background: #25D366 !important;
    border-color: #25D366 !important;
}

/* Hero Background Elements */
.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* =========================================
   EXPERTISE (BENTO GRID)
 ========================================= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Brand Scroller */
.brand-scroller {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
}

.scroller-inner {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.scroller-inner span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 4rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.scroller-inner span:hover {
    opacity: 1;
    color: var(--accent-2);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================
   EXPERTISE (BENTO GRID)
========================================= */
.expertise {
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-item.wide::before {
    background: radial-gradient(circle at top right, rgba(255, 0, 127, 0.1), transparent 70%);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-2);
}

.bento-item.wide .bento-icon {
    color: var(--accent-1);
}

.bento-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* =========================================
   PROJECTS SECTION
========================================= */
.projects {
    padding: 8rem 5%;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-card:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.project-card:nth-child(even) .project-image {
    order: 2;
}

.project-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16/10;
}

.glass-visualizer {
    background: var(--bg-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-visualizer::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.visual-1::before { background: var(--accent-1); }
.visual-2::before { background: var(--accent-2); }
.visual-3::before { background: var(--accent-3); }

.glass-visualizer::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: rotate(15deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .glass-visualizer::after {
    transform: rotate(0deg) scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.roi-badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-2);
}

.project-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* =========================================
   PROCESS SECTION
 ========================================= */
.process {
    padding: 8rem 5%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    transition: transform 0.4s ease;
}

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

.step-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-1);
    background: rgba(255, 0, 127, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-block;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* =========================================
   TESTIMONIALS SECTION
 ========================================= */
.testimonials {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.testimonial-slider-container {
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 300%; /* For 3 items */
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 60px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    margin: 0;
    width: 100%;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-1);
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
    font-style: italic;
    color: #fff;
    font-family: var(--font-heading);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-2);
}

.client-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
    background: var(--accent-1);
    transform: scale(1.3);
}

/* =========================================
   FAQ SECTION
 ========================================= */
.faq {
    padding: 8rem 5%;
}

.container.small {
    max-width: 800px;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.4s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--accent-2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    transition: max-height 0.4s ease-out, padding 0.4s;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 0 0.5rem 0;
}

/* =========================================
   CONTACT / FOOTER
 ========================================= */
.contact {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 5%;
    position: relative;
    background: linear-gradient(to top, rgba(112, 0, 255, 0.05), transparent);
}

.huge-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.contact p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0);
}

.contact-btn:hover {
    background: white;
    color: black;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 20px rgba(255, 255, 255, 0.4);
}

.contact-btn i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-btn:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-card, .project-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .project-card:nth-child(even) .project-image {
        order: 0;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-trigger { display: flex; }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-cta { justify-content: center; }
    .hero-image-frame { max-width: 300px; margin: 0 auto; }
    .hero-cta { flex-direction: column; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.wide { grid-column: span 1; }
    .process-grid { grid-template-columns: 1fr; }
    .cursor-dot, .cursor-outline { display: none; }
    * { cursor: default; }
}

/* =========================================
   FOMO TOAST
 ========================================= */
.fomo-toast {
    position: fixed;
    bottom: 30px;
    left: -400px; /* Start off-screen */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 10000;
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 320px;
}

.fomo-toast.active {
    left: 30px;
}

.toast-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.toast-content p {
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.toast-content span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* =========================================
   STICKY CTA
 ========================================= */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.sticky-cta:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
    border-color: white;
}

.cta-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-icon {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .sticky-cta {
        padding: 1rem;
        right: 20px;
        bottom: 20px;
    }
    .cta-text { display: none; }
}

/* =========================================
   PROJECT MODAL
 ========================================= */
.project-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    padding: 4rem;
    border-radius: 40px;
    z-index: 2;
    transform: translateY(100px);
    opacity: 0;
}

.modal-close {
    position: absolute;
    top: 30px; right: 30px;
    background: none; border: none;
    font-size: 1.5rem; color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-close:hover { transform: rotate(90deg); }

.modal-metric {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-2);
    color: black;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.modal-body h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.modal-cta {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
}

@media (max-width: 768px) {
    .modal-content { padding: 2rem; }
    .modal-info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .modal-body h2 { font-size: 2rem; }
}

/* Cursor Glow on Project Hover */
.project-card:hover ~ .cursor-outline {
    border-color: var(--accent-2);
    box-shadow: 0 0 20px var(--accent-2);
}
