:root {
    /* Color Palette - Dark Futuristic */
    --bg-dark: #050508;
    --bg-panel: rgba(15, 15, 25, 0.6);
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --text-main: #f0f0f0;
    --text-muted: #a0a0b0;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    cursor: none; /* Hide default cursor */
}

.main-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite alternate-reverse;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

h1 { font-size: 4rem; line-height: 1.1; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.neon-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* UI Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Buttons */
a { text-decoration: none; color: inherit; }

.btn-primary, .btn-secondary, .btn-neon, .btn-outline, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 8px 20px;
    background: transparent;
}
.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: aliveLogo 12s infinite;
}

.logo span {
    color: var(--neon-blue);
    animation: aliveSpan 12s infinite;
}

@keyframes aliveLogo {
    /* Phase 1: Breathing Neon (0 - 25%) */
    0%   { text-shadow: 0 0 5px rgba(0,240,255,0.2); transform: scale(1); }
    12%  { text-shadow: 0 0 20px rgba(0,240,255,0.8), 0 0 30px rgba(0,240,255,0.6); transform: scale(1.05); }
    25%  { text-shadow: 0 0 5px rgba(0,240,255,0.2); transform: scale(1); }

    /* Phase 2: Cyber Glitch (25 - 50%) */
    26%  { transform: skew(0deg); text-shadow: none; }
    28%  { transform: skew(-15deg); text-shadow: 3px 0 #00f0ff, -3px 0 #ff003c; }
    30%  { transform: skew(15deg); text-shadow: -3px 0 #00f0ff, 3px 0 #ff003c; }
    32%  { transform: skew(0deg); text-shadow: none; }
    34%  { transform: skew(-10deg); text-shadow: 2px 0 #8a2be2, -2px 0 #00f0ff; }
    36%  { transform: skew(0deg); text-shadow: none; }
    50%  { transform: skew(0deg); text-shadow: none; }

    /* Phase 3: Hologram Flicker (50 - 75%) */
    51%  { opacity: 1; }
    53%  { opacity: 0.1; }
    55%  { opacity: 1; text-shadow: 0 0 10px var(--neon-blue); }
    58%  { opacity: 0.4; }
    60%  { opacity: 1; text-shadow: none; }
    65%  { opacity: 0.8; }
    68%  { opacity: 0.2; }
    70%  { opacity: 1; }
    75%  { opacity: 1; }

    /* Phase 4: Color Morph (75 - 100%) */
    76%  { color: var(--text-main); text-shadow: 0 0 5px transparent; }
    88%  { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple); }
    100% { color: var(--text-main); text-shadow: 0 0 5px rgba(0,240,255,0.2); }
}

@keyframes aliveSpan {
    /* Sync span colors with the logo morphing */
    0%, 75% { color: var(--neon-blue); }
    76% { color: var(--neon-blue); }
    88% { color: #fff; } 
    100% { color: var(--neon-blue); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-blue);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-active {
    transform: translateX(0) !important;
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 5%;
}

.hero-content .subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.tech-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.logo-shifter {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.hero-logo {
    width: 180px;
    height: 180px;
    cursor: pointer;
    border-radius: 20%;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: floatingLogo 4s ease-in-out infinite;
}

@keyframes floatingLogo {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(2deg) scale(1.08); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 50px rgba(0, 240, 255, 0.2); }
    100% { transform: scale(1.05); box-shadow: 0 0 80px rgba(138, 43, 226, 0.4); }
}

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

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.focus-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.focus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.focus-list i {
    color: var(--neon-purple);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3.5rem;
    display: inline;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-card span {
    font-size: 3rem;
    color: var(--neon-blue);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

/* Projects Showcase */
.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

@keyframes borderGlow {
    0% { box-shadow: var(--glass-shadow); border-color: var(--glass-border); }
    50% { box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(138, 43, 226, 0.1); border-color: rgba(0, 240, 255, 0.4); }
    100% { box-shadow: var(--glass-shadow); border-color: var(--glass-border); }
}

.project-card:hover {
    transform: translateY(-10px);
    animation: borderGlow 2s infinite;
}
.project-card.reverse {
    grid-template-columns: 1fr 1fr;
}
.project-card.reverse .project-content { order: 2; }
.project-card.reverse .project-visual { order: 1; }

.project-content {
    padding: 3rem;
}

.project-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
.project-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 200%; }
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.feature-list li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.feature-list i {
    color: var(--neon-blue);
    margin-right: 10px;
}

.project-visual {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-mockup {
    width: 100%;
    background: #111;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mockup-header {
    background: #222;
    padding: 10px;
    display: flex;
    gap: 6px;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mockup-body {
    position: relative;
    height: 300px;
    background: #111;
    overflow: hidden;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.browser-mockup:hover .preview-img {
    transform: scale(1.08);
}

.mockup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.browser-mockup:hover .mockup-overlay {
    opacity: 1;
}

.mockup-overlay span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--neon-blue);
    letter-spacing: 1px;
    background: rgba(0,0,0,0.4);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.placeholder-img {
    height: 300px;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    height: 100%;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15), 0 0 20px rgba(0, 240, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--neon-purple);
    background: rgba(138, 43, 226, 0.05);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.15);
}

.pricing-card.featured:hover {
    border-color: var(--neon-blue);
    background: rgba(138, 43, 226, 0.08);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-blue);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.pricing-features li.divider {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 10px 0;
    padding: 0;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.neon-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
    width: 50px; height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.w-100 { width: 100%; }

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-3px) rotate(360deg);
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid rgba(138, 43, 226, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .cta-group { justify-content: center; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .project-card, .project-card.reverse { grid-template-columns: 1fr; gap: 1.5rem; }
    .project-card.reverse .project-content { order: 1; }
    .project-card.reverse .project-visual { order: 2; }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    :root {
        --glass-blur: blur(8px);
    }

    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }

    /* Mobile Nav */
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 40px;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    section { padding: 60px 0; }
    .container { padding: 0 1.5rem; }

    h1 { font-size: 2.4rem; letter-spacing: -1px; }
    h2 { font-size: 1.8rem; }
    
    .hero-content .subtext { font-size: 1rem; margin: 0 auto 2rem; }
    
    .cta-group { 
        flex-direction: column; 
        gap: 12px; 
        width: 100%; 
        max-width: 300px; 
        margin: 0 auto 2.5rem; 
    }
    .btn-primary, .btn-secondary { width: 100%; }

    .tech-tag { padding: 4px 12px; font-size: 0.75rem; margin-right: 5px; }

    .logo-container { width: 300px; height: 300px; }
    .hero-logo { width: 140px; height: 140px; }

    .about-text .lead { font-size: 1.1rem; }
    .focus-list { grid-template-columns: 1fr; gap: 0.8rem; }

    .stat-card { padding: 1.5rem; }
    .stat-card h3 { font-size: 2.5rem; }

    .project-content { padding: 1.5rem; }
    .project-visual { padding: 1rem; background: transparent; }
    .browser-mockup { border-radius: 12px; }
    .mockup-body { height: 220px; }
    
    .service-card { padding: 1.5rem; }
    
    .contact-wrapper { gap: 2.5rem; }
    .contact-info h2 { font-size: 1.8rem; }
    
    .footer-content { 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center; 
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-content { padding: 0; }
    .tech-stack-hero { display: flex; flex-wrap: wrap; justify-content: center; }
    .logo-container { width: 220px; height: 220px; }
    .hero-logo { width: 100px; height: 100px; }
    .mockup-body { height: 180px; }
    .project-badge { font-size: 0.7rem; }
}
