:root {
    --primary-blue: #00a0e3;
    --primary-red: #E31E25;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(41, 47, 50, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}



/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 8% 6rem;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.tagline {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(1, 160, 226, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    background: var(--primary-red);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    /* box-shadow: 0 4px 14px 0 rgba(227, 30, 37, 0.39); */
    white-space: nowrap;
}

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

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    width: 90%;
    max-width: 650px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    opacity: 0.1;
    border-radius: 50%;
    top: -50px;
    right: -20px;
    z-index: 1;
    filter: blur(50px);
}

/* Shared Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: -3rem auto 4rem;
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features */
.features {
    padding: 5rem 8%;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(1, 160, 226, 0.3);
    box-shadow: 0 10px 25px rgba(1, 160, 226, 0.1);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* In-depth Features */
.features-details-container {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.features-details-container>h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-details-container>p.subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
}

.feature-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 7rem;
}

.feature-detail-section:last-child {
    margin-bottom: 0;
}

.feature-detail-section:nth-child(even) .feature-info {
    grid-column: 2;
    grid-row: 1;
}

.feature-detail-section:nth-child(even) .feature-visual {
    grid-column: 1;
    grid-row: 1;
}

.feature-info h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.feature-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.feature-info ul {
    list-style: none;
}

.feature-info ul li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.feature-info ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.feature-visual {
    display: block;
    position: relative;
    width: 100%;
}

.visual-card {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 160, 226, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.feature-detail-section:nth-child(even) .visual-card::before {
    background: radial-gradient(circle, rgba(227, 30, 37, 0.05) 0%, transparent 60%);
}

.visual-icon {
    font-size: 4.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    z-index: 2;
}

.feature-detail-section:nth-child(even) .visual-icon {
    color: var(--primary-red);
}

/* Industries */
.industries {
    padding: 6rem 8%;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 30, 37, 0.3);
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(227, 30, 37, 0.05);
}

.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(1, 160, 226, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.industry-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.industry-card:hover .industry-icon-wrapper {
    background: var(--primary-red);
}

.industry-card:hover .industry-icon-wrapper i {
    color: white;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
}

.contact-card-v2 {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-icon-v2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.phone-card .contact-icon-v2 {
    color: var(--primary-blue);
    background: rgba(1, 160, 226, 0.1);
}

.email-card .contact-icon-v2 {
    color: var(--primary-red);
    background: rgba(227, 30, 37, 0.1);
}

.whatsapp-card .contact-icon-v2 {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.phone-card:hover {
    border-color: var(--primary-blue);
}

.email-card:hover {
    border-color: var(--primary-red);
}

.whatsapp-card:hover {
    border-color: #25D366;
}

.contact-card-v2 h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card-v2 p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-action-btn {
    margin-top: auto;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-dark);
}

.phone-card:hover .contact-action-btn {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.email-card:hover .contact-action-btn {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.whatsapp-card:hover .contact-action-btn {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* FAQ */
.faq {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-toggle-icon {
    color: var(--primary-blue);
    background: rgba(1, 160, 226, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-toggle-icon i {
    font-size: 13px;
    line-height: 1;
    display: block;
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary-blue);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    padding: 5rem 8% 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col p,
.footer-col p a,
.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col p a:hover,
.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7.5rem;
    }

    .hero-content {
        margin-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin: -3rem 1.5rem 4rem;
    }

    .feature-detail-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .feature-info {
        padding: 0 !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .feature-visual {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .feature-info ul li {
        text-align: left;
    }

    .visual-card {
        max-width: 450px;
        aspect-ratio: 16/10;
    }

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

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        gap: 0.8rem;
    }
}