/* =========================================
   HOME HERO
========================================= */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: #fff;
    background: url('/assets/images/hero-desktop.webp') center 15% / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 20, 35, 0.92) 0%, rgba(10, 37, 64, 0.78) 42%, rgba(10, 37, 64, 0.30) 100%),
        url('/assets/images/grid.svg');
    opacity: 0.98;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 680px;
    padding-top: 72px;
}

.hero-text {
    max-width: 760px;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #C89B3C;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero p {
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================================
   HOME BUTTONS
========================================= */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    background: #C89B3C;
    color: #111827;
    border: 1px solid #C89B3C;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-gold:link,
.btn-gold:visited {
    color: #111827;
}

.btn-gold:hover {
    background: #d9ab4a;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-outline-light:link,
.btn-outline-light:visited {
    color: #ffffff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   HOME SECTIONS
========================================= */
.section {
    padding: 88px 0;
}

.section-white {
    background: #ffffff;
}

.section-light {
    background: #f5f7fa;
}

.section-title {
    max-width: 760px;
    margin-bottom: 14px;
    color: #111827;
    font-size: 34px;
    line-height: 1.2;
}

.section-subtitle {
    max-width: 720px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.75;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 56px;
    align-items: center;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.capability-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    background: #f8fafc;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #C89B3C;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.stats-panel {
    display: grid;
    gap: 14px;
    padding: 26px;
    background: #0a2540;
    border: 1px solid rgba(200, 155, 60, 0.32);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.stat-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item strong {
    color: #C89B3C;
    font-size: 26px;
    line-height: 1.1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================
   SERVICES
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.services-grid .service-card {
    min-height: 172px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #C89B3C;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-grid .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 155, 60, 0.70);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.services-grid .service-card h3 {
    margin-bottom: 10px;
    color: #111827;
    font-size: 19px;
}

.services-grid .service-card p {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================
   NEWSLETTER & CTA
========================================= */
.newsletter-section {
    background: #ffffff;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 42px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 20, 35, 0.96), rgba(10, 37, 64, 0.94)),
        url('/assets/images/grid.svg');
    color: #fff;
}

.section-dark .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .hero,
    .hero-content {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .grid-2,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-inner,
    .section-dark .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero,
    .hero-content {
        min-height: 590px;
    }

    .hero-content {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 27px;
    }

    .stat-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-actions,
    .hero-actions .btn,
    .newsletter-inner .btn,
    .section-dark .btn {
        width: 100%;
    }
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: #fff;
    background: url('/assets/images/hero-desktop.webp') 85% center / cover no-repeat;
    overflow: hidden;
}

/* =========================================================
   HOME VIDEO SECTION
========================================================= */

.home-video-header {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    overflow: hidden;
    border-radius: 18px;

    box-shadow: 0 24px 60px rgba(15,23,42,.15);
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

@media (max-width: 768px) {

    .home-video-header {
        margin-bottom: 28px;
    }

    .video-wrapper {
        border-radius: 14px;
    }
}


/* =========================================================
   HOME SERVICES CARDS - PREMIUM INDUSTRIAL
========================================================= */

.services-grid-premium {
    align-items: stretch;
}

.service-card-premium {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cbaf75, #d7bd7f);
    opacity: 1;
}

.service-card-premium::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 42px;
    height: 42px;
    border-right: 2px solid rgba(203, 175, 117, .28);
    border-bottom: 2px solid rgba(203, 175, 117, .28);
    pointer-events: none;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(203, 175, 117, .38);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .12);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbaf75;
    background: rgba(203, 175, 117, .12);
    border: 1px solid rgba(203, 175, 117, .28);
    border-radius: 14px;
    transition: transform .25s ease, color .25s ease, background .25s ease;
}

.service-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.service-index {
    color: rgba(15, 23, 42, .12);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.service-card-premium:hover .service-icon {
    transform: scale(1.06);
    color: #ffffff;
    background: linear-gradient(135deg, #cbaf75, #b8954f);
}

.service-card-premium h3 {
    margin-bottom: 16px;
    transition: color .25s ease;
}

.service-card-premium:hover h3 {
    color: #0b2f57;
}

.service-card-premium p {
    line-height: 1.75;
}

@media (max-width: 768px) {
    .service-card-premium {
        min-height: 0;
        padding: 28px;
    }

    .service-card-top {
        margin-bottom: 22px;
    }

    .service-index {
        font-size: 28px;
    }
}

