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

:root {
    /* Appwrite Dark Theme Color Palette */
    --primary-color: #0a0e27;        /* Dark navy/black */
    --secondary-color: #9ca3af;      /* Light gray for secondary text */
    --text-color: #ffffff;          /* White text for dark theme */
    --text-secondary: #d1d5db;      /* Light gray text */
    --bg-color: #1a1f2e;            /* Lighter dark background */
    
    /* Primary Colors - Blue Theme */
    --accent-primary: #5C6DFD;       /* Logo Blue - Primary */
    --accent-secondary: #818CF8;    /* Lighter Blue */
    --accent-tertiary: #10B981;     /* Success Green */
    --accent-warning: #F59E0B;      /* Warning Orange */
    --accent-error: #EF4444;        /* Error Red */
    
    /* Gradients - Blue Theme */
    --gradient-primary: linear-gradient(135deg, #5C6DFD 0%, #818CF8 100%);
    --gradient-secondary: linear-gradient(135deg, #5C6DFD 0%, #818CF8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(92, 109, 253, 0.1) 0%, rgba(129, 140, 248, 0.1) 100%);
    
    /* Neutral Scale (Dark Theme) */
    --neutral-0: #ffffff;
    --neutral-10: #f9fafb;
    --neutral-20: #f3f4f6;
    --neutral-30: #e5e7eb;
    --neutral-40: #d1d5db;
    --neutral-50: #9ca3af;
    --neutral-60: #6b7280;
    --neutral-70: #4b5563;
    --neutral-80: #374151;
    --neutral-90: #1f2937;
    --neutral-100: #111827;
    
    /* Dark Theme UI Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --section-bg: #232937;          /* Lighter dark gray sections */
    --card-bg: #1f2937;              /* Dark card background */
    --hover-overlay: rgba(92, 109, 253, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

.nav-menu a:hover {
    color: var(--accent-primary);
}

.btn-demo {
    background: var(--accent-primary);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(92, 109, 253, 0.3);
}

.btn-demo:hover {
    background: #818CF8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 109, 253, 0.4);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        padding: 40px 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    background: var(--section-bg);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.7) 0%, rgba(26, 31, 46, 0.5) 50%, rgba(35, 41, 55, 0.7) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    padding-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary) 30%, var(--text-color) 70%, var(--text-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    overflow: visible;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-trust-line {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 24px;
    text-align: center;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--bg-color);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(92, 109, 253, 0.4);
    border: none;
}

.btn-primary:hover {
    background: #818CF8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 109, 253, 0.5);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-color);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(92, 109, 253, 0.3);
}

/* Transition Copy Section */
.transition-copy {
    padding: 40px 0;
    background: var(--bg-color);
    text-align: center;
}

.transition-text {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Proof & Trust Section (Merged Stats + Trust) */
.proof-trust {
    padding: 80px 0;
    background: var(--section-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-trust .container {
    max-width: 1000px;
}

.proof-trust .section-title {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--card-bg);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.proof-divider {
    height: 1px;
    background: var(--border-color);
    margin: 50px 0;
    max-width: 1000px;
}

/* Built For Section */
.built-for {
    padding: 60px 0;
    text-align: center;
    background: var(--section-bg);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: left;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 0 60px 0;
    line-height: 1.6;
    text-align: left;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(92, 109, 253, 0.15);
    border-color: var(--accent-primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.feature-card p {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.6;
}

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

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.how-it-works-step {
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.how-it-works-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.how-it-works-step p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust Strip */
.trust-strip {
    padding: 40px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-strip-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.trust-icon {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--section-bg);
}

.testimonials-framing {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    margin: -20px 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


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

.testimonial-card {
    padding: 0;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(92, 109, 253, 0.15);
    transform: translateY(-4px);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-card .testimonial-text {
    padding: 24px 24px 0;
}

.testimonial-card .testimonial-author {
    padding: 24px;
    margin-top: auto;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.testimonial-card .testimonial-text {
    color: var(--text-secondary);
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Infrastructure Section */
.infrastructure {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.infra-card {
    padding: 40px 24px;
    background: var(--section-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(92, 109, 253, 0.15);
    border-color: var(--accent-primary);
    background: var(--hover-overlay);
}

.infra-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.explore-link {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.explore-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.explore-link:hover {
    color: #818CF8;
}

.explore-link:hover::after {
    transform: translateX(4px);
}

/* Product Sections */
.product-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.product-section:nth-child(even) {
    background: var(--section-bg);
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0 40px;
}

.product-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.product-feature p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Section */

/* Event Gallery Section */
.event-gallery {
    padding: 100px 0;
    background: var(--section-bg);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 24px;
    color: var(--bg-color);
}

.gallery-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--neutral-0);
}

/* Product Section with Images */
.product-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.product-section-content.reverse {
    direction: rtl;
}

.product-section-content.reverse > * {
    direction: ltr;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

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

.product-text {
    display: flex;
    flex-direction: column;
}

/* News Section */
.news {
    padding: 100px 0;
    background: var(--section-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.news-card {
    padding: 32px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(92, 109, 253, 0.15);
    border-color: var(--accent-primary);
}

.news-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.news-meta {
    font-size: 14px;
    color: var(--text-secondary);
}

.see-more {
    display: inline-block;
    margin-top: 40px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-more:hover {
    color: var(--accent-secondary);
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--section-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--section-bg);
    color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(92, 109, 253, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.contact-info {
    padding: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    color: var(--text-secondary);
}

.pricing-note {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    margin: 0 auto 40px;
    max-width: 800px;
}

.form-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.form-message.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-error);
    border: 1px solid var(--accent-error);
}

.form-message.form-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-tertiary);
    border: 1px solid var(--accent-tertiary);
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.success-content h3 {
    font-size: 24px;
    color: var(--accent-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.success-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-content button {
    background: var(--accent-primary);
    color: var(--text-color);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.success-content button:hover {
    background: var(--accent-secondary);
}

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

.trust-list {
    list-style: none;
    max-width: 700px;
    margin: 0 0 40px 0;
    padding: 0;
}

.trust-list li {
    padding: 12px 0;
    padding-left: 32px;
    color: var(--text-secondary);
    font-size: 16px;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 18px;
}

.proof-cta {
    display: inline-block;
    font-size: 16px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    margin-top: 20px;
}

.proof-cta:hover {
    color: var(--accent-secondary);
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #818CF8;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--section-bg);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid,
    .testimonials-grid,
    .product-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proof-trust {
        padding: 60px 0;
    }
    
    .proof-trust .container {
        max-width: 100%;
    }
    
    .trust-strip-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-strip-item {
        font-size: 13px;
    }
    
    .testimonials-framing {
        margin: -10px 0 30px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .product-section-content {
        grid-template-columns: 1fr;
    }

    .product-section-content.reverse {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-bg-image {
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

