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

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-primary: #000000;
    --text-secondary: #374151;
    --text-light: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #000000;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

a{
    text-decoration: none;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: black;
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: black;
    border: 2px solid black;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e40af;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
}

.logo-icon {
    font-size: 2rem;
}

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

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

.nav-link:hover {
    color: #60a5fa;
}

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

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

.nav-cta {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: white;
    color: #1e40af;
    border: 1px solid white;
}

.nav-cta:hover {
    background: #f8fafc;
    color: #1e3a8a;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: black;
    color: white;
    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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" 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;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-code-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.code-window-full {
    background: #000000;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    transform: perspective(1000px);
    transition: transform 0.3s ease;
    border: 1px solid #1e40af;
}

.code-window-full:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: #1e40af;
    padding: 1.5rem;
    text-align: center;
}

.dashboard-header h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.security-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #e2e8f0;
    margin-top: 0.25rem;
}

.dashboard-content {
    padding: 1.5rem;
}

.security-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.metric-card {
    background: #1e40af;
    padding: 1rem;
    text-align: center;
    border: 1px solid #3b82f6;
}

.metric-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
}

.metric-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.code-window {
    background: #000000;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    border: 1px solid #1e40af;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.code-header {
    background: #1e40af;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    background: #ef4444;
}

.code-dots span:nth-child(2) {
    background: #f59e0b;
}

.code-dots span:nth-child(3) {
    background: #10b981;
}

.code-title {
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* eBook Section */
.ebook {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.ebook-content {
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ebook-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ebook-features h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.ebook-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.ebook-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
    font-size: 1.2rem;
}

.ebook-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.ebook-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-icon {
    font-size: 8rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Badges Section */
.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
}


.badge-item img {
    max-width: 100%;
    object-fit: contain;
}

.badge-item:hover img {
    filter: grayscale(0%) contrast(1.2);
}

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

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: black;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
}


.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* New Solutions Section with Images */
.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.solution-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: var(--bg-primary);
}



/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.product-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    border-color: #1e40af;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) contrast(1.2);
}

.product-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonials-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
}

.testimonials-quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.quote-item {
    background: white;
    padding: 2rem;
}


.quote-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.quote-author {
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

.quote-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.quote-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #1e40af;
}

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

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

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

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/hologram-projector-screen-with-cloud-system-technology.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.features .section-title {
    color: white;
}

.capabilities-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.capabilities-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1e40af, #60a5fa);
}

.capability-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

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

.capability-number {
    width: 100px;
    height: 100px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-right: 3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.capability-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.capability-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.capability-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}



/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-info li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
}

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-address {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.footer-phone {
    color: #60a5fa;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-section .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer-section .nav-logo:hover {
    color: #3b82f6;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: #ffffff;
    min-height: 100vh;
}

.legal-content {
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    padding-bottom: 0.5rem;
}

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

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

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

.contact-info {
    background: #f9fafb;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #1e40af;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .code-window-full {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    

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

    
    .ebook-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ebook-title {
        font-size: 2rem;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .badge-item {
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .badge-item img {
        max-height: 100px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .logo-item {
        height: 100px;
        padding: 1rem;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .solution-item.reverse {
        direction: ltr;
    }
    
    .solution-content h3 {
        font-size: 2rem;
    }
    
    .solution-image img {
        height: 300px;
    }
    

    

    

    
    .code-window,
    .code-window-full {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #1e40af;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-code-section {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .capabilities-timeline::before {
        left: 30px;
    }
    
    .capability-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 2rem;
    }
    
    .capability-content {
        padding: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .capability-content h3 {
        font-size: 1.25rem;
    }

    .ebook-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ebook-title {
        font-size: 1.75rem;
    }
    
    .ebook-icon {
        font-size: 6rem;
    }
    
    .clients-title {
        font-size: 1.75rem;
    }
    
    .badge-item {
        max-width: 300px;
        padding: 1.25rem;
    }
    
    .badge-item img {
        max-height: 80px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .logo-item {
        height: 80px;
        padding: 0.75rem;
    }
    
    .logo-item img {
        max-height: 50px;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .solution-content {
        padding: 1rem;
    }
    
    .solution-content h3 {
        font-size: 1.75rem;
    }
    
    .solution-image img {
        height: 250px;
    }
    
    .capabilities-timeline::before {
        left: 25px;
    }
    
    .capability-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 1.5rem;
    }
    
    .capability-content {
        padding: 1rem;
    }
    
    .capability-content h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-image img {
        height: 400px;
    }
    
    .testimonials-quotes {
        max-height: none;
        padding-right: 0;
        gap: 1.5rem;
    }
    
    .quote-item {
        padding: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .code-window,
    .code-window-full {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .ebook-title {
        font-size: 1.5rem;
    }
    
    .ebook-icon {
        font-size: 4rem;
    }
    
    .clients-title {
        font-size: 1.5rem;
    }
    
    .badge-item {
        max-width: 280px;
        padding: 1rem;
    }
    
    .badge-item img {
        max-height: 60px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .logo-item {
        height: 70px;
        padding: 0.5rem;
    }
    
    .logo-item img {
        max-height: 40px;
    }
    
    .solution-content h3 {
        font-size: 1.5rem;
    }
    
    .solution-image img {
        height: 200px;
    }
    
    .testimonials-image img {
        height: 300px;
    }
    
    .testimonials-quotes {
        gap: 1rem;
    }
    
    .quote-item {
        padding: 1rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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



/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: var(--bg-primary);
}



/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.product-card {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #1e40af;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) contrast(1.2);
}

.product-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonials-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.testimonials-quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.quote-item {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.quote-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #1e40af;
}

.quote-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.quote-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.quote-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #1e40af;
}

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

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

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

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Code Syntax Highlighting Overrides */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6b7280;
}

.token.punctuation {
    color: #e5e7eb;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
    color: #60a5fa;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
    color: #34d399;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #fbbf24;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #a78bfa;
}

.token.function {
    color: #f472b6;
}

.token.regex,
.token.important,
.token.variable {
    color: #fca5a5;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}
