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

body {
    font-family: Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid #b2c6f9;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url('../img/truck.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: inline-block;
    margin-right: 0.75rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(176, 203, 244, 0.3);
    transition: all 0.3s ease;
}

.logo a::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo a:hover {
    color: #496483;
    transform: translateY(-1px);
}

.logo a:hover::before {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(162, 198, 245, 0.4);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover {
    color: #496483;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #496483;
    transition: width 0.3s ease;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #496483 0%, #374c63 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(236, 189, 214, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 230, 242, 0.4);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem; 
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4976f1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav.nav-open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo a {
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }
    
    .logo a::before {
        width: 35px;
        height: 35px;
        margin-right: 0.5rem;
    }
    
    .logo a::after {
        left: 10px;
        top: 6px;
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* Canadian Theme Elements */
.title-accent {
    position: relative;
    text-decoration: underline;
    text-decoration-color: #0b1d32;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.title-accent::before {
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #cadff8 0%, #c4dbf5 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.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"><text y="50" font-size="20" fill="%23e74c3c" opacity="0.1">🍁</text></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #496483 0%, #374c63 100%);
    font-size: 1.2rem;
}

.cta-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-size: 1.2rem;
}

/* Trust Signals */
.trust-signals {
    padding: 4rem 0;
    background: linear-gradient(135deg, #777777 0%, #9d9d9d 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.trust-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #6c757d;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #655d61 0%, #565154 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: rgb(248, 234, 220);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 0;
}

.contact-form h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0977e6;
    box-shadow: 0 0 0 3px rgba(9, 119, 230, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #0977e6;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select:hover {
    border-color: #dee2e6;
}

.form-group select option {
    padding: 0.5rem;
    color: #495057;
    background-color: white;
}

.form-group select option:hover {
    background-color: #f8f9fa;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: rgb(213, 237, 255);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image::before {
    display: none;
}

.product-image.no-image::before {
    content: '🌐';
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    margin-bottom: 0.5rem;
}

.product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #e74c3c;
}

.product-description {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.25rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.product-features li em {
    color: #6c757d;
    font-style: italic;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: auto;
}

.product-actions .cta-button {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: 0;
    white-space: nowrap;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: rgb(255, 255, 255);
    text-align: center;
}

.cta-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-text p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    margin: 1.5rem 0;
}

.about-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.about-features li::before {
    content: '🍁';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

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

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Demo Page Styles */
.demo-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0.5rem;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: #e74c3c;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
}

.progress-step.active .step-label {
    color: #e74c3c;
    font-weight: 500;
}

/* Demo Steps */
.demo-step {
    padding: 2rem;
}

.demo-step h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.demo-step p {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
}

/* Product Selection */
.product-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-option {
    position: relative;
}

.product-option input[type="radio"] {
    display: none;
}

.product-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.product-option input[type="radio"]:checked + label {
    border-color: #e74c3c;
    background: #fff5f5;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.product-option-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-option-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    text-align: left;
}

.product-option-content .product-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Demo Form */
.demo-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-actions-secondary {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.cta-tertiary {
    background: none;
    color: #6c757d;
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
    font-weight: 400;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: none;
}

.cta-tertiary:hover {
    color: #495057;
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 2rem 0;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thank-you h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.demo-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.demo-summary h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.demo-summary ul {
    list-style: none;
    margin: 0;
}

.demo-summary li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.demo-summary li:last-child {
    border-bottom: none;
}

.next-steps {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.next-steps ol {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    padding: 0.25rem 0;
    color: #495057;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Product Details Page */
.product-details-section {
    padding: 4rem 0;
    background: white;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image-container {
    position: sticky;
    top: 2rem;
}

.product-image-container .product-image {
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-image-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-container .product-image.no-image::before {
    content: '🌐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

/* Product Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.image-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail:hover {
    border-color: #b2c6f9;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #496483;
    box-shadow: 0 2px 8px rgba(73, 100, 131, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail img[style*="display: none"] {
    display: none !important;
}

.product-info {
    padding: 1rem 0;
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-info .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.product-info .product-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-info .product-features {
    margin-bottom: 2rem;
}

.product-info .product-features h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-info .product-features ul {
    list-style: none;
    margin: 0;
    flex: 1;
}

.product-info .product-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.product-info .product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.product-info .product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-info .product-actions .cta-button {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.product-trust {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.product-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.product-trust .trust-item:last-child {
    margin-bottom: 0;
}

.product-trust .trust-icon {
    color: #28a745;
    font-weight: bold;
}

/* Product Specifications */
.product-specs-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.product-specs-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.spec-category h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.spec-category ul {
    list-style: none;
    margin: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.spec-category li:last-child {
    border-bottom: none;
}

.spec-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: white;
}

.reviews-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #dee2e6;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffc107;
}

.review-content p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.no-reviews p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Related Products */
.related-products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.related-products-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* Purchase Page */
.purchase-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.purchase-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.purchase-step {
    padding: 2rem;
}

.purchase-step h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.purchase-step p {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
}

.purchase-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.addon-option {
    position: relative;
}

.addon-option input[type="checkbox"] {
    display: none;
}

.addon-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.addon-option input[type="checkbox"]:checked + label {
    border-color: #e74c3c;
    background: #fff5f5;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.addon-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.addon-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    text-align: left;
}

.addon-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.addon-features {
    margin-top: 1rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.features-toggle-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.features-toggle-btn:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
    color: #212529;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.features-toggle-btn.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-color: #e74c3c;
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.features-toggle-btn.active:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.features-toggle-btn .btn-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.features-toggle-btn.active .btn-icon {
    transform: rotate(180deg);
}

.features-list {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #e74c3c;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.features-list.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.features-list li {
    padding: 0.25rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.25rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.summary-section {
    margin-bottom: 2rem;
}

.summary-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.service-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.service-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.addon-name {
    color: #495057;
}

.addon-price {
    color: #e74c3c;
    font-weight: 600;
}

.summary-total {
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 1rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #495057;
}

.total-final {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.customer-info {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.customer-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.customer-info p {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Payment Form */
.payment-container {
    max-width: 500px;
    margin: 0 auto;
}

.payment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-summary h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

#payment-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

#card-element {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 1rem;
}

#card-errors {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Success Page */
.success-section {
    padding: 4rem 0;
    background: white;
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-container h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.payment-confirmation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #28a745;
}

.payment-confirmation p {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.payment-confirmation code {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
    border: 1px solid #dee2e6;
}

.payment-confirmation small {
    color: #6c757d;
    font-size: 0.85rem;
}

.success-message {
    background: #d4edda;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.success-message p {
    color: #155724;
    margin: 0;
}

.next-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.next-steps ol {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #495057;
}

.order-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info {
    background: #e6e9f4;
    padding: 2rem;
    border-radius: 10px;
    margin: 0rem 0;
    text-align: left;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    margin: 0;
}

.contact-info li {
    padding: 0.25rem 0;
    color: #495057;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
}

/* Legal Content Styles */
.legal-content {
    padding: 3rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-intro {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-intro p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Terms Agreement Checkboxes */
.terms-agreement {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.terms-agreement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    border-radius: 12px 12px 0 0;
}

.terms-agreement h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.terms-agreement h3::after {
    content: '⚖️';
    margin-left: 0.5rem;
    font-size: 1rem;
}

.terms-agreement .form-group {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.terms-agreement .form-group:hover {
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    min-height: 1.5rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #3498db;
    background-color: #f7fafc;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.checkbox-label .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.checkbox-label .required-indicator {
    color: #e74c3c;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Disabled state styling */
.terms-agreement .form-group.disabled {
    opacity: 0.6;
    background: #f8f9fa;
}

.terms-agreement .form-group.disabled .checkbox-label {
    cursor: not-allowed;
}

/* Success state when all checked */
.terms-agreement.all-agreed {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.terms-agreement.all-agreed::before {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

/* Disabled button styling */
.cta-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d;
    position: relative;
}

.cta-button.disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

.cta-button.disabled::after {
    content: 'Please agree to all terms first';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-button.disabled:hover::after {
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-actions .cta-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Demo page responsive */
    .progress-bar {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .progress-step {
        flex: 0 1 auto;
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    @media (max-width: 480px) {
        .progress-bar {
            gap: 0.25rem;
        }
        
        .progress-step {
            min-width: 60px;
        }
        
        .step-number {
            width: 25px;
            height: 25px;
            line-height: 25px;
            font-size: 0.8rem;
        }
        
        .step-label {
            font-size: 0.6rem;
        }
    }
    
    .product-selection {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions-secondary {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Product details responsive */
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-container {
        position: static;
    }
    
    .product-image-container .product-image {
        height: 300px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .image-thumbnails {
        gap: 0.25rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-header h2 {
        font-size: 2rem;
    }
    
    .product-info .product-price {
        font-size: 1.5rem;
    }
    
    .product-info .product-actions {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Purchase page responsive */
    .purchase-container {
        margin: 0 1rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-features {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .features-toggle-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .features-list {
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
    
    .features-list li {
        padding: 0.2rem 0;
        font-size: 0.9rem;
    }
    
    .payment-container {
        margin: 0 1rem;
    }
    
    .success-container {
        margin: 0 1rem;
    }
    
    /* Legal agreement responsive */
    .terms-agreement {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .terms-agreement h3 {
        font-size: 1.1rem;
    }
    
    .terms-agreement .form-group {
        padding: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
    
    .checkbox-label .checkmark {
        height: 18px;
        width: 18px;
    }
    
    .checkbox-label .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
    
    .cta-button.disabled::after {
        display: none;
    }
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup-content {
    background: linear-gradient(135deg, #d72638 0%, #f46036 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    max-width: none;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-body {
    flex: 2;
    max-width: 400px;
}

.cookie-body p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cookie-options {
    display: none;
}

.cookie-option {
    display: none;
}

/* Detailed Cookie Popup */
.cookie-detailed-content {
    background: linear-gradient(135deg, #d72638 0%, #f46036 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cookie-detailed-content .cookie-body {
    flex: none;
    max-width: none;
    margin-bottom: 1.5rem;
}

.cookie-detailed-content .cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-detailed-content .cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.cookie-detailed-content .cookie-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-detailed-content .cookie-option input[type="checkbox"] {
    display: none;
}

.cookie-detailed-content .cookie-option .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.cookie-detailed-content .cookie-option input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.cookie-detailed-content .cookie-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-detailed-content .cookie-option input[type="checkbox"]:disabled + .checkmark {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-detailed-content .option-text {
    flex: 1;
}

.cookie-detailed-content .option-text strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cookie-detailed-content .option-text small {
    opacity: 0.8;
    font-size: 0.875rem;
    line-height: 1.4;
}

.cookie-detailed-content .cookie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #4CAF50;
    color: white;
}

.cookie-btn-primary:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-popup-content {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-header {
        justify-content: center;
    }
    
    .cookie-body {
        max-width: none;
    }
    
    .cookie-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-popup-content {
        padding: 0.75rem 1rem;
    }
    
    .cookie-header h3 {
        font-size: 1rem;
    }
    
    .cookie-body p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Cookie Confirmation Message */
.cookie-confirmation {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cookie-confirmation.show {
    opacity: 1;
    transform: translateX(0);
}

.cookie-confirmation-content {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.cookie-confirmation-content span {
    flex: 1;
    font-weight: 500;
}

.cookie-confirmation-content button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cookie-confirmation-content button:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-confirmation {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .cookie-confirmation-content {
        min-width: auto;
    }
}

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.contact-address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
}

.hours p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.hours p:last-child {
    margin-bottom: 0;
}

.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-benefits {
    margin: 2rem 0;
}

.contact-benefits h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.contact-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 600;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-benefits li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 1.8rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== LANDING PAGES ===== */

/* Low Friction Landing Page Styles */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.landing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.landing-subheadline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.signup-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    background: white;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0977e6;
    box-shadow: 0 0 0 3px rgba(9, 119, 230, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

.cta-button-large {
    background: #4CAF50;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.cta-button-large:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.google-signup {
    background: white;
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-signup:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.trust-signals {
    margin-top: 0rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    height: 40px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.features-preview {
    background: white;
    color: #333;
    padding: 4rem 0;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

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

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
    line-height: 1.5;
}

/* High Friction Landing Page Styles */
.consultation-form {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}

.step-dot.active {
    background: #2a5298;
}

.cta-button-enterprise {
    background: #2a5298;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button-enterprise:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: #2a5298;
    border: 2px solid #2a5298;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.cta-button-secondary:hover {
    background: #2a5298;
    color: white;
}

.features-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.testimonials-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

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

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

.trust-signals {
    background: white;
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.trust-description {
    color: #666;
    font-size: 0.9rem;
}

/* Landing Page Mobile Responsive */
@media (max-width: 768px) {
    .landing-headline {
        font-size: 2.5rem;
    }
    
    .landing-subheadline {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .signup-form {
        padding: 2rem;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-logo {
        height: 30px;
    }
    
    .consultation-form {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .landing-headline {
        font-size: 2rem;
    }
    
    .landing-subheadline {
        font-size: 1rem;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
}
