/* ===== CSS Variables ===== */
:root {
    --background: 240, 10%, 4%;
    --foreground: 0, 0%, 98%;
    --card: 240, 10%, 6%;
    --card-foreground: 0, 0%, 98%;
    --primary: 168, 85%, 57%;
    --primary-foreground: 240, 10%, 4%;
    --secondary: 240, 5%, 15%;
    --secondary-foreground: 0, 0%, 98%;
    --muted: 240, 5%, 18%;
    --muted-foreground: 215, 14%, 60%;
    --accent: 168, 85%, 57%;
    --accent-foreground: 240, 10%, 4%;
    --border: 240, 5%, 18%;
    --ring: 168, 85%, 57%;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(180, 80%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: hsla(var(--primary), 0.1);
    border: 1px solid hsla(var(--primary), 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background: hsl(168, 85%, 47%);
    transform: translateY(-2px);
}

.btn-hero {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(180, 80%, 50%) 100%);
    color: hsl(var(--primary-foreground));
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 40px -10px hsla(var(--primary), 0.5);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px -10px hsla(var(--primary), 0.6);
}

.btn-outline {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    padding: 1rem 2rem;
}

.btn-outline:hover {
    background: hsla(var(--foreground), 0.1);
    border-color: hsl(var(--primary));
}

/* ===== Glass Effect ===== */
.glass {
    background: hsla(var(--card), 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(var(--border), 0.5);
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: hsla(var(--card), 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(var(--border), 0.5);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    max-width: 100px;
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
    .logo-img {
        max-width: 70px;
    }
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(var(--primary));
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: hsl(var(--foreground));
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: hsl(var(--foreground));
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin: 0.5rem 1rem;
    background: hsla(var(--card), 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    border: 1px solid hsla(var(--border), 0.5);
}

.nav-mobile.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.nav-mobile a {
    color: hsl(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: hsl(var(--primary));
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: hsl(var(--primary));
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
    }

    75% {
        transform: translateY(-20px) translateX(20px);
    }
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, hsla(var(--primary), 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: hsla(var(--card), 0.8);
    border: 1px solid hsla(var(--primary), 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: hsl(var(--primary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: hsla(var(--card), 0.5);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.stat-divider {
    display: none;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, hsl(var(--border)), transparent);
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid hsl(var(--muted-foreground));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: hsl(var(--primary));
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

.animate-fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, hsla(var(--card), 0.5), transparent);
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-items: center; 
    text-align: center;   
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-badge {
    display: inline-flex;
}

.about-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--primary), 0.1);
    border-radius: 0.5rem;
    color: hsl(var(--primary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    background: hsla(var(--card), 0.8);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--primary), 0.5);
}

.stat-card-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(180, 80%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: hsla(var(--card), 0.8);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--icon-color, var(--primary))), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--primary), 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(135deg, hsla(var(--primary), 0.1) 0%, hsla(var(--card), 0.9) 100%);
    border-color: hsla(var(--primary), 0.3);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--icon-color, var(--primary)), 0.1);
    border-radius: 0.75rem;
    color: hsl(var(--icon-color, var(--primary)));
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.service-features li::before {
    content: '✓';
    color: hsl(var(--primary));
    font-weight: 600;
}

/* ===== Differentials Section ===== */
.differentials {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, hsla(var(--card), 0.5), transparent);
}

.differentials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.differential-card {
    position: relative;
    padding: 2rem;
    background: hsla(var(--card), 0.5);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--primary), 0.5);
}

.differential-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsla(var(--primary), 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.differential-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.differential-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 0;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    padding: 2.5rem;
    background: hsla(var(--card), 0.8);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
    text-align: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(180, 80%, 50%));
    border-radius: 50%;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--muted), 0.5);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 50%;
    color: hsl(var(--foreground));
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: hsla(var(--muted-foreground), 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: hsl(var(--primary));
    transform: scale(1.2);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-stat {
    text-align: center;
    padding: 1.5rem;
    background: hsla(var(--card), 0.5);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
}

.testimonial-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.testimonial-stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, hsla(var(--card), 0.5), transparent);
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info .section-badge {
    display: inline-flex;
}

.contact-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsla(var(--card), 0.5);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: hsla(var(--primary), 0.5);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--primary), 0.1);
    border-radius: 0.5rem;
    color: hsl(var(--primary));
}

.contact-method-info {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-method-value {
    font-weight: 500;
}

.contact-form-wrapper {
    padding: 2rem;
    background: hsla(var(--card), 0.8);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: hsla(var(--muted), 0.3);
    border: 1px solid hsla(var(--border), 0.5);
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
}

.footer-border {
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(var(--primary), 0.5), transparent);
}

.footer>.container {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: hsla(var(--card), 0.5);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--muted), 0.5);
    border-radius: 0.5rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
}

.social-link:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: translateY(-2px);
}

.footer-links-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-section a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links-section a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(var(--border), 0.5);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}