/* ===== CSS Variables ===== */
:root {
    --background: hsl(222, 47%, 6%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(222, 47%, 8%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(217, 91%, 60%);
    --primary-foreground: hsl(222, 47%, 6%);
    --secondary: hsl(217, 33%, 17%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(217, 33%, 17%);
    --muted-foreground: hsl(215, 20%, 65%);
    --accent: hsl(160, 84%, 39%);
    --accent-foreground: hsl(222, 47%, 6%);
    --destructive: hsl(0, 84%, 60%);
    --border: hsl(217, 33%, 17%);
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(160, 84%, 39%) 100%);
    --glow-primary: 0 0 60px hsla(217, 91%, 60%, 0.3);
    --glow-accent: 0 0 40px hsla(160, 84%, 39%, 0.2);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: hsla(222, 47%, 8%, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(217, 33%, 17%, 0.5);
    border-radius: var(--radius);
}

.glow-box {
    box-shadow: var(--glow-primary);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: var(--glow-primary);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: hsla(217, 33%, 17%, 0.2);
}

.section-label {
    display: block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== 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: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: hsla(217, 91%, 60%, 0.9);
}

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

.btn-accent:hover {
    background: hsla(160, 84%, 39%, 0.9);
    box-shadow: var(--glow-accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: hsla(217, 91%, 60%, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(222, 47%, 6%, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(217, 33%, 17%, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-cta {
    display: none;
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: var(--foreground);
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid hsla(217, 33%, 17%, 0.5);
}

.nav-link-mobile {
    color: var(--muted-foreground);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }

    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(217, 91%, 60%, 0.05), transparent, transparent);
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-blur-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(217, 91%, 60%, 0.1);
}

.hero-blur-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(160, 84%, 39%, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(160, 84%, 39%, 0.1);
    border: 1px solid hsla(160, 84%, 39%, 0.3);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge span:last-child {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.scroll-indicator {
    margin-bottom: 3rem;
}

.bounce {
    animation: bounce 1s infinite;
    color: var(--muted-foreground);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.stat-icon.accent {
    color: var(--accent);
}

.stat-icon.primary {
    color: var(--primary);
}

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

/* ===== About ===== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: hsla(222, 47%, 8%, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.quote cite {
    color: var(--primary);
    font-weight: 500;
    font-style: normal;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    display: inline;
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 2rem;
    }
}

/* ===== Gallery / Carousel ===== */
.carousel-container {
    position: relative;
    padding: 0 2rem;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.setup-card {
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.setup-card:hover {
    box-shadow: var(--glow-primary);
}

.setup-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.setup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.setup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.setup-card:hover .setup-overlay {
    opacity: 1;
}

.setup-info {
    padding: 1rem;
}

.setup-category {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.setup-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-top: 0.25rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--foreground);
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--secondary);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsla(215, 20%, 65%, 0.3);
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    width: 2rem;
    background: var(--primary);
}

.gallery-footer {
    text-align: center;
    margin-top: 2rem;
}

.gallery-note {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

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

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

    .carousel-container {
        padding: 0 4rem;
    }

    .carousel-btn-prev {
        left: -1rem;
    }

    .carousel-btn-next {
        right: -1rem;
    }
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: hsla(222, 47%, 6%, 0.9);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 72rem;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    padding: 0.5rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-body {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
}

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

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

/* ===== Services / Pricing ===== */
.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.check-icon {
    color: var(--accent);
}

.check-icon.primary {
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    border-color: hsla(217, 91%, 60%, 0.5);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.popular-badge .icon {
    width: 0.75rem;
    height: 0.75rem;
}

.pricing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-price.accent {
    color: var(--accent);
}

.pricing-price.primary {
    color: var(--primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

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

/* ===== Performance ===== */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.perf-stat {
    padding: 1.5rem;
    text-align: center;
}

.perf-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.perf-stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.performance-table {
    max-width: 56rem;
    margin: 0 auto;
    overflow: hidden;
}

.table-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.table-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead tr {
    background: hsla(217, 33%, 17%, 0.3);
    border-bottom: 1px solid var(--border);
}

th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

tbody tr {
    border-bottom: 1px solid hsla(217, 33%, 17%, 0.5);
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: hsla(217, 33%, 17%, 0.2);
}

td {
    padding: 1rem 1.5rem;
}

td.wins {
    color: var(--accent);
}

td.losses {
    color: var(--destructive);
}

td.profit {
    color: var(--accent);
    font-weight: 500;
}

.table-note {
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-foreground);
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-result {
    padding: 0.25rem 0.75rem;
    background: hsla(160, 84%, 39%, 0.1);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

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

    .testimonial-card {
        padding: 2rem;
    }
}

/* ===== FAQ / Accordion ===== */
.accordion-container {
    max-width: 48rem;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-item.active {
    box-shadow: 0 0 0 1px hsla(217, 91%, 60%, 0.5);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-footer p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: 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;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.contact-icon.accent {
    background: hsla(160, 84%, 39%, 0.1);
    color: var(--accent);
}

.contact-icon.primary {
    background: hsla(217, 91%, 60%, 0.1);
    color: var(--primary);
}

.contact-method:hover .contact-icon.accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.contact-method:hover .contact-icon.primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.contact-label {
    font-weight: 500;
}

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

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.contact-form-wrapper {
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-align: center;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsla(160, 84%, 39%, 0.8);
}

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

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: 50%;
    box-shadow: 0 4px 20px hsla(160, 84%, 39%, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px hsla(160, 84%, 39%, 0.6);
}

.whatsapp-float .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: hsla(217, 91%, 60%, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
