:root {
    /* Color Palette */
    --bg-dark: #07070a;
    --bg-card: rgba(20, 20, 30, 0.4);
    --bg-card-hover: rgba(30, 30, 45, 0.7);
    
    --text-primary: #f8f9fa;
    --text-secondary: #9ca3af;
    
    --accent-primary: #3b82f6; /* Blue */
    --accent-secondary: #8b5cf6; /* Violet */
    --accent-tertiary: #ec4899; /* Pink */
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(139, 92, 246, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid var(--accent-tertiary);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(236, 72, 153, 0.1);
    border-color: transparent;
}

/* Particles */
#particles-js {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small, .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary::before, .btn-primary-small::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-primary:hover::before, .btn-primary-small:hover::before {
    opacity: 1;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary-small):::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background: var(--accent-primary);
    transition: width 0.3s;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: none;
}

/* Main Layout */
main {
    padding-top: 80px;
}

section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 95vh;
    gap: 50px;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: var(--accent-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.subtitle {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.role {
    font-size: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 30px;
    height: 40px; /* fixed height for typed js */
}

#typed-text {
    color: var(--accent-primary);
    font-weight: 600;
}

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

.hero-cta {
    display: flex;
    gap: 20px;
}

.glow-effect {
    box-shadow: 0 0 20px var(--accent-primary);
    animation: glowing 3s infinite;
}

@keyframes glowing {
    0% { box-shadow: 0 0 10px var(--accent-primary); }
    50% { box-shadow: 0 0 25px var(--accent-secondary); }
    100% { box-shadow: 0 0 10px var(--accent-primary); }
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.center-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--accent-primary), var(--accent-secondary), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: rotateSphere 20s linear infinite;
    z-index: 1;
}

@keyframes rotateSphere {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.orb-1 {
    width: 200px; height: 200px;
    background: var(--accent-tertiary);
    opacity: 0.3;
    top: 5%; right: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px; height: 250px;
    background: var(--accent-primary);
    opacity: 0.3;
    bottom: 5%; left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.glass-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    width: 300px;
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    z-index: -1;
}

.card-1 {
    top: 15%;
    left: 5%;
    animation: float-delayed 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
}

.card-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(30px);
}

.crypto-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transform: translateZ(20px);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    transform: translateZ(10px);
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(139,92,246,0.15), transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--accent-secondary);
    margin-bottom: 30px;
    transition: var(--transition-normal);
    transform: translateZ(30px);
}

.feature-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    transform: translateZ(40px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateZ(20px);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    transform: translateZ(10px);
}

/* Services Section */
.services-section {
    display: flex;
    align-items: center;
    gap: 80px;
    background: linear-gradient(180deg, rgba(20,20,30,0.2), rgba(30,30,50,0.3), rgba(20,20,30,0.2));
    border-radius: 40px;
    margin: 50px auto;
    padding: 80px;
    border: 1px solid var(--border-glass);
}

.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s;
}

.service-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-list i {
    color: var(--accent-tertiary);
    font-size: 1.5rem;
    margin-top: 2px;
}

.service-list strong {
    color: var(--text-primary);
    font-size: 1.15rem;
}

.services-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float-delayed 8s ease-in-out infinite;
}

.mockup {
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    position: absolute;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mockup::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mockup-web {
    width: 90%;
    height: auto;
    top: 40px;
    left: 0;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
}

.mockup-header {
    height: 35px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

.mockup-header span {
    width: 12px; height: 12px; border-radius: 50%;
}
.mockup-header span:nth-child(1) { background: #ff5f56; }
.mockup-header span:nth-child(2) { background: #ffbd2e; }
.mockup-header span:nth-child(3) { background: #27c93f; }

.mockup-body {
    flex: 1;
    min-height: 0;
    padding: 0;
    position: relative;
}

.mockup-body img {
    display: block;
    width: 100%;
    height: auto;
}

.code-line {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin-bottom: 15px;
}

.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-100 { width: 100%; }
.w-60 { width: 60%; }

.code-icon {
    position: absolute;
    bottom: 30px; right: 30px;
    font-size: 6rem;
    color: rgba(255,255,255,0.05);
}

.mockup-mobile {
    width: clamp(140px, 38%, 190px);
    height: auto;
    bottom: 20px;
    right: 10px;
    border-radius: 24px;
    z-index: 3;
    background: rgba(10,10,15,0.9);
    border: 6px solid #222;
    transform: rotateY(-15deg) rotateX(5deg);
    padding: 0;
}

.app-header {
    height: 40px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    margin-bottom: 15px;
}

.app-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
}

.app-icon {
    position: absolute;
    bottom: 20px; right: 20px;
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
}

/* Portfolio/Enterprise */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hover-border {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
}

.portfolio-item:hover .hover-border {
    border-color: var(--accent-secondary);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.2);
}

.portfolio-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    display: inline-block;
}

.pulse-icon {
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--accent-primary)); }
    100% { transform: scale(1); }
}

.portfolio-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.portfolio-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
}

.cta-card {
    position: relative;
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-bg-animation {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(236, 72, 153, 0.1) 25%, transparent 50%, rgba(139, 92, 246, 0.1) 75%, transparent 100%);
    animation: rotateBg 10s linear infinite;
    z-index: -1;
}

@keyframes rotateBg {
    100% { transform: rotate(360deg); }
}

.cta-card h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 16px 36px;
    font-size: 1.1rem;
}

.bounce-hover:hover {
    animation: bounce 1s;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.wa-btn {
    background: #25D366;
    color: white;
}
.wa-btn:hover {
    background: #1ebc59;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 80px 5% 40px;
    margin-top: 50px;
    background: rgba(10, 10, 15, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
}

/* Animations Keyframes */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-delayed {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .title { font-size: 4rem; }
    .services-section { flex-direction: column; padding: 50px 30px; }
    .services-visual { flex: none; width: 100%; max-width: 600px; height: 500px; margin-top: 40px; }
}

@media (max-width: 480px) {
    .services-visual { height: 390px; margin-top: 15px; }
    .mockup-web { width: 100%; top: 10px; }
    .mockup-mobile { right: 0; bottom: 0; }
    .mockup-header { height: 24px; padding: 0 10px; gap: 5px; }
    .mockup-header span { width: 7px; height: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    .services-visual .floating,
    .services-visual .floating-delayed { animation: none; transform: none; }
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; } /* Disable custom cursor on mobile */
    * { cursor: auto; }
    
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-visual { width: 100%; height: 450px; margin-top: 30px; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh; width: 80%;
        background: rgba(7, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        border-left: 1px solid var(--border-glass);
    }
    
    .nav-links.active { right: 0; }
    .hamburger { 
        display: flex; 
        flex-direction: column;
        gap: 6px;
        z-index: 1001; 
        cursor: pointer;
    }
    
    .hamburger .bar {
        width: 30px; height: 3px;
        background: white;
        transition: 0.3s;
        border-radius: 3px;
    }
    
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    .title { font-size: 3rem; }
    .role { font-size: 1.4rem; height: 60px; }
    
    .hero-cta { flex-direction: column; width: 100%; max-width: 300px; }
    .glass-card { width: 90%; max-width: 280px; }
    
    .cta-card { padding: 50px 20px; }
    .cta-card h2 { font-size: 2.5rem; }
}
