/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(0, 0%, 0%);
    --foreground: hsl(0, 0%, 100%);
    --card: hsl(0, 0%, 5%);
    --primary: hsl(358, 82%, 52%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 10%);
    --accent: hsl(130, 61%, 42%);
    --muted: hsl(0, 0%, 15%);
    --muted-foreground: hsl(0, 0%, 60%);
    --border: hsl(0, 0%, 20%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(358, 82%, 47%);
    transform: scale(1.05);
    box-shadow: 0 20px 60px -10px var(--primary);
}

.btn-lg {
    height: 48px;
    padding: 0 32px;
    font-size: 16px;
}

.btn-mobile {
    margin-top: 32px;
    padding: 0 32px;
    height: 48px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px 24px;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 48px !important;
}

.logo {
    height: 150px !important;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: none;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .logo {
        height: 48px;
    }
}

@media (max-width: 767px) {
    .logo {
        height: 40px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: hsl(0, 0%, 4%);
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.mobile-logo {
    height: 40px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}

.mobile-close-btn:hover {
    color: var(--primary);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.grid-background {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: gridPulse 4s ease-in-out infinite;
}

.animated-orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    background-color: hsla(358, 82%, 52%, 0.2);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    background-color: hsla(130, 61%, 42%, 0.2);
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeIn 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--muted-foreground);
    animation: bounceSubtle 3s ease-in-out infinite;
    align-self: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #1eb854;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -3px;
    animation: scaleIn 0.6s ease-out;
}

.gradient-text {
    color: var(--muted-foreground);
    background: linear-gradient(to right, var(--muted-foreground), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 0.8s ease 0.2s both;
}

.highlight {
    color: var(--foreground);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    animation: fadeIn 0.8s ease 0.4s both;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    animation: starPop 0.3s ease both;
}

.star:nth-child(1) { animation-delay: 0.5s; }
.star:nth-child(2) { animation-delay: 0.6s; }
.star:nth-child(3) { animation-delay: 0.7s; }
.star:nth-child(4) { animation-delay: 0.8s; }
.star:nth-child(5) { animation-delay: 0.9s; }

.rating-text {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Portfolio Showcase */
.portfolio-showcase {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.showcase-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(358, 82%, 52%, 0.1), transparent, hsla(130, 61%, 42%, 0.1));
    background-size: 200% 200%;
    animation: gradientFlow 8s ease-in-out infinite;
    pointer-events: none;
}

.showcase-scroll {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
}

.showcase-scroll:hover {
    animation-play-state: paused;
}

.showcase-item {
    flex-shrink: 0;
    width: 400px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.7s ease;
}

.showcase-item:hover {
    transform: scale(1.05) rotate(2deg);
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    animation: gradientRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
    z-index: 1;
}

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

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Advantages Section */
.advantages {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.advantages-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(358, 82%, 52%, 0.05), transparent, hsla(130, 61%, 42%, 0.05));
    animation: gradientShift 20s ease-in-out infinite;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeIn 0.8s ease;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease;
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(80px);
}

.advantage-card:nth-child(1) { animation-delay: 0s; }
.advantage-card:nth-child(2) { animation-delay: 0.5s; }
.advantage-card:nth-child(3) { animation-delay: 1s; }
.advantage-card:nth-child(4) { animation-delay: 1.5s; }
.advantage-card:nth-child(5) { animation-delay: 2s; }
.advantage-card:nth-child(6) { animation-delay: 2.5s; }

.advantage-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(358, 82%, 52%, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card:hover .advantage-gradient {
    opacity: 1;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: hsla(358, 82%, 52%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(12deg);
    background-color: hsla(358, 82%, 52%, 0.2);
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-title {
    color: var(--primary);
}

.advantage-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 96px 0;
    background-color: hsla(0, 0%, 10%, 0.3);
}

.section-header-left {
    margin-bottom: 64px;
    animation: fadeIn 0.8s ease;
}

.section-header-left .section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 24px;
    text-align: left;
}

.section-header-left .section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: none;
    text-align: left;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: hsla(0, 0%, 5%, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(80px);
}

.benefit-card:hover {
    border-color: hsla(358, 82%, 52%, 0.5);
    box-shadow: 0 20px 60px -10px hsla(358, 82%, 52%, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(358, 82%, 52%, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: hsla(358, 82%, 52%, 0.2);
}

.benefit-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: var(--primary);
}

.benefit-description {
    color: var(--muted-foreground);
}

/* Stats Section */
.stats {
    position: relative;
    padding: 96px 0;
    background-color: hsl(0, 0%, 4%);
    overflow: hidden;
}

.stats-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(358, 82%, 52%, 0.1), hsla(130, 61%, 42%, 0.05), hsla(358, 82%, 52%, 0.1));
    background-size: 200% 200%;
    animation: gradientFlow 10s ease-in-out infinite;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 64px;
    }
}

.stat-item {
    text-align: center;
    animation: floatStat 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(80px);
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.5s; }

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 16px;
}

.stat-item:hover .stat-label {
    color: var(--primary);
    transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 96px 0;
    background-color: hsl(0, 0%, 4%);
    overflow: hidden;
}

.testimonials-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease;
    animation: floatCard 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(80px);
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.7s; }
.testimonial-card:nth-child(3) { animation-delay: 1.4s; }
.testimonial-card:nth-child(4) { animation-delay: 2.1s; }

.testimonial-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(358, 82%, 52%, 0.2), hsla(130, 61%, 42%, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover .testimonial-gradient {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .testimonial-stars .star {
    animation: starScale 0.3s ease;
}

.testimonial-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    color: var(--primary);
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(358, 82%, 52%, 0.2), hsla(130, 61%, 42%, 0.1), transparent);
    animation: gradientPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: hsla(358, 82%, 52%, 0.3);
    border-radius: 50%;
    filter: blur(120px);
    animation: pulseGlow 4s ease-in-out infinite;
}

.cta-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    animation: fadeIn 1s ease;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.cta-badge:hover {
    transform: scale(1.05);
    border-color: hsla(358, 82%, 52%, 0.5);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    animation: scaleIn 0.6s ease-out;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 640px;
    line-height: 1.6;
}

.cta-btn {
    animation: bounceIn 0.8s ease-out 0.5s both;
}

.cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px -10px var(--primary);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(8px);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: hsl(0, 0%, 4%);
    padding: 64px 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo {
    height: 32px;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
}

.footer-description {
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--foreground);
}

.footer-list li {
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--foreground);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

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

@keyframes starPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 4 - 24px * 4));
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: rotate(2deg) scale(1.05);
    }
}

@keyframes floatStat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px currentColor);
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px currentColor);
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes starScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 80px;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: hsla(358, 82%, 52%, 0.1);
    border: 1px solid hsla(358, 82%, 52%, 0.2);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: bounceSubtle 3s ease-in-out infinite;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    animation: scaleIn 0.6s ease-out;
}

.page-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease 0.2s both;
}

/* About Page Styles */
.about-content {
    padding: 96px 0;
}

.about-section {
    margin-bottom: 96px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid.reverse .about-text {
        order: 1;
    }
    
    .about-grid.reverse .about-image {
        order: 2;
    }
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-paragraph {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 96px;
    text-align: center;
}

@media (min-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-box {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-vision {
    text-align: center;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s ease;
}

.about-vision.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    margin-bottom: 16px;
}

.vision-text {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto;
}

/* Services Page Styles */
.services-section {
    padding: 96px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(80px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: hsla(358, 82%, 52%, 0.5);
    box-shadow: 0 20px 60px -10px hsla(358, 82%, 52%, 0.2);
    transform: translateY(-4px);
}

.service-image {
    height: 256px;
    overflow: hidden;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.service-card:hover .service-learn-more {
    opacity: 1;
    transform: translateX(8px);
}

/* Case Studies Page Styles */
.case-studies-section {
    padding: 96px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-study-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(80px);
}

.case-study-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover {
    border-color: hsla(358, 82%, 52%, 0.5);
    box-shadow: 0 20px 60px -10px hsla(358, 82%, 52%, 0.1);
    transform: translateY(-4px);
}

.case-study-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.case-study-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.case-study-card:hover .case-study-image::before {
    opacity: 1;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.case-study-content {
    padding: 24px;
}

.case-study-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.case-study-card:hover .case-study-title {
    color: var(--primary);
}

.case-study-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: var(--secondary);
    color: var(--foreground);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* Contact Page Styles */
.contact-section {
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.7s ease;
}

.contact-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    margin-bottom: 16px;
}

.contact-text {
    font-size: 16px;
    color: var(--muted-foreground);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.contact-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: hsla(358, 82%, 52%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: hsla(358, 82%, 52%, 0.2);
}

.contact-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-content {
    color: var(--muted-foreground);
}

.contact-form-container {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.5s ease;
}

.contact-form-container:hover {
    border-color: hsla(358, 82%, 52%, 0.3);
}

.form-title {
    font-size: 24px;
    font-weight: 400;
    background: linear-gradient(to bottom, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--foreground);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(358, 82%, 52%, 0.1);
}

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

.form-submit {
    width: 100%;
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.form-message.success {
    background-color: hsla(130, 61%, 42%, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message.error {
    background-color: hsla(0, 84%, 60%, 0.1);
    border: 1px solid var(--destructive);
    color: var(--destructive);
}

/* Let's work together animation */
.cta-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: wordSlideIn 0.8s ease-out forwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.title-word:nth-child(2) {
    animation-delay: 0.4s;
}

.title-word:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}