* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b35;
}

.cta-button {
    background: #ff6b35;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ff8555;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff8555;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Stats Section */
.stats-section {
    background: #000;
    padding: 80px 40px;
}

.stats-header {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 60px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-item h2 {
    font-size: 56px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Competitive Edge Section */
.competitive-section {
    background: #000;
    padding: 100px 40px;
    border-top: 1px solid #1a1a1a;
}

.competitive-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 80px;
}

.competitive-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    gap: 40px;
    align-items: start;
}

.ad-space-vertical {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
}

.ad-space-vertical p {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.5;
}

.competitive-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.competitive-card {
    background: #000;
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
}

.competitive-card:hover {
    background: #0a0a0a;
}

.competitive-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.competitive-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.competitive-card p {
    font-size: 12px;
    line-height: 1.7;
    color: #888;
    letter-spacing: 0.3px;
}

/* Services Section */
.services-section {
    background: #000;
    padding: 100px 40px;
    border-top: 1px solid #1a1a1a;
}

.services-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 80px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #000;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 35px 30px;
    flex: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 11px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 18px;
    display: flex;
    gap: 8px;
    letter-spacing: 0.3px;
    align-items: flex-start;
}

.service-list li span {
    color: #00d9ff;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

/* Brand Engine Section */
.brand-engine-section {
    background: #0f0f0f;
    padding: 60px 40px 0;
    border-top: 1px solid #1a1a1a;
}

.architecture-header {
    text-align: center;
    margin-bottom: 35px;
}

.architecture-header p {
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    font-family: monospace;
}

.architecture-badges {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.badge {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #888;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.badge:hover {
    border-color: #00d9ff;
    color: #00d9ff;
}

.brand-engine-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
    padding: 0 40px;
    padding-bottom: 120px;
}

.brand-engine-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 25px;
    line-height: 1.2;
    margin-top: 0;
}

.brand-engine-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-features li {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.brand-features li span {
    color: #00d9ff;
    font-weight: 700;
    flex-shrink: 0;
}

.brand-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-box {
    background: #000;
    border: 1px solid #2a2a2a;
    width: 100%;
    max-width: 420px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.preview-box:hover {
    border-color: #00d9ff;
}

.preview-box h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.preview-box p {
    font-size: 13px;
    color: #555;
    letter-spacing: 0.5px;
}

.brand-ad-space {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: -140px;
}

.brand-ad-placeholder {
    background: #e5e5e5;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    max-width: 1220px;
    margin: 0 auto;
}

/* Perfect For Section */
.perfect-for-section {
    background: #000;
    padding: 160px 40px 80px;
    border-top: 1px solid #1a1a1a;
}

.perfect-for-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.perfect-for-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.perfect-for-item {
    text-align: center;
}

.perfect-for-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.perfect-for-item p {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* Contact Form Section */
.contact-form-section {
    background: #0a0a0a;
    padding: 80px 40px;
    border-top: 1px solid #1a1a1a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

.contact-form {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    color: #fff;
    padding: 12px 0;
    margin-bottom: 28px;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #555;
    font-size: 13px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #00d9ff;
}

.form-textarea {
    resize: vertical;
    min-height: 70px;
    margin-bottom: 25px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.form-checkbox label {
    font-size: 11px;
    color: #aaa;
    line-height: 1.6;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #ff8555;
}

.contact-images {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-img-large {
    width: 320px;
    height: 380px;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-img-small {
    width: 280px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    margin-top: 251px;
    margin-left: -226px;
    border: 8px solid #000;
}

/* Features Section */
.features-section {
    background: #000;
    padding: 100px 40px;
}

.section-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 80px;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr) 200px;
    gap: 30px;
}

.ad-space {
    background: #111;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.feature-icon {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 25px;
}

.feature-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #ff8555;
}

/* Projects Section */
.projects-section {
    background: #000;
    padding: 100px 40px;
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.project-info p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
}

.project-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.project-link:hover {
    color: #ff8555;
}

/* Ad Section */
.ad-section {
    background: #000;
    padding: 80px 40px;
}

.ad-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 200px;
    background: #e0e0e0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-section {
    background: #000;
    padding: 100px 40px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    font-size: 14px;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.about-image {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: #000;
    padding: 100px 40px;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 35px;
}

.cta-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid #1a1a1a;
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 60px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .competitive-grid {
        grid-template-columns: 1fr;
    }
    
    .ad-space-vertical {
        display: none;
    }
    
    .competitive-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ad-space {
        display: none;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .perfect-for-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .competitive-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .architecture-badges {
        gap: 15px;
    }
    
    .badge {
        font-size: 10px;
        padding: 10px 18px;
    }
    
    .brand-engine-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-images {
        grid-template-columns: 1fr;
    }
    
    .contact-img-large,
    .contact-img-small {
        grid-column: 1;
        grid-row: auto;
        height: 300px;
        margin-top: 0;
    }
    
    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
