:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #6366f1;
    --accent: #f59e0b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --white: #ffffff;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.7);
    --border: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 5rem 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.1), transparent);
}

.hero .grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-pricing {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.hero-pricing .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-pricing .unit {
    color: var(--text-light);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.scarcity-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ef4444;
}

.pwa-availability {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.pwa-availability i {
    font-size: 1.2rem;
}

/* Dashboard Preview Mockup */
.dashboard-preview {
    perspective: 1000px;
}

.mock-ui {
    background: white;
    border-radius: 1.5rem;
    height: 450px;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.25);
    border: 1px solid var(--border);
    display: flex;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.mock-ui:hover {
    transform: none;
}

.mock-sidebar {
    width: 60px;
    background: #f1f5f9;
    border-right: 1px solid var(--border);
}

.mock-content {
    flex: 1;
    padding: 1.5rem;
    background: #f8fafc;
}

.mock-header {
    height: 40px;
    background: white;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.mock-card {
    height: 100px;
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.card-a {
    width: 100%;
}

.card-b {
    width: 70%;
}

.card-c {
    width: 90%;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Theme Preview Section */
.theme-toggle-container {
    max-width: 600px;
    margin: 0 auto;
}

.preview-box {
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.preview-box[data-theme="dark"] {
    background: #0f172a;
    border-color: #1e293b;
}

.preview-box[data-theme="dark"] .preview-stat {
    background: #1e293b;
}

.preview-stat {
    height: 20px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    max-width: 400px;
    margin: 0 auto;
    padding: 3.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #22c55e;
}

.custom-note {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--card-shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--text-dark);
    font-family: 'Outfit';
}

.author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.booking-info {
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.booking-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.booking-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.booking-perks {
    list-style: none;
    margin-bottom: 3rem;
}

.booking-perks li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.booking-perks i {
    font-size: 1.2rem;
}

.scarcity-alert {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.booking-form-card {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

input,
select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.required {
    color: #ef4444;
}

.alert {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #0f172a;
    color: #94a3b8;
}

.footer .grid {
    grid-template-columns: 2fr 1fr 1fr;
}

.footer-brand .logo-container {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 300px;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr !important;
    }

    .hero {
        text-align: center;
    }

    .hero-pricing,
    .pwa-availability,
    .hero-ctas {
        justify-content: center;
    }

    .mock-ui {
        transform: none;
        margin: 3rem auto 0;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding: 3rem;
    }

    .booking-form-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}