@import 'mobile_menu.css';
@import 'mobile_layout.css';

:root {
    /* VIBRANT BLUE THEME */
    --primary: #0066FF;
    /* Electric Blue */
    --primary-dark: #0052cc;
    --primary-gradient: linear-gradient(135deg, #00C6FF 0%, #0066FF 100%);
    --secondary-gradient: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);

    --text-main: #0f172a;
    /* Slate 900 */
    --text-body: #334155;
    /* Slate 700 */
    --text-muted: #64748b;
    /* Slate 500 */

    --bg-body: #F0F5FF;
    /* Light Blue Tint Background */

    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 20px 40px -5px rgba(0, 102, 255, 0.15);

    /* Rounded Shapes */
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-pill: 100px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
    /* GLOBAL BLOBS FIXED BACKGROUND */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 198, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 198, 255, 0.15) 0%, transparent 40%);
    background-attachment: fixed;
    /* Parallax feel */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    /* Tighter container for card look */
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.align-center {
    align-items: center;
}

/* --- BUTTONS (Pill Shape) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    color: var(--primary-dark);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* --- NAVBAR (Floating Glass Badge) --- */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    /* Actually Floating */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    padding: 16px 32px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* --- SECTIONS (Transparent to show blobs) --- */
section {
    padding: 100px 0;
    position: relative;
    background: transparent;
    /* KEY: Show Body Blobs */
}

/* HERO SECTION */
.hero-section {
    padding-top: 80px;
    /* Space for floating nav */
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Glass Card for Mockups/Features */
.glass-panel,
.mockup-card,
.feature-card,
.testimonial-card,
.pricing-card,
.problem-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    /* 30px Rounding */
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

/* Mockup Specific */
.mockup-card {
    padding: 20px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-img {
    border-radius: 20px;
}

/* SECTIONS SPECIFIC */

/* Step Cards */
.step-card {
    text-align: center;
    padding: 0 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: white;
    /* Make features pop */
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: #E0F2FE;
    display: inline-flex;
    padding: 15px;
    border-radius: 20px;
}

/* Problem / Solution */
/* Global Grid Utility */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.align-center {
    align-items: center;
}

.card {
    border-radius: var(--radius-lg);
    padding: 50px;
    height: 100%;
}

.problem-card {
    background: rgba(255, 255, 255, 0.5);
}

.solution-card {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 30px 60px -15px rgba(0, 102, 255, 0.2);
}

/* Testimonial */
.testimonial-card {
    background: var(--primary-gradient);
    /* Blue Card */
    color: white;
    text-align: center;
    padding: 80px 40px;
    margin: 0 auto;
    max-width: 900px;
}

.testimonial-card .quote-icon {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-card .quote-text {
    color: white;
}

.testimonial-card .user-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card h2,
.testimonial-card strong {
    color: white;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    padding: 40px;
    background: white;
}

.pricing-card.recommended {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.rec-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: white;
    padding: 80px 0 40px;
    border-top: 1px solid #e2e8f0;
    margin-top: 60px;
    border-radius: 60px 60px 0 0;
    /* Fun rounded top */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Mobile */
@media(max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 12px 20px;
    }

    .hero-grid,
    .problem-solution-section .grid-2,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }
}

/* --- MISSING LAYOUTS FIXED --- */

/* How It Works Grid */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }
}

/* Add connector line for desktop */
@media (min-width: 769px) {
    .step-connector {
        height: 2px;
        background: #e2e8f0;
        flex: 1;
        margin-top: 50px;
        /* Align with icon center approx */
    }
}

/* Owner Section Layout */
.owner-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .owner-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        margin-bottom: 40px;
    }
}

.feature-group {
    margin-bottom: 30px;
}

.feature-group h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Trust Section Icons */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* --- MISSING IMAGE & BADGE UTILITIES --- */
.full-width-img,
.response-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.sub-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-top: 20px;
}