:root {
    --navy-950: #06152f;
    --navy-900: #0b2047;
    --navy-850: #102a5e;
    --navy-800: #173776;
    --navy-700: #234c98;
    --navy-500: #5b86d6;
    --navy-200: #dce9ff;
    --navy-100: #eef4ff;
    --navy-050: #f7faff;
    --text-dark: #10213f;
    --text-soft: #5a6b89;
    --white: #ffffff;
    --shadow-soft: 0 22px 60px rgba(11, 32, 71, 0.12);
    --shadow-card: 0 18px 48px rgba(6, 21, 47, 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(91, 134, 214, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 45%, #f7faff 100%);
}

a {
    text-decoration: none;
}

section {
    scroll-margin-top: 96px;
}

.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(35, 76, 152, 0.08);
    color: var(--navy-800);
}

.section-heading {
    font-size: clamp(1.3rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-copy {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.utility-bar {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.utility-bar .container {
    padding-top: 3px;
    padding-bottom: 3px;
}

.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-list a {
    color: rgba(255, 255, 255, 0.88);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
}

.social-list a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.navbar-shell {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 5px 0;
    background: rgba(247, 250, 255, 0.82);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(16, 42, 94, 0.08);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-950);
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.28rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 32%),
        linear-gradient(145deg, var(--navy-700), var(--navy-950));
    box-shadow: 0 16px 30px rgba(23, 55, 118, 0.28);
}

.brand-copy small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-soft);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--navy-900);
    font-weight: 600;
    margin: 0 6px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    background: var(--navy-700);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-navy {
    color: var(--white);
    border: 0;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    box-shadow: 0 18px 32px rgba(16, 42, 94, 0.24);
}

.btn-navy:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-navy {
    color: var(--navy-900);
    border: 1px solid rgba(16, 42, 94, 0.15);
    background: rgba(255, 255, 255, 0.82);
}

.btn-outline-navy:hover {
    color: var(--navy-950);
    background: var(--white);
}

.btn-pill {
    padding: 14px 24px;
    font-weight: 700;
    border-radius: 999px;
}

.hero {
    padding: 34px 0 130px;
    position: relative;
}

.hero-banner {
    position: relative;
    min-height: 650px;
    overflow: visible;
    border-radius: 40px;
    padding: 72px 64px 0;
    box-shadow: 0 34px 90px rgba(6, 21, 47, 0.28);
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
    pointer-events: none;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 86%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-tag {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 22px 0 22px;
    max-width: 760px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-copy {
    font-size: 1.06rem;
    line-height: 1.88;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-secondary-link i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-points {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: -62px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 42, 94, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(6, 21, 47, 0.14);
}

.hero-point span {
    flex: 0 0 auto;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--navy-100);
    color: var(--navy-800);
    font-size: 1.15rem;
}

.hero-point small {
    display: block;
    margin-bottom: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy-700);
}

.hero-point h5 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--navy-950);
}

.hero-point p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.intro-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 54px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(16, 42, 94, 0.08);
    margin-top: 92px;
    position: relative;
    z-index: 2;
}

.intro-divider {
    width: 92px;
    height: 4px;
    border-radius: 999px;
    margin: 28px auto;
    background: linear-gradient(90deg, transparent, var(--navy-500), transparent);
}

.visual-card,
.floating-card {
    position: absolute;
    border-radius: 26px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 44px rgba(6, 21, 47, 0.22);
}

.visual-card {
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 28px;
}

.visual-card strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.visual-card p,
.floating-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.floating-card {
    width: 220px;
    padding: 20px 22px;
}

.floating-card.top {
    top: 34px;
    right: 34px;
}

.floating-card.middle {
    left: 34px;
    top: 56%;
    transform: translateY(-50%);
}

.floating-card .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.floating-card .label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.64);
}

.intro-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 54px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(16, 42, 94, 0.08);
    margin-top: -16px;
    position: relative;
    z-index: 2;
}

.intro-divider {
    width: 92px;
    height: 4px;
    border-radius: 999px;
    margin: 28px auto;
    background: linear-gradient(90deg, transparent, var(--navy-500), transparent);
}

.value-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(220, 233, 255, 0.3));
}

.value-block {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 42, 94, 0.08);
    border-radius: 34px;
    padding: 38px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.value-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-700);
    letter-spacing: 0.18em;
    margin-bottom: 16px;
}

.value-block h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.value-block p {
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 0;
}

.media-panel {
    min-height: 350px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(150deg, var(--navy-700), var(--navy-900) 58%, var(--navy-950));
    box-shadow: 0 26px 60px rgba(11, 32, 71, 0.24);
}

.media-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.media-panel .media-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    color: var(--white);
}

.media-icon {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.media-content h4 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.media-content p {
    max-width: 280px;
    line-height: 1.75;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.media-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.media-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.84rem;
    font-weight: 600;
}
.services-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(220, 233, 255, 0.22));
}

.service-card {
    min-height: 430px;
    border-radius: 30px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(6, 21, 47, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: var(--navy-950);
    background-position: center center;
    background-size: cover;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 21, 47, 0.12), rgba(6, 21, 47, 0.88)),
        linear-gradient(90deg, rgba(6, 21, 47, 0.56), rgba(6, 21, 47, 0.28));
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 134, 214, 0.22), transparent 68%);
}

.service-card-body {
    position: relative;
    z-index: 1;
    max-width: 320px;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 22px;
}

.service-card .btn {
    position: relative;
    z-index: 1;
}

.article-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 28px 0 36px;
}

.filter-btn {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 42, 94, 0.1);
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy-900);
    font-weight: 700;
    transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--white);
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.article-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(16, 42, 94, 0.08);
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.article-item.hidden-card {
    display: none;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.article-tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--navy-100);
    color: var(--navy-800);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 14px;
}

.article-card p {
    color: var(--text-soft);
    line-height: 1.78;
    margin-bottom: 20px;
}

.article-link {
    color: var(--navy-800);
    font-weight: 700;
}

.client-section {
    overflow: hidden;
}

.marquee-shell {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
    mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 6px;
    width: max-content;
    padding: 10px 6px;
    animation: clientMarquee 28s linear infinite;
}

.client-card {
    min-width: 154px;
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.cert-card {
    text-align: center;
}

.client-card .logo-mark,
.cert-card span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--navy-800);
    background: var(--navy-100);
    font-size: 1.3rem;
    flex: 0 0 auto;
}

.client-card .logo-mark {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    font-size: 1.7rem;
}

.cert-card span {
    margin: 0 auto 16px;
}

.cert-card h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
}

.trust-grid {
    margin-top: 32px;
}

@keyframes clientMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 134, 214, 0.18), transparent 62%);
}

.footer-brand {
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.12rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 14px;
    line-height: 1.75;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-list a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
}

.contact-chip {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-chip:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-chip span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 20px 40px rgba(11, 32, 71, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual-wrap {
        padding-left: 0;
        margin-top: 42px;
    }

    .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 84px 0;
    }

    .intro-panel {
        padding: 38px 28px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 22px;
        border: 1px solid rgba(16, 42, 94, 0.08);
    }
}

@media (max-width: 767.98px) {
    .utility-item {
        font-size: .7rem;
    }
    .hero-points {
        grid-template-columns: 1fr;       
        position: relative;
        left: 0;
        right: 36px;
        bottom: -62px;
    }
    .hero-visual {
        min-height: 480px;
        border-radius: 30px;
    }

    .hero-shield {
        width: 190px;
        height: 190px;
        font-size: 4.7rem;
    }

    .floating-card.top,
    .floating-card.middle {
        position: static;
        width: 100%;
        margin: 20px 20px 0;
        transform: none;
    }

    .visual-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .value-block,
    .service-card,
    .article-card,
    .testimonial-card,
    .partner-card,
    .cert-card {
        padding: 26px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .utility-bar .container {
        text-align: center;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }
}


.office-section {
    padding-top: 44px;
}

.office-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    padding: 34px;
    border: 1px solid rgba(16, 42, 94, 0.08);
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.office-card::after {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 134, 214, 0.16), transparent 68%);
}

.office-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--navy-100);
    color: var(--navy-800);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.office-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.office-address {
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.office-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.office-meta-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--navy-900);
}

.office-meta-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--navy-100);
    color: var(--navy-800);
    flex: 0 0 auto;
}

.office-card .btn {
    position: relative;
    z-index: 1;
}

.service-hero {
    position: relative;
    min-height: calc(100vh - 112px);
    padding: 96px 0 170px;
    overflow: visible;
    background:
        linear-gradient(90deg, rgba(6, 21, 47, 0.92) 0%, rgba(6, 21, 47, 0.76) 42%, rgba(6, 21, 47, 0.42) 100%),
        linear-gradient(180deg, rgba(9, 24, 52, 0.12), rgba(9, 24, 52, 0.58));
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
    pointer-events: none;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 84%);
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
    min-height: 620px;
}

.service-hero-content {
    max-width: 760px;
    padding-top: 18px;
}

.hero-tag {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-hero-title {
    font-size: clamp(2.1rem, 4vw, 4.1rem);
    line-height: 1.01;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 22px 0 18px;
    color: var(--white);
    text-transform: uppercase;
}

.service-hero-subtitle {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-hero-copy {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.86;
    font-size: 1.04rem;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-points {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: -62px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 42, 94, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(6, 21, 47, 0.14);
}

.hero-point span {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--navy-100);
    color: var(--navy-800);
    font-size: 1.15rem;
}

.hero-point small {
    display: block;
    margin-bottom: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy-700);
}

.hero-point h5 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--navy-950);
}

.hero-point p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.article-section {
    padding-top: 138px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(220, 233, 255, 0.12));
}

.article-shell {
    max-width: 920px;
    margin: 0 auto;
}

.article-intro {
    margin-bottom: 42px;
}

.article-lead {
    font-size: 1.12rem;
    line-height: 1.94;
    color: var(--text-soft);
    margin: 0;
}

.listicle-item {
    padding: 42px 0;
    border-top: 1px solid rgba(16, 42, 94, 0.1);
}

.listicle-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.listicle-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--navy-100);
    color: var(--navy-800);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.listicle-item h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.16;
    margin-bottom: 16px;
}

.listicle-item p {
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 18px;
}

.article-visual {
    min-height: 280px;
    border-radius: 32px;
    margin: 28px 0 28px;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 24px 60px rgba(6, 21, 47, 0.18);
}

.article-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 21, 47, 0.16), rgba(6, 21, 47, 0.56)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 56%);
}

.article-visual.pipeline {
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80");
}

.article-visual.injection {
    background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80");
}

.detail-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.detail-list li {
    margin-bottom: 12px;
    line-height: 1.88;
}

.micro-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 14px;
    color: var(--navy-800);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.keyword-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.keyword-chip {
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(35, 76, 152, 0.08);
    color: var(--navy-900);
    font-size: 0.92rem;
    font-weight: 600;
}

.cta-strip {
    padding: 92px 0;
    background:
        radial-gradient(circle at top right, rgba(91, 134, 214, 0.14), transparent 26%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.cta-strip .section-tag {
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
}

.cta-strip .section-copy {
    color: rgba(255, 255, 255, 0.74);
    max-width: 820px;
    margin: 0 auto 30px;
}


@media (max-width: 991.98px) {
    .section-padding {
        padding: 84px 0;
    }

    .service-hero {
        min-height: auto;
        padding: 72px 0 42px;
    }

    .hero-points {
        position: static;
        margin-top: 34px;
        grid-template-columns: 1fr;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 22px;
        border: 1px solid rgba(16, 42, 94, 0.08);
    }

    .article-section {
        padding-top: 84px;
    }
}

@media (max-width: 767.98px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero {
        padding: 58px 0 34px;
    }

    .service-hero .container {
        min-height: auto;
    }

    .article-visual {
        min-height: 220px;
        border-radius: 24px;
    }

    .listicle-item {
        padding: 34px 0;
    }

    .cta-strip {
        padding: 76px 0;
    }
}

@media (max-width: 575.98px) {
    .utility-bar .container {
        text-align: center;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}