/* SiteViewXR Website Styles */
/* Awin affiliate partner styling for construction equipment */

:root {
    --primary-color: #007AFF;
    --secondary-color: #FF6B35;
    --dark-color: #1D1D1F;
    --light-color: #F5F5F7;
    --gray-color: #86868B;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --shadow: 0 4px 20px rgba(0, 122, 255, 0.15);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-placeholder {
    width: 32px;
    height: 32px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::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="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    text-align: center;
}

.hero-phone {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-phone-placeholder {
    text-align: center;
    padding: 2rem;
}

.phone-mockup {
    font-size: 8rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.phone-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* New Device Mockups */
.device-mockups {
    text-align: center;
    padding: 1.5rem;
}

.device-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.iphone-mockup, .ipad-mockup {
    position: relative;
    background: #333;
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #666;
}

.iphone-mockup {
    width: 200px;
    height: 400px;
}

.ipad-mockup {
    width: 360px;
    height: 480px;
}

.device-screen {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.device-screen.tablet {
    font-size: 5rem;
}

.app-interface {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.app-interface.tablet {
    gap: 1rem;
    padding: 1.5rem;
}

.ar-view, .measurement-tools, .cad-preview {
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    padding: 1.1rem;
    font-size: 1.1rem;
    color: #007AFF;
    font-weight: 600;
    text-align: center;
    flex: 1;
    line-height: 1.4;
}

.project-dashboard, .team-tools, .integration-panel {
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    padding: 0.9rem;
    font-size: 0.95rem;
    color: #007AFF;
    font-weight: 600;
    text-align: center;
    flex: 1;
    line-height: 1.3;
}

.app-interface.tablet .project-dashboard,
.app-interface.tablet .team-tools,
.app-interface.tablet .integration-panel {
    font-size: 1rem;
    padding: 1rem;
}

.device-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    margin-top: 1.5rem;
    white-space: normal;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    line-height: 1.4;
}

.accuracy-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .device-group {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .iphone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .ipad-mockup {
        width: 280px;
        height: 400px;
    }
    
    .device-screen {
        font-size: 4rem;
    }
    
    .device-screen.tablet {
        font-size: 5rem;
    }
    
    .ar-view, .measurement-tools, .cad-preview,
    .project-dashboard, .team-tools, .integration-panel {
        font-size: 0.8rem;
        padding: 0.7rem;
    }
    
    .app-interface.tablet .project-dashboard,
    .app-interface.tablet .team-tools,
    .app-interface.tablet .integration-panel {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.highlight-text {
    background: rgba(0, 122, 255, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    padding-left: 8px;
}

.additional-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--gray-color);
}

.price .price-term {
    font-size: 0.8rem;
    color: var(--gray-color);
    display: block;
    font-weight: 400;
    margin-top: 0.5rem;
    line-height: 1.3;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-color);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.download-buttons {
    margin-bottom: 3rem;
}

.app-store-button img {
    height: 60px;
}

.device-requirements {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.device-requirements h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.device-requirements ul {
    list-style: none;
}

.device-requirements li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    position: relative;
    padding-left: 1.5rem;
}

.device-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.awin-notice {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Awin affiliate styling - ensures visibility for verification */
.awin-notice {
    background: rgba(0, 122, 255, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

/* Legal and Support Page Styles */
.legal-content, .support-content, .partners-content {
    padding: 120px 0 80px;
    background: var(--white);
}

/* Community Page Styles */
.community-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.community-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.community-section h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.community-section p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.community-section ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.community-section li {
    padding: 0.5rem 0;
    color: var(--gray-color);
}

.knowledge-base-section, .faq-section {
    margin-top: 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.article-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.legal-content h1, .support-content h1, .partners-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.legal-content h2, .support-content h2, .partners-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: var(--dark-color);
}

.legal-content h3, .support-content h3, .partners-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--primary-color);
}

.legal-content ul, .support-content ul, .partners-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li, .support-content li, .partners-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.support-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-tier {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.support-tier.featured {
    background: rgba(0, 122, 255, 0.05);
    border-left-color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.coming-soon-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.coming-soon-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.coming-soon-card h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.partnership-types, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partnership-type, .benefit-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-cta {
    background: rgba(0, 122, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-color);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    font-style: italic;
}

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

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-color);
}

.author-info h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.project-stats span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.metric {
    padding: 1.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 0;
    background: var(--white);
}

.case-study-featured {
    margin: 3rem 0 4rem 0;
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.case-study-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.challenge, .solution, .results {
    margin-bottom: 2rem;
}

.challenge h4, .solution h4, .results h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.solution li {
    padding: 0.5rem 0;
    color: var(--dark-color);
}

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

.result-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.result-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.result-item span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.case-study-visual {
    text-align: center;
}

.case-study-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--light-color);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.case-study-caption p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-color);
}

.case-study-info {
    padding: 1.5rem;
}

.case-study-info h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.case-study-info p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.case-study-result {
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.case-study-result strong {
    color: var(--primary-color);
}

/* Demo Section */
.demo-section {
    background: var(--dark-color);
    color: var(--white);
    padding: 6rem 0;
}

.demo-section .section-title {
    color: var(--white);
}

.demo-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.demo-video-container {
    margin: 3rem 0;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--gray-color);
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-color);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.demo-feature {
    text-align: center;
    padding: 2rem;
}

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

.demo-feature h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.demo-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.interactive-demo-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.interactive-demo-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.interactive-demo-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.demo-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.demo-btn:hover {
    background: #e55a2b;
}

.demo-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .case-studies {
        padding: 4rem 0;
    }
    
    .demo-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .interactive-demo-cta {
        padding: 2rem;
    }
}

/* Add-on Packs Section */
.add-on-packs {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.add-on-packs h3 {
    text-align: center;
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pack-category h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pack-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pack-option {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    align-items: center;
    transition: transform 0.2s ease;
}

.pack-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pack-name {
    font-weight: 600;
    color: var(--dark-color);
}

.pack-price {
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.1rem;
}

.pack-detail {
    color: var(--gray-color);
    font-size: 0.9rem;
    text-align: right;
}

.pack-note {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Referral Program Section */
.referral-program {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.referral-program h3 {
    text-align: center;
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.referral-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.referral-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.referral-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

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

.highlight-content h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.referral-note {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* White Label Section */
.white-label-info {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.white-label-info h3 {
    text-align: center;
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.white-label-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.white-label-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-label-tier {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.white-label-tier h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.white-label-tier p:last-child {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.white-label-note {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive design for new sections */
@media (max-width: 768px) {
    .pack-option {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pack-detail {
        text-align: center;
    }
    
    .referral-highlights {
        grid-template-columns: 1fr;
    }
    
    .referral-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .white-label-tiers {
        grid-template-columns: 1fr;
    }
    
    .add-on-packs,
    .referral-program,
    .white-label-info {
        padding: 2rem;
        margin: 3rem 0;
    }
}