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

:root {
    --navy: #0a1628;
    --navy-light: #132040;
    --orange: #f57c20;
    --orange-dark: #d96a15;
    --white: #fff;
    --gray: #f5f7fa;
    --text: #333;
    --text-light: #666
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden
}

/* Accessibility: visible focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px
}

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

.section {
    padding: 80px 0
}

.section-label {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--orange);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px)
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy)
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, .2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all .3s;
    background: var(--navy)
}

.navbar.scrolled {
    background: var(--navy);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo img {
    height: 45px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--orange)
}

.nav-links a.active {
    color: var(--orange)
}

.nav-btn {
    display: none
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: .3s
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 124, 32, .1), transparent 70%);
    border-radius: 50%
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('/assets/image-opt.jpg') center/cover no-repeat;
    opacity: .08
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px
}

.hero-subtitle {
    color: var(--orange);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px
}

.hero-title .typed-text {
    color: var(--orange)
}

.cursor {
    color: var(--orange);
    animation: blink .7s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.hero-desc {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    background: var(--navy);
    border-radius: 15px;
    padding: 40px
}

.stat-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange)
}

.stat-item p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    margin-top: 5px
}

/* Vision Mission */
.vision-mission {
    background: var(--gray)
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.vm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .05);
    transition: transform .3s
}

.vm-card:hover {
    transform: translateY(-5px)
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.vm-icon i {
    color: var(--white);
    font-size: 24px
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.7
}

.vm-card ul {
    list-style: none
}

.vm-card ul li {
    color: var(--text-light);
    padding: 5px 0 5px 20px;
    position: relative
}

.vm-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    transition: all .3s
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    border-color: var(--orange)
}

.product-icon {
    width: 55px;
    height: 55px;
    background: rgba(245, 124, 32, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px
}

.product-icon i {
    color: var(--orange);
    font-size: 22px
}

.product-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px
}

.product-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6
}

/* Product Banner */
.product-banner {
    background: var(--gray);
    padding: 40px 0;
    text-align: center
}

.product-banner-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    cursor: pointer;
    transition: transform .3s
}

.product-banner-img:hover {
    transform: scale(1.02)
}

/* Machinery */
.machinery {
    background: var(--navy)
}

.machinery .section-label {
    color: var(--orange)
}

.machinery .section-title {
    color: var(--white)
}

.machinery .section-desc {
    color: rgba(255, 255, 255, .7)
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px
}

.machine-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px;
    transition: all .3s
}

.machine-card:hover {
    background: rgba(245, 124, 32, .1);
    border-color: var(--orange)
}

.machine-card i {
    color: var(--orange);
    font-size: 20px;
    min-width: 24px
}

.machine-card span {
    color: var(--white);
    font-weight: 500
}

/* Why Us */
.why-us {
    background: var(--gray)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05)
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
}

.why-card i {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 15px
}

.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-weight: 700
}

/* Advantages */
.advantages .section-title {
    text-align: center
}

.advantages-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all .3s
}

.adv-item:hover {
    background: var(--orange);
    color: var(--white)
}

.adv-item:hover i {
    color: var(--white)
}

.adv-item i {
    color: var(--orange)
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all .3s
}

.client-logo:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.client-logo i {
    font-size: 28px;
    color: var(--orange)
}

.client-logo span {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy)
}

/* Testimonials */
.testimonials {
    background: var(--gray)
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden
}

.testimonial-track {
    position: relative;
    min-height: 250px
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .05)
}

.testimonial-card.active {
    opacity: 1;
    position: relative
}

.stars {
    color: var(--orange);
    margin-bottom: 15px
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px
}

.testimonial-author strong {
    display: block;
    color: var(--navy)
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light)
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: transparent;
    cursor: pointer;
    transition: all .3s
}

.dot.active {
    background: var(--orange)
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 25px;
    transition: all .3s
}

.industry-card:hover {
    border-color: var(--orange);
    transform: translateX(5px)
}

.industry-card i {
    color: var(--orange);
    font-size: 24px;
    min-width: 30px
}

.industry-card span {
    font-weight: 500;
    color: var(--navy)
}

/* Quality */
.quality-section {
    background: var(--gray)
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.quality-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05)
}

.quality-card i {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 20px
}

.quality-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    margin-bottom: 15px
}

.quality-card p {
    color: var(--text-light);
    line-height: 1.7
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(245, 124, 32, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0
}

.contact-item strong {
    color: var(--navy);
    display: block;
    margin-bottom: 3px
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color .3s
}

.contact-item a:hover {
    color: var(--orange)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.contact-form input,
.contact-form textarea {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border .3s
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange)
}

.contact-form button[disabled] {
    opacity: .7;
    cursor: not-allowed
}

.contact-form-status {
    min-height: 20px;
    font-size: 13px;
    font-weight: 500
}

.contact-form-status.is-success {
    color: #1f7a2e
}

.contact-form-status.is-error {
    color: #c0392b
}

.map-embed {
    margin-top: 10px
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 60px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 6px
}

.footer-about p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.7
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all .3s
}

.social-links a:hover {
    background: var(--orange)
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px
}

.footer-links ul {
    list-style: none
}

.footer-links ul li {
    margin-bottom: 10px
}

.footer-links ul li a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 14px;
    transition: color .3s
}

.footer-links ul li a:hover {
    color: var(--orange)
}

.footer-contact p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    margin-bottom: 10px
}

.footer-contact p i {
    color: var(--orange);
    margin-right: 8px
}

.footer-contact a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .3s
}

.footer-contact a:hover {
    color: var(--orange)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, .5);
    font-size: 13px
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 998;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .3)
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px)
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: transform .3s
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer
}

/* Responsive */
/* Download Brochure Button */
.btn-download {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    margin-left: 10px
}

.btn-download:hover {
    background: var(--orange);
    color: var(--white)
}

/* How We Work Timeline */
.how-we-work {
    background: var(--gray)
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange)
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px
}

.timeline-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1
}

.timeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    flex: 1
}

.timeline-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    margin-bottom: 5px
}

.timeline-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6
}

/* Updated Clients Grid */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all .3s
}

.client-logo-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.client-logo-card i {
    font-size: 28px;
    color: var(--orange)
}

.client-logo-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy)
}

.client-logo-card small {
    font-size: 11px;
    color: var(--text-light)
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.blog-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
}

.blog-img {
    height: 120px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center
}

.blog-img i {
    font-size: 36px;
    color: var(--orange)
}

.blog-body {
    padding: 20px
}

.blog-date {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600
}

.blog-body h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.4
}

.blog-body p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6
}

/* FAQ */
.faq-list {
    max-width: 750px;
    margin: 0 auto
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s
}

.faq-item.active {
    border-color: var(--orange)
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s
}

.faq-question:hover {
    color: var(--orange)
}

.faq-question i {
    transition: transform .3s;
    color: var(--orange);
    font-size: 13px
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

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

.faq-item.active .faq-answer {
    max-height: 200px
}

.faq-answer p {
    padding: 0 25px 18px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7
}

/* Company popup */
.company-popup {
    position: fixed;
    inset: 0;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease
}

.company-popup.is-open {
    opacity: 1;
    pointer-events: auto
}

.company-popup__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(245, 124, 32, .2), rgba(0, 0, 0, .86) 60%);
    pointer-events: none
}

.company-popup__dialog {
    position: relative;
    width: min(940px, calc(100% - 30px));
    max-height: calc(100vh - 100px);
    overflow: hidden;
    margin: 84px auto 20px;
    background: linear-gradient(140deg, #07162a 0%, #132a4e 54%, #1b355d 100%);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    color: #fff;
    transform: translateY(24px) scale(.96);
    transition: transform .35s ease;
    pointer-events: none
}

.company-popup__dialog::before,
.company-popup__dialog::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0
}

.company-popup__dialog::before {
    background: radial-gradient(circle, rgba(245, 124, 32, .38), rgba(245, 124, 32, 0) 70%);
    top: -120px;
    right: -80px
}

.company-popup__dialog::after {
    background: radial-gradient(circle, rgba(61, 162, 255, .36), rgba(61, 162, 255, 0) 70%);
    bottom: -120px;
    left: -90px
}

.company-popup.is-open .company-popup__dialog {
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.company-popup.is-open .company-popup__overlay {
    pointer-events: auto
}

.company-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2
}

.company-popup__close:hover {
    background: rgba(255, 255, 255, .26)
}

.company-popup__eyebrow {
    color: #ffd09f;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1
}

.company-popup__title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.company-popup__subtitle {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 14px;
    line-height: 1.7;
    max-width: 760px;
    position: relative;
    z-index: 1
}

.company-popup__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1
}

.company-popup__card {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .08));
    backdrop-filter: blur(5px)
}

.company-popup__brand {
    display: inline-block;
    color: #ffcf9a;
    font-size: 11px;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 10px
}

.company-popup__card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.05rem
}

.company-popup__card p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px
}

.company-popup__mini {
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    margin-bottom: 12px
}

.company-popup__card h4 {
    color: #ffd09f;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.company-popup__card ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.7
}

.company-popup__card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px
}

.company-popup__card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(245, 124, 32, .9)
}

.company-popup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.company-popup__cta:hover {
    transform: translateY(-1px)
}

.company-popup__cta--primary {
    color: #fff;
    background: linear-gradient(95deg, #0ea5e9, #1d4ed8);
    box-shadow: 0 8px 24px rgba(29, 78, 216, .4)
}

.company-popup__cta--secondary {
    color: #fff;
    background: linear-gradient(95deg, #f57c20, #ff9751);
    box-shadow: 0 8px 24px rgba(245, 124, 32, .4)
}

.company-popup__assist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .11);
    position: relative;
    z-index: 1
}

.company-popup__assist p {
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500
}

.company-popup__assist-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(95deg, #0ea5e9, #1d4ed8);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(29, 78, 216, .35)
}

.company-popup__assist-call:hover {
    transform: translateY(-1px)
}

.company-popup__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1
}

.company-popup__links a {
    display: inline-block;
    text-decoration: none;
    color: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 7px 14px;
    font-weight: 600;
    font-size: 13px
}

.company-popup__links a:hover {
    background: rgba(255, 255, 255, .2)
}

@media(max-width:992px) {
    .hero-title {
        font-size: 2.5rem
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .vm-grid {
        grid-template-columns: 1fr
    }

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

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

    .quality-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

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

    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .nav-btn {
        display: inline-block;
        font-size: 12px;
        padding: 10px 18px
    }
}

@media(max-width:768px) {
    .company-popup__dialog {
        margin: 78px auto 18px;
        max-height: calc(100vh - 82px);
        padding: 20px 16px
    }

    .company-popup__title {
        font-size: 1.25rem;
        padding-right: 34px
    }

    .company-popup__subtitle {
        font-size: 14px
    }

    .company-popup__grid {
        grid-template-columns: 1fr
    }

    .company-popup__assist {
        flex-direction: column;
        align-items: flex-start
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px
    }

    .nav-links.active {
        display: flex
    }

    .nav-toggle {
        display: flex
    }

    .nav-btn {
        display: none
    }

    .hero-title {
        font-size: 2rem
    }

    .section {
        padding: 60px 0
    }

    .section-title {
        font-size: 1.7rem
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 20px
    }

    .stat-item h3 {
        font-size: 1.8rem
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .industries-grid {
        grid-template-columns: 1fr
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .btn-outline,
    .btn-download {
        margin-left: 0;
        margin-top: 10px
    }

    .timeline {
        padding-left: 30px
    }

    .timeline::before {
        left: 13px
    }
}
