@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=DM+Serif+Display&display=swap');

/* ==========================================================================
   Parking Breeze - Elite Studio Theme
   ========================================================================== */

/* Override global variables for this elite product with high specificity */
html body.product-page {
    /* Brand Accent: Sophisticated Oceanic Blue / Emerald for Logistics/Trust */
    --brand-primary: #04828b;
    --brand-secondary: #025960;
    --brand-accent: #0f4c75;

    /* Studio Light Theme Core - Overriding styles.css */
    --bg-primary: #ffffff;
    --bg-secondary: #f6f6f6;
    --bg-tertiary: #eff3fa;

    --text-primary: #1f3130;
    /* Odextra Dark Forest Green */
    --text-secondary: #506767;
    --text-muted: #8fa5a5;

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Cards & Borders */
    --card-bg: #ffffff;
    --card-border: rgba(31, 49, 48, 0.08);
    --shadow-soft: 0 10px 40px rgba(31, 49, 48, 0.05);
    --shadow-hover: 0 20px 60px rgba(4, 130, 139, 0.1);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Typography Overrides - Force product-page scope */
body.product-page {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body.product-page h1,
body.product-page h2,
body.product-page h3,
body.product-page h4,
body.product-page h5,
body.product-page h6,
body.product-page .brand-text {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: normal;
}

/* Background Grids (Subtle elegant grid) */
body.product-page.bg-grid {
    background-image: linear-gradient(to right, rgba(31, 49, 48, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(31, 49, 48, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Specific Colors & Accents */
.highlight-brand {
    color: var(--brand-primary);
}

/* Badges */
.badge.premium-badge {
    background: rgba(4, 130, 139, 0.1);
    border: 1px solid rgba(4, 130, 139, 0.2);
    color: var(--brand-primary);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Navigation Overrides */
.product-brand .brand-icon {
    color: var(--brand-primary);
    margin-right: 0.5rem;
    font-size: 2rem;
    vertical-align: middle;
}

.product-brand .brand-text {
    font-size: 1.5rem;
    position: relative;
    top: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(4, 130, 139, 0.3);
}

.btn-primary:hover {
    background: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 130, 139, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: rgba(31, 49, 48, 0.2);
    transform: translateY(-2px);
}

.btn-secondary i {
    margin-right: 0.5rem;
    color: var(--brand-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Hero Modifications */
.product-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Split Layout Utilities */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ==========================================================================
   Premium Interface Mockups (Bento Boxes & Dashboards)
   ========================================================================== */
.ui-mockup,
.screenshot-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

.ui-mockup:hover,
.screenshot-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(4, 130, 139, 0.2);
    transform: translateY(-5px);
}

/* Fake Browser/App Header */
.mockup-header {
    height: 44px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}

.mockup-header .dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    /* Soft gray instead of garish Mac colors */
}

/* Specific main hero mockup */
.hero-mockup {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.mockup-content {
    flex: 1;
    padding: 2rem;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mockup-content i {
    font-size: 3rem;
    color: var(--brand-primary);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.mockup-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.mockup-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 80%;
}

/* Floating Badges for Hero Image */
.float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--card-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    animation: floatWidget 6s ease-in-out infinite alternate;
}

.float-badge i {
    color: var(--brand-primary);
    font-size: 1.4rem;
}

.badge-1 {
    top: 10%;
    left: -30px;
}

.badge-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: -3s;
}

@keyframes floatWidget {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Section Grids */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.pl-lg {
    padding-left: 2rem;
}

/* Typography Utilities */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle,
.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Lists */
.tick-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.tick-list i {
    color: var(--brand-primary);
    font-size: 1.3rem;
    background: rgba(4, 130, 139, 0.1);
    padding: 5px;
    border-radius: 50%;
    position: relative;
    top: -2px;
}

/* Sections Base */
.overview-section,
.monetization-section {
    padding: 8rem 0;
    position: relative;
}

.features-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(4, 130, 139, 0.05);
    color: var(--brand-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(4, 130, 139, 0.1);
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Pricing/Monetization Tier Visuals */
.pricing-tier-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-tier {
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.pricing-tier:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-soft);
}

.tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tier-primary {
    background: var(--text-primary);
    color: #fff;
}

.tier-primary i {
    color: #fff;
}

.tier-info h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.tier-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--text-primary);
    color: #ffffff;
    border-radius: 24px;
    margin: 4rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(4, 130, 139, 0.3);
}

.cta-btn:hover {
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* Footer addition */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--card-border);
}

.footer-logo {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .split-hero,
    .grid-2-col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.large {
        grid-column: span 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .float-badge {
        display: none;
    }

    .cta-section {
        margin: 2rem 1rem;
        padding: 5rem 1rem;
    }
}