/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Colors - Premium Dark Theme */
    --navy-deep: #050505; /* Rich Black */
    --navy-light: #121212; /* Slate Grey */
    --navy-lighter: #1A1A1D; /* Elevated Slate */
    --blue-primary: #E53935; /* Sharp Red Accent */
    --blue-hover: #D32F2F; 
    --orange-primary: #b71c1c; /* Deep Crimson for gradients */
    --orange-hover: #8e0000;
    --white: #F5F5F5; /* Crisp Off-White */
    --gray-100: #222222;
    --gray-300: #a0a0a0;
    --gray-400: #666666;
    --gray-600: #333333;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    background: var(--navy-deep);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-accent {
    color: var(--blue-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: #050505;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-icon {
    position: relative;
    z-index: 1;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #ff4b4b, var(--orange-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.badge-icon {
    color: var(--blue-primary);
    flex-shrink: 0;
}

/* ==========================================
   HERO VISUAL
   ========================================== */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(229, 57, 53, 0.2));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-element {
    position: absolute;
    background: rgba(229, 57, 53, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 16px;
    padding: 1rem;
    color: var(--blue-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.element-1 { top: 10%; right: 10%; animation: float 4s ease-in-out infinite; }
.element-2 { bottom: 20%; left: 5%; animation: float 5s ease-in-out infinite 1s; }
.element-3 { top: 50%; right: 0; animation: float 4.5s ease-in-out infinite 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* ==========================================
   BACKGROUND DECORATIONS
   ========================================== */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
}

.decoration-1 {
    width: 600px;
    height: 600px;
    background: var(--blue-primary);
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.decoration-2 {
    width: 500px;
    height: 500px;
    background: var(--orange-primary);
    bottom: -150px;
    left: -150px;
    animation: pulse 10s ease-in-out infinite 2s;
}

.decoration-3 {
    width: 400px;
    height: 400px;
    background: var(--blue-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 12s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.1); }
}

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

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

/* ==========================================
   DEMO SECTION
   ========================================== */
.demo-section {
    min-height: 100vh;
    width: 100%;
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* ==========================================
   INDUSTRY SELECTOR
   ========================================== */
.industry-selector {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
}

.selector-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.industry-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--navy-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateX(8px);
    background: var(--gray-100);
    border-color: rgba(229, 57, 53, 0.3);
}

.industry-card.active {
    background: rgba(229, 57, 53, 0.1);
    border-color: var(--blue-primary);
}

.industry-card.active::before {
    opacity: 0.1;
}

.industry-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.industry-name {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* ==========================================
   DEMO PREVIEW
   ========================================== */
.demo-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.browser-frame {
    background: var(--navy-deep);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.browser-header {
    background: var(--navy-light);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-url {
    flex: 1;
    background: var(--navy-deep);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lock-icon {
    color: var(--gray-400);
    flex-shrink: 0;
}

.browser-actions {
    color: var(--gray-400);
}

.browser-content {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--navy-deep);
}

#demo-iframe {
    width: 100%;
    flex-grow: 1;
    height: 100%;
    border: none;
    border-radius: 0 0 8px 8px;
    background-color: var(--navy-deep);
}

.loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.loading-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(229, 57, 53, 0.2);
    border-top-color: var(--blue-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

#loading-industry {
    color: var(--blue-primary);
}

.preview-caption {
    text-align: center;
    color: var(--gray-300);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preview-caption strong {
    color: var(--blue-primary);
    font-weight: 700;
}

.caption-icon {
    color: var(--blue-primary);
}

/* ==========================================
   DEMO NOTICE & CTA
   ========================================== */
.demo-notice {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: none;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.demo-notice.active {
    display: flex;
}

.notice-icon {
    color: var(--blue-primary);
    flex-shrink: 0;
}

.demo-notice p {
    color: var(--gray-300);
    margin: 0;
}

.demo-cta {
    text-align: center;
    padding: 3rem 0 1rem;
}

.cta-text {
    font-size: 1.5rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.cta-text strong {
    color: var(--white);
    font-weight: 700;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--navy-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    border-color: var(--blue-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
    -webkit-background-clip: text;
    background-clip: text;
    filter: grayscale(0);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================
   RESULTS SECTION
   ========================================== */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: var(--navy-lighter);
    box-shadow: 0 12px 32px rgba(229, 57, 53, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number, .stat-number-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.stat-percent, .stat-unit, .stat-currency {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    display: inline-block;
}

.stat-unit { margin-left: 0.25rem; }
.stat-currency { margin-right: 0.25rem; }

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--gray-300);
}

/* Testimonials */
.testimonials-header {
    text-align: center;
    margin: 5rem 0 3rem;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: var(--navy-lighter);
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow: 0 12px 32px rgba(229, 57, 53, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-info { flex: 1; }
.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.author-title {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    align-items: start;
}

.pricing-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Featured Card (Professional) */
.pricing-card.featured {
    background: var(--navy-lighter);
    border-color: var(--blue-primary);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(229, 57, 53, 0.2);
}

/* Badges */
.pricing-badge {
    display: inline-block;
    background: var(--navy-lighter);
    border: 1px solid var(--gray-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pricing-badge.highlight {
    background: linear-gradient(135deg, var(--blue-primary), var(--orange-primary));
    border: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.4);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-right: 0.25rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-left: 0.5rem;
}

.free-trial-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.includes-text {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li strong {
    color: var(--blue-primary);
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-card.featured .pricing-cta {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 4rem;
}

.pricing-disclaimer {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.custom-pricing {
    background: rgba(229, 57, 53, 0.05);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    display: inline-block;
}

.custom-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.industry-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--blue-primary);
}

.industry-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.industry-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.industry-use-cases {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.industry-use-cases li {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 2;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.industry-use-cases li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

.industry-link {
    color: var(--blue-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.industry-link:hover {
    color: var(--blue-hover);
    transform: translateX(4px);
    display: inline-block;
}

.outbound-link {
    color: var(--blue-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin-top: auto;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.outbound-link:hover {
    color: var(--blue-hover);
    transform: translateX(4px);
}

.industries-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.industries-footer-text {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--blue-primary);
}

.faq-question {
    width: 100%;
    background: var(--navy-lighter);
    border: 1px solid var(--gray-600);
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--blue-primary);
}

.faq-icon {
    color: var(--blue-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (min-width: 769px) {
    .contact-grid { grid-template-columns: 60% 40%; }
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--navy-lighter);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: var(--gray-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-deep); color: var(--white); }

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--gray-300);
    margin: 0;
}

.business-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.business-hours p {
    color: var(--gray-300);
    margin: 0.5rem 0;
}

.in-person-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.in-person-note p {
    color: var(--white);
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--navy-deep);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.footer-divider {
    color: var(--gray-600);
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ==========================================
   MAXIMIZE BUTTON & FULLSCREEN OVERLAY
   ========================================== */
.maximize-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

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

.fullscreen-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    background: var(--navy-deep);
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
}

.fullscreen-overlay.active {
    display: flex;
    pointer-events: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fullscreen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: var(--navy-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.fullscreen-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-deep);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--gray-300);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fullscreen-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.fullscreen-close:hover {
    background: rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.4);
}

.fullscreen-overlay iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    background: var(--navy-deep);
}

/* ==========================================
   EMAIL SUBSCRIBE SECTION
   ========================================== */
.subscribe-section {
    padding: 5rem 0;
    background: var(--navy-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.subscribe-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.subscribe-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.subscribe-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--navy-lighter);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: var(--gray-100);
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.subscribe-privacy {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 0;
}

/* ==========================================
   TRIPLE CONTACT MODAL
   ========================================== */
.contact-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
}

.contact-modal-overlay.active {
    display: flex;
    pointer-events: auto;
}

.contact-modal {
    background: var(--navy-light);
    border: 1px solid var(--gray-600);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}

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

.contact-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.contact-modal-close:hover {
    color: var(--blue-primary);
    background: var(--navy-lighter);
}

.contact-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-modal-subtitle {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--gray-600);
    border-radius: 12px;
    background: var(--navy-lighter);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: var(--font-primary);
}

.contact-option:hover {
    border-color: var(--blue-primary);
    background: var(--gray-100);
    transform: translateX(4px);
}

.contact-option-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-option-text {
    flex: 1;
    text-align: left;
}

.contact-option-text strong {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.contact-option-text span {
    color: var(--gray-300);
    font-size: 0.85rem;
}

.contact-option svg {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-option:hover svg {
    color: var(--blue-primary);
    transform: translateX(4px);
}

/* ==========================================
   AUDIT SECTION & FLOATING FORM
   ========================================== */
.audit-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.audit-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.audit-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.audit-highlight-item:hover {
    transform: translateY(-4px);
    background: var(--navy-lighter);
    border-color: rgba(229, 57, 53, 0.3);
}

.audit-highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.audit-highlight-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
}

.audit-cta-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.audit-form-container {
    max-width: 800px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    background-color: var(--navy-lighter);
    border: 1px solid var(--gray-600);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    pointer-events: none;
}

.audit-form-container.active {
    max-height: 600px;
    opacity: 1;
    margin: 2rem auto;
    pointer-events: auto;
}

.audit-form {
    padding: 2.5rem;
}

.audit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.audit-form .form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.audit-form .form-group input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    width: 100%;
}

.audit-form .form-group input:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: var(--gray-100);
}

.audit-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.audit-submit {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   4-COLUMN PRICING GRID & 4-COLUMN STATS
   ========================================== */
.pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .audit-highlights { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .hero-grid { gap: 3rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    /* Full width constraints for mobile */
    body, html { width: 100vw; overflow-x: hidden; }
    .container { width: 100%; max-width: 100vw; padding: 0 1.5rem; }
    section { width: 100%; overflow-x: hidden; }
    .hero, .demo-section, .features-section, .results-section, .pricing-section, 
    .industries-section, .faq-section, .contact-section, footer, .subscribe-section {
        width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
        padding-left: 0; padding-right: 0;
    }
    .hero-grid, .demo-grid, .section-header, .features-grid, .stats-row, 
    .testimonials-grid, .pricing-grid, .industries-grid, .faq-container, .contact-grid,
    .subscribe-content { width: 100%; }
    
    .nav-menu {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(12px);
        padding: 2rem; flex-direction: column; align-items: stretch; gap: 1.5rem;
        transform: translateY(-100%); opacity: 0; visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; display: flex; }
    .nav-link { padding: 0.75rem; border-radius: 8px; }
    .nav-link:hover { background: rgba(229, 57, 53, 0.1); }
    .nav-cta { width: 100%; justify-content: center; }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    body.menu-open { overflow: hidden; }
    
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding: 2rem 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-cta { flex-direction: column; }
    .btn-large { width: 100%; justify-content: center; }
    .trust-badges { margin-top: 2rem; }
    .hero-visual { order: -1; }
    .floating-element { padding: 0.75rem; }
    .floating-element svg { width: 32px; height: 32px; }
    
    .section-title { font-size: 2.25rem; }
    .section-subtitle { font-size: 1.1rem; }
    .industry-cards { grid-template-columns: 1fr; }
    .industry-card { padding: 1rem; }
    .industry-card:hover { transform: translateX(4px); }
    .browser-content { height: 400px; }
    .browser-header { padding: 0.75rem 1rem; }
    .cta-text { font-size: 1.25rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 2rem; }
    .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .stat-number, .stat-number-text { font-size: 3rem; }
    .stat-percent, .stat-unit, .stat-currency { font-size: 2rem; }
    .testimonials-title { font-size: 1.75rem; }
    .testimonial-card { padding: 2rem; }
    
    .pricing-card { padding: 2rem; }
    .tier-name { font-size: 1.75rem; }
    .price-amount { font-size: 3rem; }
    .price-currency { font-size: 1.5rem; }
    .price-period { font-size: 1rem; }
    .custom-text { font-size: 1.15rem; }
    .pricing-grid-4 { grid-template-columns: 1fr; }
    
    .industries-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .faq-question { padding: 1.25rem 1.5rem; font-size: 1rem; }
    .faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; }
    
    .contact-title { font-size: 2rem; }
    .contact-subtitle { font-size: 1rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-info { padding: 2rem; }
    
    .audit-highlights { grid-template-columns: 1fr; }
    .audit-form-grid { grid-template-columns: 1fr; }
    .subscribe-input-group { flex-direction: column; }
    .subscribe-title { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-large { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
    .badge-item { font-size: 0.875rem; }
}