/* =================================================================
   Alert Networks - Unified Stylesheet
   ================================================================= */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* =================================================================
   CSS Custom Properties (Variables)
   ================================================================= */
:root {
    --overlay-opacity: 0.75;
    --overlay-color: rgba(13, 31, 56, var(--overlay-opacity));
    
    /* Color Palette */
    --primary-blue: #007AFF;
    --secondary-blue: #0051D5;
    --success-green: #34c759;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --background-light: #f5f5f7;
    --background-white: #ffffff;
    --navy-dark: #1d1d1f;
    --orange-gradient-start: #ff6b35;
    --orange-gradient-end: #f7931e;
}

/* =================================================================
   Reset & Base Styles
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background-light);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =================================================================
   Header & Navigation - Universal Header Styles
   ================================================================= */
#universal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1e3a5f !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled state */
#universal-header.scrolled {
    background: #0d1f38 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#universal-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

#universal-header .logo {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

#universal-header .logo:hover {
    color: #007aff;
}

/* Desktop Navigation */
#universal-header .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-shrink: 1;
    min-width: 0;
}

#universal-header .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
}

#universal-header .nav-links a:hover {
    color: #007aff;
    background: rgba(255, 255, 255, 0.1);
}

#universal-header .nav-cta {
    background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 1001;
}

#universal-header .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Mobile menu button - hidden by default */
#universal-header .mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.3rem;
    flex-shrink: 0;
    z-index: 1001;
}

#universal-header .mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 1px;
    transition: 0.3s;
}

#universal-header .mobile-menu:hover span {
    background: #007aff;
}

/* Mobile menu animation */
#universal-header .mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

#universal-header .mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

#universal-header .mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile navigation menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 5rem;
    padding-bottom: 2rem;
    display: none; /* Hidden by default */
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
    display: block;
    border-radius: 8px;
    margin: 0 2rem;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-cta {
    background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
    color: white;
    margin: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* =================================================================
   Hero Section - Unified
   ================================================================= */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, var(--overlay-color), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
    padding-top: 0;
}

/* Page-specific hero backgrounds */
.hero.leads-hero {
    background: 
        linear-gradient(135deg, rgba(9, 104, 229, 0.85), rgba(9, 25, 112, 0.8)),
        url('../images/commercial_water_loss_1.webp') center/cover no-repeat !important;
}

.hero.assets-hero {
    background: 
        linear-gradient(135deg, rgba(9, 104, 229, 0.65), rgba(9, 25, 112, 0.5)),
        url('../images/city-network-bg.webp') center/cover no-repeat !important;
}

/* Network Connection Overlay */
.network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.location-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Pin Positions */
.pin-1 { top: 15%; left: 12%; animation-delay: 0s; }
.pin-2 { top: 25%; right: 18%; animation-delay: 0.5s; }
.pin-3 { top: 45%; left: 8%; animation-delay: 1s; }
.pin-4 { top: 35%; right: 25%; animation-delay: 1.5s; }
.pin-5 { bottom: 35%; left: 20%; animation-delay: 2s; }
.pin-6 { bottom: 25%; right: 15%; animation-delay: 2.5s; }
.pin-7 { top: 60%; left: 45%; animation-delay: 3s; }
.pin-8 { top: 20%; left: 60%; animation-delay: 0.3s; }

/* Hero Content */
.hero-content {
    max-width: 900px;
    color: white;
    z-index: 10;
    position: relative;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.04em;
}

.hero .subheadline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* CTA Section Specific Styles */
.cta-section {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #2d2d30 100%) !important;
    color: white;
    padding: 3rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-section .subheadline {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-section .cta-primary,
.cta-section .cta-secondary {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    min-width: 200px;
}

.cta-secondary-alt {
    background: transparent !important;
    border-color: white !important;
    color: white !important;
}

/* =================================================================
   Services Section - Unified
   ================================================================= */
.services {
    padding: 100px 0;
    background: var(--background-white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 48px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, #5ac8fa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 122, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    text-align: center;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
}

.service-card p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-cta {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: stretch;
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.service-cta:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
}

/* =================================================================
   Timing Section (Leads Page)
   ================================================================= */
.timing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.timing-main-card {
    background: linear-gradient(135deg, rgba(0, 3, 40, 0.2) 0%, rgba(0, 69, 142, 0.2) 100%),
        url('../images/residential_fire_1.webp') center/cover no-repeat;
    color: white;
    padding: 48px 40px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.timing-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.timing-stat {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.stat-large {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(45deg, var(--orange-gradient-start), var(--orange-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.stat-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.timing-main-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timing-main-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.timing-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.2);
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.timing-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(0, 122, 255, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.stat-item-inline {
    text-align: center;
}

.stat-number-small {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 122, 255, 0.2);
}

/* =================================================================
   Story Cards - Unified
   ================================================================= */
.story-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.story-image.fire-damage {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('/images/residential_fire_1.webp');
}

.story-image.water-damage {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('/images/commercial_water_loss_1.webp');
}

.story-image.storm-damage {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('/images/residential_fire_3.webp');
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    z-index: 1;
}

.story-image .story-icon {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.story-content {
    padding: 32px;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #666;
}

.story-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.story-result {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

/* =================================================================
   Pricing Section - Unified
   ================================================================= */
.pricing-plan {
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-plan:hover,
.pricing-plan:focus,
.pricing-plan.active {
    border: 2px solid var(--primary-blue) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.15);
}

.pricing-plan.featured {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.plan-header {
    margin-bottom: 32px;
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.plan-billing {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.plan-best-for {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(0, 122, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    display: inline-block;
}

.plan-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.plan-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-name {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    margin-right: 16px;
}

.feature-value {
    color: var(--text-secondary);
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.feature-check {
    width: 16px;
    height: 16px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-dash {
    color: #d1d5db;
    font-weight: 400;
    flex-shrink: 0;
}

/* Pricing services grid - 3 columns */
.pricing-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-services-grid .service-card {
    width: 100%;
    height: auto;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.pricing-services-grid .service-card::before {
    display: none !important;
}

.pricing-services-grid .features-list {
    flex-grow: 1;
}

/* =================================================================
   Feature Deep Dive
   ================================================================= */
.feature-deep-dive {
    background: white;
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.feature-detail {
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    border-left: 4px solid #ff6b35;
}

.feature-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.feature-detail p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-highlight {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Alert box */
.alert-box {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.alert-box p {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

/* Step number */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* =================================================================
   Stats Section - Unified
   ================================================================= */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-grid)"/></svg>');
    opacity: 0.3;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats .section-subtitle {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666 !important;
    font-weight: 500;
}

/* =================================================================
   Assets Specific Styles
   ================================================================= */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.asset-type {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.asset-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.asset-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

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

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin-top: 64px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.savings-item {
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.savings-item:nth-child(1) {
    background: linear-gradient(135deg, #99d17b 0%, #7bc97e 100%);
}

.savings-item:nth-child(2) {
    background: linear-gradient(135deg, #444444 0%, #555555 100%);
}

.savings-item:nth-child(3) {
    background: linear-gradient(135deg, #ee5b4f 0%, #f06862 100%);
}

.savings-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.savings-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.95;
}

/* App buttons */
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.app-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-button:hover {
    transform: translateY(-4px);
}

.app-button img {
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   Testimonials Section - Unified
   ================================================================= */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-grid)"/></svg>');
    opacity: 0.3;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    border: 2px solid rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.testimonial-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary-blue), #5ac8fa);
}

.testimonial-quote {
    margin-bottom: 24px;
    position: relative;
    margin-top: -8px;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 107, 53, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: bold;
    text-align: center;
    display: block;
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
    text-align: center;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.company-rating {
    text-align: right;
}

.stars {
    font-size: 1.25rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Simple testimonials for assets page */
.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-secondary);
}

/* =================================================================
   FAQ Section - Unified
   ================================================================= */
.faq {
    padding: 100px 0;
    background: var(--background-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 32px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 122, 255, 0.05);
}

.faq-question span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 32px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* =================================================================
   Mobile App Section - Unified
   ================================================================= */
.mobile-app-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mobile-app-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mobile-app-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.mobile-app-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.leads-card::before {
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}

.assets-card::before {
    background: linear-gradient(90deg, #4ecdc4, #45b7d1);
}

.app-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.app-icon {
    font-size: 3rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.app-card-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.app-card-title p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.app-features-list {
    margin-bottom: 2rem;
}

.app-features-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-features-list .feature-item:last-child {
    margin-bottom: 0;
}

.check {
    color: #4ecdc4;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.app-buttons-card {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.app-store-button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    min-height: 70px;
    max-width: 48%;
}

.app-store-button:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.app-store-button img {
    height: auto;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.ios-button img {
    height: 50px;
}

.android-button img {
    height: 70px;
}

/* =================================================================
   Footer - Unified
   ================================================================= */
footer {
    background: var(--navy-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), #5ac8fa);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

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

/* =================================================================
   Animations
   ================================================================= */
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================================================
   Demo Page Styles
   ================================================================= */

/* Demo Hero Section */
.demo-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(9, 104, 229, 0.85), rgba(9, 25, 112, 0.8));
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.demo-hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 104, 229, 0.85), rgba(9, 25, 112, 0.8));
    z-index: -1;
}

.demo-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="demo-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23demo-grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.demo-hero > * {
    position: relative;
    z-index: 2;
}

/* Compact Header Section */
.hero-header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-header p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 350px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Compact Demo Stats */
.demo-stats-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Booking Section - More Compact */
.booking-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.booking-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.booking-header {
    margin-bottom: 1.5rem;
}

.booking-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Calendly Mobile Optimization */
.calendly-mobile {
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendly-inline-widget {
    border-radius: 12px !important;
}

/* Benefits List - More Compact */
.benefits-compact {
    text-align: left;
    margin: 1rem 0;
}

.benefits-compact ul {
    list-style: none;
    padding: 0;
}

.benefits-compact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.benefits-compact li::before {
    content: "✓";
    color: #34c759;
    font-weight: bold;
    margin-right: 0.6rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Asset Tracking Teaser - Compact */
.asset-teaser {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.asset-teaser:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.asset-teaser h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.asset-teaser p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.asset-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.asset-features .feature-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.asset-features .feature-item strong {
    color: #ffffff;
    display: block;
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Phone Call Alternative */
.phone-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.phone-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.phone-option p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.phone-link:hover {
    color: #f0f8ff;
    transform: translateY(-1px);
}

/* Demo Page Responsive Styles */
@media (max-width: 375px) {
    .calendly-mobile .calendly-inline-widget {
        height: 450px !important;
    }
    
    .hero-header h1 {
        font-size: 1.8rem;
    }
    
    .booking-section {
        margin: 0 0.25rem;
        padding: 1.25rem 0.75rem;
    }
    
    .demo-stats-compact {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stat-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .demo-hero {
        max-width: 600px;
        margin: 0 auto;
        padding: 3rem 2rem;
    }
    
    .hero-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-header p {
        font-size: 1.2rem;
        max-width: 450px;
    }
    
    .demo-stats-compact {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-pill {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .booking-section {
        margin: 0;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .booking-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .booking-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    
    .calendly-mobile .calendly-inline-widget {
        height: 600px !important;
    }
    
    .benefits-compact {
        margin: 2rem 0;
    }
    
    .benefits-compact li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .asset-teaser {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .asset-teaser h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: #ffffff;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    
    .asset-teaser p {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .phone-option {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .phone-option p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .phone-link {
        font-size: 1.2rem;
        color: #ffffff;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
}

@media (min-width: 1024px) {
    .demo-hero {
        max-width: 700px;
        padding: 4rem 2rem;
    }
    
    .hero-header h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .hero-header p {
        font-size: 1.3rem;
        max-width: 500px;
    }
    
    .demo-stats-compact {
        gap: 2rem;
        margin: 2.5rem 0;
    }
    
    .stat-pill {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 25px;
    }
    
    .booking-section {
        padding: 3rem 2.5rem;
        border-radius: 24px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }
    
    .booking-header h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .booking-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    
    .calendly-mobile .calendly-inline-widget {
        height: 650px !important;
    }
    
    .benefits-compact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 2rem;
        margin: 2.5rem 0;
        text-align: left;
    }
    
    .benefits-compact ul {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 2rem;
    }
    
    .benefits-compact li {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .asset-teaser {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .asset-teaser h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    
    .asset-teaser p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .asset-teaser .calendly-mobile .calendly-inline-widget {
        height: 500px !important;
    }
}

@media (min-width: 1200px) {
    .demo-hero {
        max-width: 800px;
        padding: 5rem 2rem;
    }
    
    .hero-header h1 {
        font-size: 3.5rem;
        letter-spacing: -0.02em;
    }
    
    .hero-header p {
        font-size: 1.4rem;
        max-width: 600px;
    }
    
    .booking-section {
        padding: 3.5rem 3rem;
    }
    
    .demo-stats-compact {
        gap: 2.5rem;
        margin: 3rem 0;
    }
    
    .stat-pill {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        font-weight: 700;
    }
}

/* =================================================================
   Utility Classes
   ================================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =================================================================
   Header Responsive Media Queries
   ================================================================= */

/* Large screens - everything visible */
@media (min-width: 1200px) {
    #universal-header .nav-links {
        display: flex !important;
    }
    #universal-header .nav-cta {
        display: inline-block !important;
    }
    #universal-header .mobile-menu {
        display: none !important;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* Medium-large screens - still show desktop nav but smaller gaps */
@media (max-width: 1199px) and (min-width: 992px) {
    #universal-header nav {
        padding: 1rem 1.5rem;
    }
    #universal-header .nav-links {
        gap: 1.5rem;
        display: flex !important;
    }
    #universal-header .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    #universal-header .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        display: inline-block !important;
    }
    #universal-header .mobile-menu {
        display: none !important;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* Medium screens - smaller nav items */
@media (max-width: 991px) and (min-width: 768px) {
    #universal-header nav {
        padding: 1rem 1.5rem;
    }
    #universal-header .nav-links {
        gap: 1rem;
        display: flex !important;
    }
    #universal-header .nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    #universal-header .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        display: inline-block !important;
    }
    #universal-header .mobile-menu {
        display: none !important;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* Small screens and below - mobile menu */
@media (max-width: 767px) {
    #universal-header nav {
        padding: 1rem;
    }
    #universal-header .logo {
        font-size: 1.4rem;
    }
    #universal-header .nav-links {
        display: none !important;
    }
    #universal-header .nav-cta {
        display: none !important;
    }
    #universal-header .mobile-menu {
        display: flex !important;
    }
    .mobile-nav {
        display: block !important;
    }
}

/* Extra custom breakpoint for very cramped conditions */
@media (max-width: 900px) {
    #universal-header .nav-links {
        display: none !important;
    }
    #universal-header .nav-cta {
        display: none !important;
    }
    #universal-header .mobile-menu {
        display: flex !important;
    }
    .mobile-nav {
        display: block !important;
    }
}

/* =================================================================
   General Responsive Design
   ================================================================= */
@media (max-width: 1200px) {
    .pricing-services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .container, nav {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 600px;
    }
}

@media (max-width: 900px) {
    .pricing-services-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        max-width: 500px;
    }
    
    .pricing-services-grid .service-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .container, nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero .subheadline {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services, .stats, .faq {
        padding: 80px 0;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        margin: 8px 0;
        text-align: center;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    /* Timing section mobile */
    .timing-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timing-stats-bar {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .stat-large {
        font-size: 3.5rem;
    }
    
    .timing-main-card h3 {
        font-size: 1.5rem;
    }
    
    /* Feature grid mobile */
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
    }
    
    /* Testimonials mobile */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-card.featured {
        transform: none;
        margin: 0;
    }
    
    .quote-icon {
        font-size: 3rem;
        text-align: center;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .trust-divider {
        width: 60px;
        height: 1px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    
    .company-rating {
        text-align: center;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 2.5rem 0;
        min-height: 50vh;
    }
    
    .cta-section h2 {
        font-size: 2.8rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-section .subheadline {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .cta-section .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-section .cta-primary,
    .cta-section .cta-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
    }
    
    /* Mobile app section mobile */
    .mobile-app-section {
        padding: 3rem 0;
    }
    
    .mobile-app-section h2 {
        font-size: 2rem;
    }
    
    .mobile-app-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .app-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .app-card {
        padding: 2rem 1.5rem;
        min-width: unset;
    }
    
    .app-card-header {
        margin-bottom: 1.5rem;
    }
    
    .app-icon {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
    
    .app-card-title h3 {
        font-size: 1.3rem;
    }
    
    .app-buttons-card {
        gap: 0.5rem;
        margin-top: 0.25rem;
    }
    
    .app-store-button {
        min-height: 60px;
    }
    
    .ios-button img {
        height: 42px;
    }
    
    .android-button img {
        height: 58px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .trust-indicators {
        gap: 20px;
        padding: 24px 20px;
    }
    
    .cta-section {
        min-height: 45vh;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section .subheadline {
        font-size: 1.1rem;
    }
    
    .mobile-app-section h2 {
        font-size: 1.8rem;
    }
    
    .app-card {
        padding: 1.5rem 1rem;
    }
    
    .app-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-icon {
        margin-right: 0;
    }
    
    .ios-button img {
        width: 110px;
        height: 33px;
    }
    
    .android-button img {
        width: 125px;
        height: 48px;
    }
    
    .app-buttons-card {
        gap: 0.25rem;
    }
}

.hero.construction-hero {
    background: 
        linear-gradient(135deg, rgba(9, 104, 229, 0.85), rgba(9, 25, 112, 0.8)),
        url('../images/construction-hero.png') center/cover no-repeat !important;
}