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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #DDD6FE;
    background-color: #2D3436;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
    padding: 24px 0;
    border-bottom: 1px solid #636E72;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #DDD6FE;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 50%, #1A1A2E 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 206, 201, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(116, 185, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #DDD6FE 0%, #00CEC9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #B2BEC3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #00CEC9 0%, #74B9FF 100%);
    color: #1A1A2E;
    border: none;
    padding: 16px 32px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #636E72;
}

/* Section Base Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #DDD6FE;
}

/* Section content wrapper for center alignment */
.section-content {
    text-align: center;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #00CEC9;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.feature-card p {
    color: #B2BEC3;
    line-height: 1.6;
}

/* How It Works */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px;
}

.step-number {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00CEC9 0%, #74B9FF 100%);
    color: #1A1A2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.step p {
    color: #B2BEC3;
    line-height: 1.6;
}

/* Products */
.products {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

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

.product-card {
    background: rgba(45, 52, 54, 0.8);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #00CEC9;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.product-card p {
    color: #B2BEC3;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #00CEC9;
    margin-bottom: 24px;
    text-align: center;
}

.product-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.product-card ul li {
    color: #B2BEC3;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-card ul li::before {
    content: '✓';
    color: #00CEC9;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-button {
    width: 100%;
    background: linear-gradient(135deg, #00CEC9 0%, #74B9FF 100%);
    color: #1A1A2E;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.benefit-item p {
    color: #B2BEC3;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.use-case {
    background: rgba(45, 52, 54, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.use-case h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #DDD6FE;
}

.use-case p {
    color: #B2BEC3;
    line-height: 1.6;
}

/* Tech Specs */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.spec-category {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
}

.spec-category h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #DDD6FE;
}

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

.spec-category ul li {
    color: #B2BEC3;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

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

/* Contacts */
.contacts {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(45, 52, 54, 0.5);
    border: 1px solid #636E72;
    border-radius: 12px;
    padding: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #DDD6FE;
}

.contact-details p {
    color: #B2BEC3;
}

/* Footer */
.footer {
    background: #1A1A2E;
    border-top: 1px solid #636E72;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-brand .logo {
    width: 32px;
    height: 32px;
}

.footer-brand .brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #DDD6FE;
}

.footer-description {
    color: #B2BEC3;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 64px;
    justify-content: flex-end;
}

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

.footer-column a {
    display: block;
    color: #B2BEC3;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00CEC9;
}

.footer-bottom {
    border-top: 1px solid #636E72;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #636E72;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}
a{
    text-decoration: none;
    color: red;
}
.modal-content {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3436 100%);
    margin: 5% auto;
    padding: 12px;
    border: 1px solid #636E72;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #B2BEC3;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 24px;
}

.close:hover {
    color: #00CEC9;
}

.modal-content h2 {
    color: #DDD6FE;

    text-align: left;
    font-size: 28px;
}

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

.form-group label {
    display: block;
    color: #DDD6FE;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #636E72;
    border-radius: 8px;
    background: rgba(45, 52, 54, 0.8);
    color: #DDD6FE;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00CEC9;
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #00CEC9 0%, #74B9FF 100%);
    color: #1A1A2E;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .hero .container {
        gap: 48px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 48px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 32px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 24px;
    }
}