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

body.prototype-body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light gray background */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: #007bff; /* Primary blue */
}

a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #212529; /* Darker heading color */
}

.bg-dark {
    background-color: #41688e;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-white {
    background-color: #ffffff;
}

/* Navigation */
.main-nav {
    /* background-color: #ffffff; */ /* Removed */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */ /* Removed */
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); /* Added gradient */
    padding: 10px 0; /* Adjusted padding slightly */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 10px; /* Add gap between logo and buttons */
}

/* New styles for logo and text wrapper */
.nav-logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from link */
}

.nav-logo {
    height: 50px; /* Increased height */
    margin-right: 10px; /* Add space between logo and text */
}

.nav-logo-text {
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: 600;
    color: #fff; /* White text color */
}

.nav-container > div:last-child {
    display: flex; /* Ensure buttons are in a row */
    align-items: center;
}

/* Adjust secondary button for gradient background */
.nav-container .btn-secondary { /* Increased specificity */
    background-color: rgba(255, 255, 255, 0.15); /* Slightly less transparent */
    color: #fff; /* Ensure white text */
    border: 1px solid #fff; /* Ensure white border */
}

.nav-container .btn-secondary:hover { /* Increased specificity */
    background-color: rgba(255, 255, 255, 0.25); /* Adjust hover background */
    color: #fff; /* Ensure white text on hover */
    transform: translateY(-2px);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex; /* Use inline-flex for alignment */
    align-items: center; /* Vertically align icon and text */
    justify-content: center; /* Center content */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none; /* Remove underline from button links */
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    text-decoration: none; /* Keep underline off on hover */
}

.btn-google .google-icon {
    font-size: 1.2rem; /* Adjust icon size */
    margin-right: 8px; /* Space between icon and text */
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    padding: 0;
    font-weight: normal;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); /* Match navbar gradient */
    padding: 60px 0; /* Adjust padding */
    text-align: left; /* Align text to the left for the content column */
    color: #fff; /* Default text color for the section */
}

/* App Download Section */
.app-download-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.app-download-content {
    max-width: 600px;
    margin: 0 auto;
}

.app-download-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: center;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-link {
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.app-store-link:hover:not(.disabled) {
    transform: translateY(-2px);
    text-decoration: none;
}

.app-store-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.app-store-image {
    height: 80px;
    width: auto;
}

/* Hero App Store Buttons */
.app-coming-soon-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-app-store-buttons .app-store-link {
    transition: transform 0.2s ease;
}

.hero-app-store-buttons .app-store-link:hover {
    transform: translateY(-2px);
}

.hero-app-store-buttons .app-store-image {
    height: 70px;
    width: auto;
}

.hero-container {
    display: flex;
    align-items: center; /* Reverted from stretch */
    justify-content: space-between; /* Space out content and image */
    gap: 40px; /* Gap between text and image */
}

/* Enterprise Hero Styles */
.enterprise-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
}

.hero-container-enterprise {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-center {
    width: 100%;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content-center .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-content-center .cta-buttons {
    justify-content: center;
    margin-top: 40px;
}

.hero-content-left {
    flex: 1; /* Allow content to take available space */
    max-width: 60%; /* Limit width of the text content, was 70% */
}

.hero-content-left h1 {
    font-size: 3rem; /* Adjust size as needed */
    font-weight: 700;
    color: #fff; /* Changed to white for contrast */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px !important;
}

.hero-content-left p {
    font-size: 1.1rem; /* Adjust size as needed */
    color: #f0f0f0; /* Changed to light gray/off-white for contrast */
    margin-bottom: 30px;
}

.hero-image-right {
    flex: 1; /* Allow image to take available space */
    max-width: 40%; /* Limit width of the image container, was 30% */
    display: flex;
    justify-content: center;
    align-items: center; /* Reverted from flex-start */
    /* Removed animation-specific styles: overflow: hidden; position: relative; */
}

/* Remove New styles for the hero image scroll animation */
/*
.hero-image-scroll-wrapper {
    width: 100%;
    height: 50%; 
    overflow: hidden;
    position: relative;
}
*/

.hero-app-image {
    max-width: 100%;
    height: auto;
    /* Removed box-shadow and border-radius as it's a transparent PNG */
    width: 100%; /* Ensure image scales within the wrapper */
    object-fit: cover; /* Cover the area, might crop if aspect ratio differs */
    /* object-position: top; */ /* Removed as it was likely for the animation */
}

/* Remove Old Hero Styles */
/* .hero-bg { ... } */
/* .hero-logo-container { ... } */
/* .hero-logo-img { ... } */
/* .hero-logo-container .hero-logo-text { ... } */
/* .hero-bg h1 { ... } */
/* .hero-bg p { ... } */

.cta-buttons {
    display: flex;
    justify-content: center; /* Ensure buttons are centered by default */
    gap: 15px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Examples Section */
/* Remove grid layout */
/* .example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
} */

/* Clean Headshot Showcase Styles */
.showcase-section {
    background: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.showcase-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.showcase-section .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative; /* Create positioning context */
    /* Calculate height based on aspect ratio and grid */
    height: calc((900px - 40px) / 3 * 4/3); /* (max-width - gaps) / columns * aspect-ratio */
}

.showcase-item {
    position: absolute; /* Position absolutely to prevent reflow */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3/4; /* Maintain portrait aspect ratio for headshots */
    display: flex;
    align-items: stretch;
    width: calc((100% - 40px) / 3); /* Calculate width based on grid */
}

/* Position each item in the grid */
.showcase-item:nth-child(3n+1) { left: 0; }
.showcase-item:nth-child(3n+2) { left: calc(33.333% + 6.67px); }
.showcase-item:nth-child(3n+3) { left: calc(66.667% + 13.33px); }

/* Row positioning */
.showcase-item[data-set="0"]:nth-child(1),
.showcase-item[data-set="0"]:nth-child(2),
.showcase-item[data-set="0"]:nth-child(3),
.showcase-item[data-set="1"]:nth-child(4),
.showcase-item[data-set="1"]:nth-child(5),
.showcase-item[data-set="1"]:nth-child(6),
.showcase-item[data-set="2"]:nth-child(7),
.showcase-item[data-set="2"]:nth-child(8),
.showcase-item[data-set="2"]:nth-child(9),
.showcase-item[data-set="3"]:nth-child(10),
.showcase-item[data-set="3"]:nth-child(11),
.showcase-item[data-set="3"]:nth-child(12),
.showcase-item[data-set="4"]:nth-child(13),
.showcase-item[data-set="4"]:nth-child(14),
.showcase-item[data-set="4"]:nth-child(15),
.showcase-item[data-set="5"]:nth-child(16),
.showcase-item[data-set="5"]:nth-child(17),
.showcase-item[data-set="5"]:nth-child(18) {
    top: 0;
    bottom: 0;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px; /* Slightly smaller gap for mobile */
        height: auto; /* Let height be automatic on mobile */
        max-width: 100%;
        padding: 0 10px;
        align-items: start; /* Align all items to the top */
    }
    .showcase-item {
        position: relative !important; /* Change from absolute to relative on mobile */
        width: 100% !important; /* Full width of grid cell */
        height: calc((100vw - 50px) / 3 * 4/3); /* Calculate height for 3/4 aspect ratio */
        left: auto !important; /* Override absolute positioning */
        top: auto !important; /* Override absolute positioning */
        bottom: auto !important; /* Override absolute positioning */
        aspect-ratio: unset; /* Remove aspect-ratio on mobile */
    }
    
    /* Hide all showcase items except the first 3 on mobile */
    .showcase-item:nth-child(n+4) {
        display: none !important;
    }
    
    /* Ensure first 3 are visible and positioned correctly */
    .showcase-item:nth-child(-n+3) {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Reduce showcase section spacing on tablets */
    .showcase-section {
        padding: 60px 0;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefits-grid-enhanced {
    display: grid;
    /* Change from auto-fit to explicit 2 columns */
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 30px;
    text-align: center;
    max-width: 900px; /* Optional: Constrain width for better 2x2 appearance */
    margin-left: auto; /* Center the grid if max-width is set */
    margin-right: auto; /* Center the grid if max-width is set */
    align-items: stretch; /* Make cards in the same row equal height */
}

.benefit-card {
    background-color: #fff; /* Ensure background for shadow */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* display: flex; flex-direction: column; */ /* Alternative height solution */
}

.benefit-image {
    max-width: 150px; /* Control image size */
    margin: 0 auto 20px auto; /* Center image */
    border-radius: 8px;
}

.benefit-icon { /* Style for icons replacing images */
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid layout */
    gap: 30px;
    text-align: center;
    max-width: 1000px; /* Slightly wider for impact */
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.success-card {
    background-color: #fff;
    padding: 35px 30px; /* More padding for impact */
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow for premium feel */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent; /* For hover effect */
}

.success-card:hover {
    transform: translateY(-8px); /* More dramatic hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff; /* Blue border on hover */
}

.success-icon {
    font-size: 3.5rem; /* Larger icons for impact */
    color: #007bff;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.6rem; /* Slightly larger titles */
    font-weight: 700; /* Bolder for impact */
    margin-bottom: 15px;
    color: #212529;
}

.success-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    font-weight: 500; /* Slightly bolder body text */
}

/* Impact/Statistics Section */
.impact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.impact-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.section-title-container { /* Wrapper for icon and title */
    margin-bottom: 50px; /* Maintain original bottom margin */
}

.impact-icon { /* Style for the LinkedIn icon */
    color: #fff; /* White for contrast on gradient */
    font-size: 2.8rem; /* Adjust size as needed */
    margin-right: 10px; /* Space between icon and title */
    vertical-align: middle; /* Align icon with title */
}

.impact-section .section-title { /* Adjust title margin when next to icon */
    margin-bottom: 0;
    display: inline-block; /* Allow vertical alignment */
    vertical-align: middle;
    color: #fff; /* White for contrast on gradient */
}


.stats-grid {
    /* display: grid; */ /* Changed */
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */ /* Changed */
    display: flex; /* Use flexbox for base */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center items horizontally */
    gap: 2rem; /* Adjust gap as needed */
    text-align: center;
    /* Removed margin-bottom here, handled by section-title-container */
}

.stat-item {
    padding: 20px;
    flex-basis: 150px; /* Set a base width for flex items */
    flex-grow: 0; /* Prevent items from growing */
    /* flex-shrink: 0; */ /* Default is 1, 0 is also fine */
    text-align: center; /* Ensure content inside is centered */
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff; /* White for contrast on gradient */
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9); /* Light white for contrast */
}

/* New styles for the source box */
.stats-source-box {
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for gradient */
    padding: 20px; /* Padding inside the box */
    max-width: 700px; /* Max width for the box */
    margin: 2rem auto 0 auto; /* Top margin, centered horizontally */
    border-radius: 8px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Slightly stronger shadow */
}

.stats-source-text {
    /* text-align: center; */ /* Removed centering */
    text-align: left; /* Align text to the left */
    color: rgba(255, 255, 255, 0.9); /* Light white for contrast */
    /* margin-top: 2rem; */ /* Margin is now on the box */
    margin-top: 0; /* Reset top margin for the paragraph itself */
    font-size: 0.8em;
    line-height: 1.5;
}

.stats-source-link {
    /* color: var(--primary-color); */ /* Use default link color or define --primary-color */
    color: #fff; /* White links for contrast on gradient */
    text-decoration: none;
}
.stats-source-link:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8); /* Slightly dimmed on hover */
}


/* Features Section */

#features {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); /* Added gradient */
    padding: 60px 0; /* Adjust padding */
    text-align: left; /* Align text to the left for the content column */
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Updated to 3 columns */
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 1100px; /* Wider to give boxes more room */
    margin-left: auto; /* Center the grid */
    margin-right: auto; /* Center the grid */
    align-items: stretch; /* Make cards in the same row equal height */
}

.feature-card {
    background-color: #fff;
    padding: 30px 25px; /* Increased padding for more room */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* New Modern Features Design with Phone */
.features-with-phone {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.phone-showcase {
    flex: 0 0 auto;
    position: relative;
}

.phone-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(106, 17, 203, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.tilted-phone {
    width: 420px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 1;
}

.features-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.feature-card-modern {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 17, 203, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card-modern:hover::before {
    left: 100%;
}

.feature-card-modern:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(106, 17, 203, 0.2);
}

.feature-icon-modern {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(37, 117, 252, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-card-modern .feature-title {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card-modern p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-section .section-title {
    color: #212529;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

.comparison-table th {
    padding: 25px 30px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.traditional,
.comparison-table th.telefoto {
    color: #fff;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 25px 30px;
    text-align: center;
}

.comparison-table .feature-label {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.comparison-table .traditional {
    color: #666;
    background: rgba(0, 0, 0, 0.02);
}

.comparison-table .telefoto {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.comparison-table .telefoto strong {
    color: #0056b3;
}

.security-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(106, 17, 203, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(106, 17, 203, 0.1);
}

.security-note p {
    color: #333;
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.security-note i {
    font-size: 1.5rem;
    color: #6a11cb;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #fff;
}

.security-section .section-title {
    color: #212529;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.security-icon i {
    color: #fff;
    font-size: 2.2rem;
    display: block;
    line-height: 1;
}

.security-card h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 600;
}

.security-card p {
    color: #666;
    line-height: 1.6;
}

.security-promise {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px;
    background: rgba(106, 17, 203, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(106, 17, 203, 0.1);
}

.security-promise p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* NEW: Built for Business Section */
/* .business-section rule removed as it was empty */

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns for larger screens */
    gap: 30px;
    text-align: center;
    max-width: 900px; /* Optional: Constrain width for better 2-column appearance */
    margin-left: auto; /* Center the grid if max-width is set */
    margin-right: auto; /* Center the grid if max-width is set */
    align-items: stretch; /* Make cards in the same row equal height */
}

.business-card { /* Added to ensure cards have a background and consistent styling */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* display: flex; flex-direction: column; */ /* If needed for equal height content distribution */
}

.business-icon { /* Added for consistency with other icon styles if not already present */
    font-size: 3rem;
    /* color: #007bff; */ /* Base color, overridden by inline style in HTML */
    margin-bottom: 15px;
}

.business-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* NEW: Use Cases Section */
/* .use-cases-section rule removed as it was empty */

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* NEW: Integration & API Section */
/* .integration-section rule removed as it was empty */

.integration-icon {
    font-size: 4rem;
    color: #6f42c1; /* Purple accent */
    margin-bottom: 20px;
    display: inline-block; /* Center icon */
}

.integration-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* NEW: Security & Compliance Section */
/* .security-section rule removed as it was empty */

.security-icon {
    font-size: 4rem;
    color: #dc3545; /* Red accent for security/trust */
    margin-bottom: 20px;
    display: inline-block;
}

.security-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* NEW: Pricing Section */
.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-simple {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card-mobile {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header .pricing-tier {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.pricing-description {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.pricing-details {
    margin-bottom: 25px;
}

.pricing-feature-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.pricing-feature-mobile i {
    color: #007bff;
    font-size: 1.2rem;
    min-width: 20px;
}

.pricing-feature-mobile span {
    color: #495057;
    font-size: 1rem;
}

.pricing-coming-soon {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch; /* Make cards same height */
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For badge */
}

.pricing-card:hover {
     transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #007bff;
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}


.pricing-tier {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.pricing-term {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    color: #555;
    flex-grow: 1; /* Push button to bottom */
}

.pricing-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '\2713'; /* Checkmark */
    color: #28a745; /* Green checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
}

.pricing-explainer {
    margin-top: 40px;
    text-align: center;
}

.explainer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 25px;
}

.explainer-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.explainer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 200px;
}

.explainer-icon {
    font-size: 2.5rem;
    color: #007bff;
    flex-shrink: 0;
}

.explainer-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.explainer-content p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
}

@media (max-width: 480px) {
    .explainer-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .explainer-item {
        width: 100%;
        max-width: 280px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #2575fc 0%, #6a11cb 100%); /* Reversed gradient */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

/* Email Signup Form */
.email-signup-form {
    max-width: 500px;
    margin: 0 auto 20px auto;
}

.signup-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.signup-btn {
    white-space: nowrap;
    min-width: 140px;
}

@media (max-width: 480px) {
    .signup-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .signup-btn {
        width: 100%;
    }
}

/* Enterprise CTA Section */
.enterprise-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.enterprise-cta-text {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.enterprise-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.enterprise-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.enterprise-feature-item i {
    font-size: 1.3rem;
    color: #007bff;
}

.enterprise-feature-item span {
    font-weight: 500;
    color: #495057;
}

.enterprise-cta-buttons {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .enterprise-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .enterprise-feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Enterprise Page Styles */
.enterprise-features-section {
    background: #f8f9fa;
    color: #212529;
    padding: 80px 0;
}

.enterprise-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.enterprise-features-header .section-title {
    color: #212529;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.enterprise-features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Make cards same height */
}

.feature-category {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure full height usage */
}


.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.category-icon {
    font-size: 2.2rem;
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Speed category - Green for performance */
.feature-category:nth-child(1) .category-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

/* Security category - Blue for trust */
.feature-category:nth-child(2) .category-icon {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

/* Management category - Purple for enterprise */
.feature-category:nth-child(3) .category-icon {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.1);
}

/* Quality category - Orange for excellence */
.feature-category:nth-child(4) .category-icon {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1; /* Take up remaining space */
}

/* Special styling for performance metrics */
.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.feature-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
}

.feature-desc {
    font-size: 1rem;
    color: #495057;
    font-weight: 600;
    text-align: right;
    line-height: 1.3;
}

/* Regular feature items */
.feature-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: #495057;
    font-weight: 500;
    border-bottom: 1px solid #f1f3f4;
}

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

.feature-icon-new {
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}



/* Old styles for compatibility */
.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item .feature-icon {
    font-size: 1.5rem;
    color: #007bff;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

/* Pain Points Section */
.pain-points-section {
    padding: 80px 0;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-point-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pain-point-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.pain-point-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.pain-point-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.why-choose-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

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

.pilot-overview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.pilot-overview p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.pilot-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

.pilot-feature {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.pilot-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.pilot-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.pilot-feature p {
    color: #6c757d;
    margin: 0;
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.built-for-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.built-for-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.built-for-icon {
    font-size: 2.5rem;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.built-for-item span {
    font-size: 1.1rem;
    color: #212529;
    font-weight: 600;
    line-height: 1.3;
}

.enterprise-contact-info {
    margin: 30px 0;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .pilot-features-grid {
        grid-template-columns: 1fr;
    }
    
    .built-for-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    /* Navigation responsive adjustments */
    .nav-logo-text {
        font-size: 1.2rem;
    }
    
    /* Pilot program grid on tablets */
    .pilot-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .built-for-item {
        padding: 25px 15px;
    }
    
    .built-for-icon {
        font-size: 2rem;
        padding: 12px;
    }
    
    .built-for-item span {
        font-size: 1rem;
    }
    
    /* New enterprise features mobile styles */
    .enterprise-features-header .section-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .enterprise-features-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }
    
    .feature-category {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .category-header {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .category-icon {
        font-size: 1.8rem;
        padding: 10px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 15px;
    }
    
    .feature-metric {
        font-size: 2rem;
        min-width: auto;
    }
    
    .feature-desc {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .feature-item-new {
        padding: 12px 0;
        gap: 10px;
    }
    
    .feature-item-new span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    margin-top: 50px;
    border-top: 3px solid #3498db;
}

.footer-security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.security-badge {
    font-size: 0.85rem;
    color: #b0b0b0;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-nav-link {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: #3498db;
    text-decoration: none;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-company-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-company-link:hover {
    color: #5dade2;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    color: #3498db;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-app-link:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Legacy footer link styles for other pages */
.footer-link {
    color: #adb5bd;
    text-decoration: none;
}
.footer-link:hover {
    color: #f8f9fa;
    text-decoration: underline;
}


/* GSAP Initial States (for fade-up) */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
    /* Transition is handled by GSAP */
}

/* NEW: Styles for Legal Pages (Privacy Policy, Terms) */
.legal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px; /* Constrain width for readability */
    margin: 0 auto; /* Center the content box */
}

.legal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #6c757d; /* Muted color */
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee; /* Subtle separator */
    padding-bottom: 5px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #495057;
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px; /* Indent list */
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #495057;
}

/* Utility Classes */
.ml-2 { margin-left: 0.5rem; } /* Utility class */
.mt-4 { margin-top: 1rem; } /* Utility class */
.mt-8 { margin-top: 2rem; } /* Utility class */
.mb-4 { margin-bottom: 1rem; } /* Utility class */
.mb-8 { margin-bottom: 2rem; } /* Utility class */
.text-center { text-align: center; } /* Utility class */
.text-white { color: #fff; } /* Utility class */
.underline { text-decoration: underline; } /* Utility class */

/* Responsive Adjustments */

@media (max-width: 480px) {
    /* Keep existing styles for 480px breakpoint */
    .hero-title {
        font-size: 2.2rem;
    }
    .section {
        padding: 60px 0;
    }
    
    /* Reduce showcase section spacing on mobile */
    .showcase-section {
        padding: 50px 0;
    }
    
    /* Fix showcase grid alignment on mobile */
    .showcase-grid {
        align-items: start;
        height: auto;
    }
    
    /* Ensure showcase items are properly positioned on mobile */
    .showcase-item {
        position: relative !important;
        width: 100% !important;
        height: calc((100vw - 40px) / 3 * 4/3); /* Calculate height for 3/4 aspect ratio */
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        aspect-ratio: unset; /* Remove aspect-ratio on mobile */
    }
    
    /* Hide all showcase items except the first 3 on mobile */
    .showcase-item:nth-child(n+4) {
        display: none !important;
    }
    
    /* Ensure first 3 are visible and positioned correctly */
    .showcase-item:nth-child(-n+3) {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Additional hero optimizations for very small screens */
    .hero-section {
        padding: 30px 0; /* Even less padding */
    }
    
    .hero-container {
        padding: 0 10px; /* Tighter side padding */
        gap: 20px; /* Smaller gap */
    }
    
    .hero-content-left h1 {
        font-size: 1.9rem; /* Smaller for very small screens */
        line-height: 1.2;
    }
    
    .hero-content-left p {
        font-size: 0.95rem; /* Slightly smaller text */
        max-width: 95%; /* Use more width on tiny screens */
    }
    
    .app-coming-soon-text {
        font-size: 0.9rem;
    }
    
    .hero-app-store-buttons {
        gap: 10px; /* Smaller gap between buttons */
    }
    
    .hero-app-store-buttons .app-store-image {
        height: 45px; /* Even smaller for tiny screens */
    }

     .hero-bg h1 {
        font-size: 2rem;
    }
     .benefits-grid-enhanced {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .benefit-card {
        padding: 25px 20px; /* Moderate padding */
        max-width: 400px; /* Limit width so boxes aren't too big */
        margin: 0 auto; /* Center the cards */
    }
    .benefit-title {
        font-size: 1.3rem; /* Appropriate title size */
    }
    .benefit-card p {
        font-size: 0.95rem; /* Readable text size */
    }
    /* Success section mobile styles */
    .success-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 25px;
    }
    .success-card {
        padding: 30px 25px; /* Good padding for mobile */
        max-width: 400px; /* Limit width */
        margin: 0 auto; /* Center the cards */
    }
    .success-title {
        font-size: 1.4rem; /* Appropriate mobile title size */
    }
    .success-card p {
        font-size: 0.95rem; /* Readable mobile text size */
    }
    .success-icon {
        font-size: 3rem; /* Slightly smaller icons on mobile */
    }
      /* Business grid removed since those sections were moved to enterprise page */
     .cta-buttons {
         flex-direction: column; /* Stack hero buttons */
         gap: 10px;
     }
     .cta-buttons .btn {
         width: 80%; /* Make buttons wider */
         margin: 0 auto; /* Center buttons */
     }
     .cta-buttons .ml-2 {
         margin-left: 0; /* Remove margin when stacked */
     }
     .stat-item {
         padding: 10px; /* Slightly reduce padding */
         /* Remove redundant flex properties */
         /* flex-basis: 150px; */
         /* flex-grow: 0; */
         /* flex-shrink: 0; */
         /* text-align: center; */
     }
     /* Navigation stays horizontal on mobile since it's just a logo */
     /* Remove redundant use-case-grid rule, base style now handles stacking/centering */
     /* .use-case-grid {
         grid-template-columns: 1fr;
     } */
     .pricing-grid {
         grid-template-columns: repeat(3, 1fr); /* Keep 3 columns on mobile */
         gap: 15px; /* Smaller gap */
     }
     .pricing-card {
         padding: 20px; /* Reduce padding */
     }
     .pricing-tier {
         font-size: 1.3rem; /* Smaller title */
     }
     .pricing-price {
         font-size: 2rem; /* Smaller price */
     }
     /* Adjust font sizes previously in 768px */
     .section-title {
        font-size: 2rem;
    }
    /* .hero-title is already handled */
    /* .hero-tagline - No specific rule, base applies */
     .hero-bg p { /* Target p within hero */
        font-size: 1.1rem;
    }
     .stat-number {
        font-size: 2.5rem;
    }
     .cta-title {
        font-size: 2rem;
    }
    
    /* Enterprise Hero adjustments for very small screens */
    .enterprise-hero {
        min-height: 50vh;
        padding: 60px 0 40px;
    }
    
    .hero-content-center h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content-center .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-content-center .cta-buttons {
        gap: 10px;
    }
    
    /* Navigation on very small screens */
    .nav-logo-text {
        font-size: 1.1rem;
    }
    
    /* Enterprise features on very small screens */
    .enterprise-features-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pilot program grid on mobile */
    .pilot-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Remove icon spacing in buttons on mobile */
    .btn .ml-2 {
        margin-left: 0;
    }
    
    /* Legal content responsive */
    .legal-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    /* Footer responsive for mobile */
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 0 20px;
    }
    
    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.8;
    }
    
    .footer-nav-link {
        font-size: 0.95rem;
        padding: 8px 12px;
        display: inline-block;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
        line-height: 1.5;
    }

}

/* Very small screens (360px and below) */
@media (max-width: 360px) {
    /* Navigation adjustments */
    .nav-logo-text {
        font-size: 1rem;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Showcase grid */
    .showcase-grid {
        gap: 10px;
        padding: 0 5px;
        align-items: start;
        height: auto;
    }
    
    /* Showcase section spacing */
    .showcase-section {
        padding: 40px 0;
    }
    
    /* Ensure showcase items are properly positioned on very small screens */
    .showcase-item {
        position: relative !important;
        width: 100% !important;
        height: calc((100vw - 30px) / 3 * 4/3); /* Calculate height for 3/4 aspect ratio */
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        aspect-ratio: unset; /* Remove aspect-ratio on mobile */
    }
    
    /* Hide all showcase items except the first 3 on very small screens */
    .showcase-item:nth-child(n+4) {
        display: none !important;
    }
    
    /* Ensure first 3 are visible and positioned correctly */
    .showcase-item:nth-child(-n+3) {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Legal content */
    .legal-content {
        padding: 15px;
        margin: 0 5px;
    }
    
    /* Footer responsive for very small screens */
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 25px 0 20px;
    }
    
    .footer-brand-text {
        font-size: 1.3rem;
    }
    
    .footer-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 2;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
        padding: 10px 8px;
        display: inline-block;
        min-width: 80px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding: 18px 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .footer-social {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    /* Hero section adjustments */
    .hero-section {
        padding: 40px 0; /* Reduce padding on mobile */
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px; /* Reduce gap between content and image */
        padding: 0 15px; /* Add side padding */
    }

    .hero-content-left {
        max-width: 100%;
        text-align: center;
        order: 1; /* Ensure content comes first */
    }
    
    .hero-image-right {
        max-width: 100%;
        text-align: center;
        margin-top: 0; /* Remove extra margin */
        order: 2; /* Image comes after content */
    }

    .hero-content-left h1 {
        font-size: 2.2rem; /* Slightly smaller but still impactful */
        line-height: 1.3; /* Better line height for mobile */
        margin-bottom: 15px;
    }

    .hero-content-left p {
        font-size: 1rem;
        line-height: 1.6; /* Better readability */
        margin-bottom: 20px; /* Reduce bottom margin */
        max-width: 90%; /* Prevent text from being too wide */
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-app-image {
        max-width: 80%; /* Slightly larger for better visibility */
        height: auto;
    }

    /* Hero CTA buttons mobile optimization */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Increase gap for better spacing */
        margin-top: 20px;
    }
    
    .app-coming-soon-text {
        font-size: 1rem;
        margin-bottom: 15px; /* Add spacing below text */
    }

    .hero-app-store-buttons {
        flex-direction: row; /* Keep horizontal on mobile */
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap; /* Allow wrapping if needed */
    }
    
    .hero-app-store-buttons .app-store-link {
        flex: 0 0 auto; /* Don't grow or shrink */
        max-width: 160px; /* Reasonable size */
    }
    
    .hero-app-store-buttons .app-store-image {
        height: 50px; /* Appropriately sized for mobile */
        width: auto;
    }

    /* Features grid - stack vertically on mobile */
    .features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
        max-width: 100%;
    }
    .feature-card {
        padding: 25px 20px; /* Moderate padding for mobile */
        max-width: 400px; /* Limit width so boxes aren't too big */
        margin: 0 auto; /* Center the cards */
    }
    .feature-title {
        font-size: 1.3rem; /* Appropriate title size */
    }
    .feature-card p {
        font-size: 0.95rem; /* Readable text size */
    }
    
    /* New features design with phone - responsive */
    .features-with-phone {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .phone-showcase {
        order: -1; /* Phone appears first on mobile */
        margin: 0 auto;
    }
    
    .tilted-phone {
        width: 280px; /* Prominent size on mobile */
    }
    
    .features-cards {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-card-modern {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-card-modern:hover {
        transform: translateX(0) translateY(-3px); /* Subtle vertical movement on mobile */
    }
    
    .feature-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        border-radius: 10px;
    }
    
    .feature-card-modern .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-card-modern p {
        font-size: 0.9rem;
    }
    
    /* Enterprise Hero adjustments */
    .enterprise-hero {
        min-height: 60vh;
        padding: 80px 0 60px;
    }
    
    .hero-container-enterprise {
        padding: 0 20px;
    }
    
    .hero-content-center h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content-center .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Footer responsive for tablets */
    .footer-content {
        padding: 35px 0 25px;
        gap: 30px;
    }
    
    .footer-nav {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .footer-nav-link {
        padding: 5px 8px;
    }
    
    .footer-bottom {
        padding: 25px 0;
        gap: 20px;
    }
}

/* --- Enterprise Contact Form Styles (Web3Forms) --- */
.enterprise-contact-form {
    max-width: 500px;
    margin: 0 auto 20px auto;
    background: rgba(255,255,255,0.08);
    padding: 32px 28px 28px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-family: 'Montserrat', sans-serif;
}

.enterprise-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.enterprise-contact-form .form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}

.enterprise-contact-form .form-input,
.enterprise-contact-form .form-textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.13);
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: none;
}

.enterprise-contact-form .form-input:focus,
.enterprise-contact-form .form-textarea:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.18);
}

.enterprise-contact-form .form-input::placeholder,
.enterprise-contact-form .form-textarea::placeholder {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    opacity: 1;
}

.enterprise-contact-form .form-textarea {
    min-height: 110px;
    max-height: 260px;
    line-height: 1.5;
}

.enterprise-contact-form .btn.btn-primary.btn-large {
    margin-top: 10px;
    width: 100%;
    font-size: 1.1rem;
    padding: 15px 0;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
    .enterprise-contact-form {
        padding: 24px 16px;
        margin: 0 10px 20px 10px;
    }
    
    .enterprise-contact-form .form-input,
    .enterprise-contact-form .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Thank You Message Box */
.thanks-message-box {
    background: rgba(255,255,255,0.10);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 48px 32px 40px 32px;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
@media (max-width: 600px) {
    .thanks-message-box { padding: 28px 8px 24px 8px; }
}

/* Additional Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    /* Comparison Table */
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    /* Security Grid */
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Footer Security Badges */
    .footer-security-badges {
        gap: 10px;
        margin: 20px 0;
    }
    
    .security-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    /* Comparison Table - Single Column */
    .comparison-table {
        font-size: 0.85rem;
    }
    
    /* Security Grid - Single Column */
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .security-promise {
        padding: 20px;
        font-size: 1rem;
    }
    
    /* Footer Security Badges - Stack */
    .footer-security-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .security-badge {
        width: fit-content;
    }
}