/* Google Fonts already imported in header */

:root {
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --background: 240 20% 99%;
    --foreground: 240 10% 8%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 8%;
    --primary: 262 72% 55%;
    --primary-foreground: 0 0% 100%;
    --secondary: 240 10% 96%;
    --secondary-foreground: 240 10% 8%;
    --muted: 240 10% 96%;
    --muted-foreground: 240 5% 46%;
    --accent: 217 91% 60%;
    --accent-foreground: 0 0% 100%;
    --border: 240 10% 92%;
    --ring: 262 72% 55%;
    --chart-3: 173 58% 39%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --destructive: 0 84.2% 60.2%;
}

body.dark {
    --background: 240 10% 4%;
    --foreground: 0 0% 98%;
    --card: 240 10% 6%;
    --card-foreground: 0 0% 98%;
    --secondary: 240 10% 12%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 10% 12%;
    --muted-foreground: 240 5% 64%;
    --border: 240 10% 14%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.text-primary {
    color: hsl(var(--primary));
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: hsl(var(--background) / 0.9);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.813rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar:not(.scrolled) {
    background-color: transparent;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 1024px) {
    .nav-container {
        height: 80px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: hsl(var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: white;
}

.logo-accent {
    color: hsl(var(--primary));
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    transition: background-color 0.2s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.moon-icon {
    display: none;
}

body.dark .sun-icon {
    display: none;
}

body.dark .moon-icon {
    display: block;
}

.mobile-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    display: block;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle .close-icon {
    display: none;
}

.mobile-toggle.open .menu-icon {
    display: none;
}

.mobile-toggle.open .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid hsl(var(--border));
    padding: 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--foreground));
    background-color: hsl(var(--muted));
}

.mobile-nav-link.active {
    color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .hero-container {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-content {
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--accent));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-text {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

/* Section Heading */
.section-heading {
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .section-heading {
        margin-bottom: 4rem;
    }
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label-light {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-light {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .section-title-light {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title-light {
        font-size: 3rem;
    }
}

.section-desc {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: hsl(var(--muted-foreground));
}

.section-desc-light {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .services-preview {
        padding: 8rem 0;
    }
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon.primary {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.service-icon.accent {
    background-color: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
}

.service-icon.chart3 {
    background-color: hsl(var(--chart-3) / 0.1);
    color: hsl(var(--chart-3));
}

.service-icon.chart4 {
    background-color: hsl(var(--chart-4) / 0.1);
    color: hsl(var(--chart-4));
}

.service-icon.destructive {
    background-color: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.625;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-learn-more {
    opacity: 1;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
    .portfolio-preview {
        padding: 8rem 0;
    }
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.portfolio-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-card:hover {
    transform: translateY(-4px);
}

.portfolio-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.portfolio-placeholder.primary {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
}

.portfolio-placeholder.accent {
    background: linear-gradient(135deg, hsl(var(--accent) / 0.2), hsl(var(--primary) / 0.2));
}

.portfolio-content {
    padding: 1.25rem;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.portfolio-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.4;
}

.portfolio-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: hsl(var(--secondary) / 0.3);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 8rem 0;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: hsl(var(--primary) / 0.2);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: hsl(var(--chart-4));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-card strong {
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-card span {
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .why-choose-us {
        padding: 8rem 0;
    }
}

.reasons-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-item {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.reason-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.reason-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reason-item p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 7rem 0;
    }
}

.cta-banner-inner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.9), hsl(var(--accent)));
    padding: 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner-inner {
        padding: 5rem;
    }
}

.cta-banner-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .cta-banner-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-banner-title {
        font-size: 3rem;
    }
}

.cta-banner-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

/* Footer */
.footer {
    background-color: hsl(var(--foreground));
    color: white;
}

.footer-cta {
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .footer-cta {
        padding: 6rem 0;
    }
}

.footer-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .footer-cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta-title {
        font-size: 3rem;
    }
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.footer-grid {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, hsl(var(--secondary) / 0.5), hsl(var(--background)));
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 10rem 0 6rem;
    }
}

.page-hero-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero h1 {
        font-size: 3.75rem;
    }
}

.page-hero-text {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 36rem;
}

.text-center .page-hero-text {
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .story-section {
        padding: 8rem 0;
    }
}

.story-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.story-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .story-content h2 {
        font-size: 2.25rem;
    }
}

.story-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
    margin-bottom: 1rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.achievement-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    text-align: center;
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

@media (min-width: 1024px) {
    .achievement-number {
        font-size: 2.25rem;
    }
}

.achievement-label {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: hsl(var(--secondary) / 0.3);
}

@media (min-width: 1024px) {
    .values-section {
        padding: 8rem 0;
    }
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 2rem;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: hsl(var(--primary));
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .skills-section {
        padding: 8rem 0;
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.skill-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.5s ease forwards;
    text-decoration: none;
}

.skill-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.skill-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.skill-card p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Services Full */
.services-full {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .services-full {
        padding: 8rem 0;
    }
}

.services-full-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-full-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-full-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05);
}

.service-full-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-full-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.service-price {
    color: hsl(var(--primary));
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

.service-full-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.service-benefits svg {
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: hsl(var(--secondary) / 0.3);
}

@media (min-width: 1024px) {
    .process-section {
        padding: 8rem 0;
    }
}

.process-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    padding: 2rem;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--primary) / 0.1);
    margin-bottom: 0.5rem;
}

.process-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Services CTA */
.services-cta {
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .services-cta {
        padding: 7rem 0;
    }
}

.services-cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .services-cta h2 {
        font-size: 2.25rem;
    }
}

.services-cta p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Full */
.portfolio-full {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .portfolio-full {
        padding: 6rem 0;
    }
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: hsl(var(--secondary));
    color: hsl(var(--muted-foreground));
}

.filter-btn:hover {
    color: hsl(var(--foreground));
}

.filter-btn.active {
    background-color: hsl(var(--primary));
    color: white;
}

.portfolio-full-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-full-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: transform 0.3s ease;
}

.portfolio-full-card:hover {
    transform: translateY(-4px);
}

.portfolio-full-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-full-content {
    padding: 1.5rem;
}

.portfolio-full-content .portfolio-category {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.portfolio-full-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-full-content p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.portfolio-tech span {
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background-color: hsl(var(--secondary));
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .gallery-section {
        padding: 6rem 0;
    }
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-placeholder.primary {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.7), hsl(var(--primary) / 0.3));
}

.gallery-placeholder.accent {
    background: linear-gradient(135deg, hsl(var(--accent) / 0.7), hsl(var(--accent) / 0.3));
}

.gallery-placeholder.chart3 {
    background: linear-gradient(135deg, hsl(var(--chart-3) / 0.7), hsl(var(--chart-3) / 0.3));
}

.gallery-placeholder.chart4 {
    background: linear-gradient(135deg, hsl(var(--chart-4) / 0.7), hsl(var(--chart-4) / 0.3));
}

.gallery-placeholder.chart5 {
    background: linear-gradient(135deg, hsl(var(--chart-5) / 0.7), hsl(var(--chart-5) / 0.3));
}

.gallery-placeholder.destructive {
    background: linear-gradient(135deg, hsl(var(--destructive) / 0.7), hsl(var(--destructive) / 0.3));
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .blog-section {
        padding: 6rem 0;
    }
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
}

.blog-placeholder.primary {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.05));
}

.blog-placeholder.accent {
    background: linear-gradient(135deg, hsl(var(--accent) / 0.2), hsl(var(--accent) / 0.05));
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.blog-date {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.blog-coming-soon {
    text-align: center;
    padding: 3rem;
    border-radius: 1rem;
    background-color: hsl(var(--secondary) / 0.3);
    margin-top: 2rem;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.blog-coming-soon h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-coming-soon p {
    color: hsl(var(--muted-foreground));
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 6rem 0;
    }
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
        gap: 3rem;
    }
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.contact-item strong {
    font-size: 0.875rem;
}

.contact-item br {
    display: none;
}

.contact-item div {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.whatsapp-link {
    color: hsl(var(--primary));
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.free-consultation {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: hsl(var(--primary) / 0.05);
    border: 1px solid hsl(var(--primary) / 0.1);
}

.free-consultation h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.free-consultation p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-form-wrapper {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--input));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.contact-success {
    text-align: center;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.contact-success h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-success p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.form-error {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Utilities */
@media (max-width: 639px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title br {
        display: none;
    }
}

/* Gallery Filter Animation */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hide {
    display: none;
}