/* CSS Variables from @theme */
:root {
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;

    --color-primary: #4f46e5;
    --color-accent: #10b981;

    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;

    --color-white: #ffffff;
    --color-indigo-400: #818cf8;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: var(--color-slate-50);
    color: var(--color-slate-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    color: white;
    padding: 8px;
    margin: 7px;
    border-radius: 30%;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    padding: 1.25rem 0;
    backdrop-filter: blur(0);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 1px #475569;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0px 1px #475569;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    text-decoration: none;
    color: var(--color-slate-900);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-highlight {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-slate-600);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn.primary {
    background-color: var(--color-primary);
    color: white;
}

.nav-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.nav-btn.secondary {
    background: none;
    color: var(--color-slate-700);
}

.nav-btn.secondary:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-slate-700);
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-slate-100);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-slate-700);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

.menu-divider {
    border: none;
    border-top: 1px solid var(--color-slate-100);
    margin: 1rem 0;
}

.mobile-cta {
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(79, 70, 229, 0.05), transparent);
    border-bottom-left-radius: 9999px;
    filter: blur(48px);
    opacity: 0.5;
}

.hero-bg-2 {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 9999px;
    filter: blur(48px);
    opacity: 0.5;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    border: 1px solid var(--color-slate-200);
    color: var(--color-slate-700);
}

.btn-secondary:hover {
    background-color: var(--color-slate-50);
}

.btn-full {
    width: 100%;
}

.btn-dark {
    background-color: var(--color-slate-900);
    color: white;
}

.btn-dark:hover {
    background-color: var(--color-slate-800);
}

.btn-light {
    background-color: white;
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: var(--color-slate-50);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-200);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.dashboard-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-slate-100);
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 0.75rem;
}

.card-title {
    font-weight: 800;
    color: var(--color-slate-900);
}

.card-status {
    font-size: 0.75rem;
    color: var(--color-slate-400);
}

.card-badge {
    padding: 0.25rem 0.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-accent);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 9999px;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.metric-value {
    font-weight: 800;
    color: var(--color-slate-900);
    font-size: 0.875rem;
}

.progress-bar {
    height: 0.5rem;
    width: 100%;
    background-color: var(--color-slate-100);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    animation: progress 1.5s ease-out 0.5s forwards;
}

.occupancy {
    width: 82%;
    background-color: var(--color-primary);
}

.revpar {
    width: 91%;
    background-color: var(--color-accent);
}

.agents {
    width: 67%;
    background-color: var(--color-indigo-400);
}

.prices {
    width: 76%;
    background-color: var(--color-primary);
}

@keyframes progress {
    from {
        width: 0%;
    }
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-slate-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-group {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    background-color: var(--color-slate-200);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-slate-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.growth-icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

.badge-label {
    font-size: 0.625rem;
    color: var(--color-slate-400);
    font-weight: 700;
    text-transform: uppercase;
}

.badge-value {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-0.625rem);
    }
}

/* Ticker */
.ticker {
    background-color: var(--color-slate-900);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--color-slate-800);
    border-bottom: 1px solid var(--color-slate-800);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
    padding-right: 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.ticker-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.section-badge {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    color: var(--color-slate-600);
    font-size: 1.125rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-slate-50);
    margin-bottom: -2.5rem;
    transition: color 0.3s ease;
}

.step:hover .step-number {
    color: rgba(79, 70, 229, 0.05);
}

.step-content {
    position: relative;
    background: white;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-slate-50);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background-color: rgba(79, 70, 229, 0.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Dual Panels */
.dual-panels {
    padding: 6rem 0;
    background-color: var(--color-slate-50);
}

.panels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .panels-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.panel {
    padding: 3rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-slate-100);
}

.panel-hotelier {
    background: white;
}

.panel-agent {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-xl);
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    width: fit-content;
}

.panel-agent .panel-badge {
    background-color: rgba(255, 255, 255, 0.1);
}

.panel h2 {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .panel h2 {
        font-size: 2.5rem;
    }
}

.panel p {
    margin-bottom: 2rem;
    flex-grow: 1;
    color: var(--color-slate-600);
}

.panel-agent p {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-slate-600);
}

.panel-agent .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-accent);
    width: 1.125rem;
    height: 1.125rem;
}

.check-white {
    color: white;
}

/* AI Features */
.ai-features {
    padding: 6rem 0 0 0;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-100);
    background-color: rgba(248, 250, 252, 0.5);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.feature-card:hover {
    background-color: white;
    box-shadow: var(--shadow-xl);
    translate: 0 -4px;
}

.feature-emoji {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--color-slate-500);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-chip {
    padding: 0.25rem 0.75rem;
    background-color: rgba(79, 70, 229, 0.05);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--color-slate-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid .stat-item:nth-child(3) {
        grid-column: 2 / 4;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid .stat-item:nth-child(3) {
        grid-column: auto;
    }
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-item .stat-number {
        font-size: 4rem;
    }
}

.stat-label {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--color-slate-50);
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-header {
        flex-direction: row;
        justify-content: space-between;
    }
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.testimonials {
    overflow: hidden;
}

.nav-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--color-slate-200);
    background: white;
    color: var(--color-slate-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.testimonials-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
    display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(.65,.05,.36,1);
}

.testimonial-card {
    min-width: 340px;
    flex: 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-100);
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.125rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-slate-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 800;
    color: var(--color-slate-900);
}

.author-role {
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

/* CTA */
.cta {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
}

.cta-container {
    background-color: var(--color-slate-900);
    border-radius: 3rem;
    padding: 3rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 90%;
}

@media (min-width: 768px) {
    .cta-container {
        padding: 5rem 8rem;
    }
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), transparent);
    pointer-events: none;
}

.cta-container>* {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    border-radius: 9999px;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4rem;
    }

    .cta-container {
        width: 70%;
    }
}

.cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--color-slate-200);
    background-color: var(--color-slate-50);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--color-slate-500);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--color-slate-200);
    color: var(--color-slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-section h4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a,
.footer-section li {
    color: var(--color-slate-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-slate-200);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    color: var(--color-slate-400);
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-slate-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-slate-600);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Desktop menu visible by default */
.nav-links,
.nav-actions {
    display: flex;
}

/* Hide hamburger on desktop */
.mobile-toggle {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
        cursor: pointer;
    }
}

.fixed {
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 50;
    padding: 10px;
    border-radius: 15px;
    background-color: #075e54 ;
    animation-name: UpAndDown;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    transition: all 1s ease-in-out;
}

.fixed svg {
    color: #ece5dd;
    display: block;
    width: 30px;
    height: 30px;
}


@keyframes UpAndDown {
    0% {
        transform: translateY(-10px);
    } 50% {
        transform: translateY(-30px);
    } 100% {
        transform: translateY(-10px);
    }
}