* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.9);
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bfff;
}

.cta-btn {
    background: #fff;
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links.mobile-active {
    display: flex !important;
}

/* Hero Section */
.hero {
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5% 5%;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btn {
    background: #00bfff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

.hero-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.hero-image {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid #333;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Company Info Section */
.company-info {
    background: #c0c0c0;
    color: #000;
    padding: 5rem 5%;
}

.company-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 30px;
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.value-card:nth-child(2) {
    transform: rotate(1deg);
}

.value-card:nth-child(3) {
    transform: rotate(-1deg);
}

.value-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.value-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.value-image {
    width: 100%;
    height: 150px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

/* Solutions Section */
.solutions {
    background: #0a0a0a;
    padding: 5rem 5%;
}

.solutions h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.solutions-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: #aaa;
    line-height: 1.6;
}

.accordion-item.active .feature-content {
    max-height: 200px;
    margin-top: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.benefit-card h3 {
    font-size: 2.5rem;
    color: #00bfff;
    margin-bottom: 0.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    color: #aaa;
    font-size: 0.95rem;
}

.benefit-image {
    width: 100%;
    height: 120px;
    background: #333;
    border-radius: 10px;
    margin-top: 1rem;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.automate-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.automate-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.automate-icon {
    width: 60px;
    height: 60px;
    background: #90ee90;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Tailored Solutions */
.tailored-solutions,
.dms-section {
    background: #0a0a0a;
    padding: 5rem 5%;
}

.tailored-grid,
.dms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tailored-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.visual-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.service-tag {
    position: absolute;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 10;
}

.visual-image-wrapper .tag-pink {
    background: #ff1493;
    top: 10%;
    right: 5%;
}

.visual-image-wrapper .tag-blue {
    background: #4169e1;
    bottom: 10%;
    left: 5%;
}

.visual-image-wrapper .tag-yellow {
    background: #ffd700;
    color: #000;
    top: 10%;
    right: 5%;
}

.visual-image-wrapper .tag-green {
    background: #90ee90;
    color: #000;
    bottom: 10%;
    left: 5%;
}

.tailored-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tailored-content p {
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.learn-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 1rem;
}

/* FAQs */
.faqs {
    background: #0a0a0a;
    padding: 5rem 5%;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-list h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-number {
    background: #6a0dad;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.faq-answer {
    color: #aaa;
    line-height: 1.6;
}

.faq-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-image {
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #1a0a3e 0%, #6a0dad 100%);
    padding: 5rem 5%;
}

.testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
}

.author-name {
    font-weight: 600;
}

.author-title {
    color: #aaa;
    font-size: 0.9rem;
}

/* CTA Section */
.final-cta {
    background: #0a0a0a;
    padding: 5rem 5%;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.btn-blue {
    background: #4169e1;
    color: #fff;
}

.btn-purple {
    background: #9370db;
    color: #fff;
}

.btn-yellow {
    background: #ffd700;
    color: #000;
}

.company-name {
    font-size: 2rem;
    color: #aaa;
}

/* Contact Form */
.contact-form {
    background: #0a0a0a;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.form-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00bfff;
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #fff;
    color: #000;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.submit-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.email-btn {
    background: #4169e1;
    color: #fff;
}

.email-btn:hover {
    background: #3558c7;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1fb855;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 5% 1.5rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 2rem;
    font-weight: 600;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00bfff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 3%;
    }

    .hero {
        padding: 3% 3%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .solutions-grid,
    .tailored-grid,
    .dms-grid {
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        grid-column: span 1 !important;
    }

    .automate-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .burger {
        display: flex;
        order: 2;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid #333;
        z-index: 999;
    }

    .cta-btn {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 5%;
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-images {
        margin-top: 2rem;
        width: 100%;
    }

    .company-info {
        padding: 3rem 5%;
    }

    .company-info h2 {
        font-size: 1.8rem;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .solutions {
        padding: 3rem 5%;
    }

    .solutions h2 {
        font-size: 2rem;
    }

    .solutions-subtitle {
        font-size: 1rem;
    }

    .solutions-grid,
    .tailored-grid,
    .dms-grid,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tailored-visual {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        grid-column: span 1 !important;
    }

    .automate-card {
        grid-template-columns: 1fr;
    }

    .tailored-solutions,
    .dms-section {
        padding: 3rem 5%;
    }

    .tailored-content h2 {
        font-size: 2rem;
    }

    .service-tag {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .faqs {
        padding: 3rem 5%;
    }

    .faq-list h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-images {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 3rem 5%;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .final-cta {
        padding: 3rem 5%;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons span {
        display: none;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 3rem 5%;
    }

    .contact-form h2 {
        font-size: 2rem;
    }

    .submit-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .company-info h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .value-number {
        font-size: 2rem;
    }

    .solutions h2,
    .tailored-content h2,
    .faq-list h2,
    .testimonials h2,
    .final-cta h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 2rem;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
    }

    .form-input,
    .form-textarea,
    .submit-btn {
        font-size: 0.9rem;
    }
}