/* 
  Aloj Landing Page Styles 
  Style: SaaS Premium 2025 (Teal/Violet/Dark)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    /* Palette */
    --brand-teal: #fd9644;
    /* Now Orange */
    --brand-teal-light: #ffb07c;
    /* Lighter Orange */
    --brand-violet: #5B3FFF;
    --brand-coral: #FF8A80;

    --bg-dark: #070B11;
    --bg-dark-secondary: #0B1020;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;

    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #070B11 0%, #151B3C 100%);
    --gradient-brand: linear-gradient(135deg, var(--brand-teal) 0%, #e056fd 100%);
    /* Orange to Purple/Pink */
    --gradient-brand-hover: linear-gradient(135deg, #e58e26 0%, #be2edd 100%);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(253, 150, 68, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-brand-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary-dark {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid #E5E7EB;
}

.btn-secondary-dark:hover {
    border-color: var(--text-secondary);
    background-color: var(--bg-light);
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 181, 173, 0.1);
    color: var(--brand-teal);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 181, 173, 0.2);
}

.badge-hero {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-teal-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* --- Header --- */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Transparent initially */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-teal);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--brand-teal-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-login {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
    position: relative;
}

.nav-login::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-teal);
    transition: width 0.3s;
}

.nav-login:hover::after {
    width: 100%;
}

.nav-btn-create {
    padding: 10px 20px;
    background: var(--text-white);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn-create:hover {
    background: var(--brand-teal-light);
    color: var(--bg-dark);
}


/* --- Hero Section --- */
.hero {
    padding: 180px 0 140px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

/* Decorative Blobs */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: rgba(91, 63, 255, 0.2);
    top: -100px;
    right: -50px;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: rgba(0, 181, 173, 0.15);
    bottom: 50px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    /* 56px */
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.hero-content p {
    font-size: 1.25rem;
    /* 20px */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-bullets {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-bullet i {
    color: var(--brand-teal-light);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* --- Panel Capture Component (Reusable) --- */
.panel-capture {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.panel-capture:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.15);
}

/* Header of the capture (Window controls) */
.pc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.pc-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #EF4444;
}

.dot.yellow {
    background: #F59E0B;
}

.dot.green {
    background: #10B981;
}

.pc-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 12px;
    font-weight: 500;
}

/* Body of the capture */
.pc-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pc-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Stats Grid inside capture */
.pc-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pc-stat-card {
    background: #F8FAFC;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.pc-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-teal);
    line-height: 1.2;
}

.pc-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* List inside capture */
.pc-list {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.pc-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.85rem;
}

.pc-list-row:last-child {
    border-bottom: none;
}

.pc-list-name {
    font-weight: 500;
    color: var(--text-primary);
}

.pc-badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pc-badge.confirmed {
    background: #D1FAE5;
    color: #065F46;
}

.pc-badge.pending {
    background: #FEF3C7;
    color: #92400E;
}

.pc-badge.checked-in {
    background: #DBEAFE;
    color: #1E40AF;
}

.pc-badge.clean {
    background: #D1FAE5;
    color: #065F46;
}

.pc-badge.occupied {
    background: #FEE2E2;
    color: #991B1B;
}

/* Hero specific override for 3D effect */
.hero-capture {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-capture:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}


/* --- Benefits Section --- */
.benefits {
    background-color: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Split Layouts (Benefits, Features, Audience) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-layout.reverse {
    /* Image Left, Text Right */
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Keep 2x2 grid for text cards */
    gap: 32px;
}

.benefit-card {
    /* Simplified card */
    background: var(--bg-white);
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E0F2F1 0%, #CCFBF1 100%);
    color: var(--brand-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}


/* --- Features Section --- */
.features {
    background-color: var(--bg-light);
}

.features-text-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-group {
    /* Removed card styling, just text blocks */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.feature-group h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-group h3 i {
    color: var(--brand-violet);
    font-size: 1.2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    color: var(--brand-teal);
    margin-top: 4px;
    background: rgba(0, 181, 173, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.7rem;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* --- How it Works --- */
.how-it-works {
    background-color: var(--bg-white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #F1F5F9;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 3px solid var(--brand-teal);
    color: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}


/* --- Audience Section --- */
.audience {
    background-color: var(--bg-light);
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.audience-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    border-color: var(--brand-teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    font-size: 2rem;
    color: var(--brand-violet);
    min-width: 48px;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* --- Pricing Section --- */
.pricing {
    background: linear-gradient(to bottom, var(--bg-white) 0%, #F0FDF4 100%);
    /* Subtle tint */
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 56px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.basic {
    border: 2px solid var(--brand-teal);
    box-shadow: 0 20px 40px -10px rgba(0, 181, 173, 0.15);
}

.badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-teal);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-card.pro {
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    opacity: 0.9;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.pricing-features li i {
    color: var(--brand-teal);
    font-size: 1.2rem;
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    position: relative;
    border: 1px solid #F1F5F9;
    box-shadow: var(--shadow-sm);
}

.quote-mark {
    font-size: 4rem;
    color: #F1F5F9;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--brand-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Final CTA --- */
.final-cta {
    background: var(--gradient-hero);
    color: var(--text-white);
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 63, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: var(--brand-teal);
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.final-cta .btn-primary:hover {
    background: var(--brand-teal-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 181, 173, 0.4);
}


/* --- Footer --- */
footer {
    background-color: #05060A;
    color: #9CA3AF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-links a:hover {
    color: var(--brand-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 0.9rem;
    color: #6B7280;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 64px;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-bullets {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* On mobile, ensure text comes before image even if reversed on desktop */
    .split-layout.reverse {
        display: flex;
        flex-direction: column;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide menu for MVP mobile */
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }
}