body.page-home {
    --home-primary: #8dc021;
    --home-primary-dark: #0164b1;
    --home-navy: #00316d;
    --home-ink: #07111f;
    --home-text: #111827;
    --home-muted: #596579;
    --home-line: #dfe5ed;
    --home-soft: #f8faf5;
    --home-white: #ffffff;
    --home-green: #2c8f6f;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (min-width: 769px) {
    body.page-home .quick-menu {
        --home-primary: #0164b1;
        --home-ink: #222222;
    }
}

body.page-home .site-header {
    position: fixed;
    inset: 0px 0px auto;
    border-bottom: 1px solid rgba(223, 229, 237, 0.86);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}
body.page-home .site-header__inner {
    min-height: 82px;
}
body.page-home .site-logo {
    display: inline-flex;
    align-items: center;
    min-width: 190px;
}
body.page-home .site-logo img {
    width: 176px;
}
body.page-home .site-nav__list {
    gap: 2px;
}
body.page-home .site-nav__link {
    min-height: 82px;
    padding: 0px 18px;
    color: var(--home-ink);
    font-weight: 800;
}
body.page-home .site-nav__link:hover,
body.page-home .site-nav__item:focus-within .site-nav__link {
    color: var(--home-primary-dark);
}
body.page-home .site-nav__sub {
    top: calc(100% - 6px);
    min-width: 210px;
    padding: 14px;
    border-color: rgba(37, 185, 203, 0.18);
}
body.page-home .site-nav__sub a {
    padding: 11px 14px;
    color: var(--home-muted);
    font-weight: 720;
}
body.page-home .site-nav__sub a:hover {
    background: rgba(37, 185, 203, 0.1);
    color: var(--home-primary-dark);
}
body.page-home .site-header__call {
    min-height: 44px;
    padding: 0px 18px;
    border-radius: 999px;
    background: var(--home-navy);
    color: rgb(255, 255, 255) !important;
}
body.page-home .site-menu-button {
    border: 0px;
    background: transparent;
}
body.page-home .mobile-nav {
    border-left-color: rgba(15, 23, 42, 0.08);
}
body.page-home .main-hero {
    position: relative;
    min-height: 92vh;
    padding-top: 82px;
    overflow: hidden;
    background: var(--home-navy);
}
body.page-home .main-hero__slide {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.018);
    transition:
        opacity 2200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 3000ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    z-index: 0;
}
body.page-home .main-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 1;
}
body.page-home .main-hero__slide.is-leaving {
    opacity: 0;
    transform: scale(1.018);
    transition:
        opacity 2200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}
body.page-home .main-hero__slide::after {
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.85) 0%, rgba(7, 17, 31, 0.55) 45%, rgba(7, 17, 31, 0) 75%);
}
body.page-home .main-hero__slide img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition:
        transform 9400ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 2200ms;
    will-change: transform;
}
body.page-home .main-hero__slide:nth-child(2) img {
    object-position: 70% center;
}
body.page-home .main-hero__slide:nth-child(3) img {
    object-position: 72% center;
}
body.page-home .main-hero__slide.is-active img {
    transform: scale(1.01);
}
body.page-home .main-hero__slide.is-leaving img {
    transform: scale(1.03);
    transition: transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
}
body.page-home .main-hero__content {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 800ms cubic-bezier(0.25, 1, 0.5, 1),
        transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    position: relative;
    z-index: 2;
    padding: 128px 0px 154px;
    color: rgb(255, 255, 255) !important;
}
body.page-home .main-hero .main-hero__eyebrow {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    letter-spacing: 0.08em;
}
body.page-home .main-hero h1,
body.page-home .main-hero h2 {
    max-width: 820px;
    margin-top: var(--space-4);
    font-size: clamp(42px, 5.8vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0px;
    color: rgb(255, 255, 255) !important;
}
body.page-home .main-hero p:not(.eyebrow) {
    margin-inline: 0px auto;
    max-width: 680px;
    margin-top: var(--space-5);
    font-size: 20px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.9) !important;
}
body.page-home .button--primary {
    background: linear-gradient(135deg, #1c3f98 0%, #3065da 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
}
body.page-home .button--primary:hover {
    background: linear-gradient(135deg, #2b55be 0%, #467cf0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 63, 152, 0.24);
}
body.page-home .button--line {
    border-color: var(--home-primary);
    color: var(--home-primary-dark);
}
body.page-home .button--light {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255) !important;
}
body.page-home .main-hero .button-row {
    margin-top: 34px;
}
body.page-home .main-hero .button {
    min-width: 142px;
}
body.page-home .button:focus-visible,
body.page-home .site-nav__link:focus-visible,
body.page-home .quick-menu a:focus-visible,
body.page-home .quick-menu button:focus-visible {
    outline: rgba(37, 185, 203, 0.32) solid 3px;
    outline-offset: 3px;
}
body.page-home .main-hero__controls {
    position: absolute;
    inset: auto auto 92px calc(50% - 576px);
    z-index: 4;
    display: flex;
    flex-direction: row;
    gap: 8px;
    transform: none;
}
body.page-home .main-hero__controls button {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, 0.25) !important;
    background: rgba(15, 23, 42, 0.08) !important;
}
body.page-home .main-hero__controls button.is-active {
    width: 48px;
    background: var(--home-primary);
    border-color: var(--home-primary);
    box-shadow: rgba(37, 185, 203, 0.4) 0px 0px 12px;
}
@media (max-width: 1240px) {
    body.page-home .main-hero__controls {
        left: 24px;
        bottom: 80px;
    }
}
@media (max-width: 768px) {
    body.page-home .main-hero__controls {
        left: 20px;
        bottom: 48px;
    }
}
body.page-home .home-section {
    padding: 112px 0px;
}
body.page-home .home-section--soft {
    background: url("../images/banner/phone_bg.png") center center / cover no-repeat;
}
body.page-home .home-section--cta {
    position: relative;
    padding: 130px 0px;
    overflow: hidden;
    background: rgb(7, 17, 31);
}
body.page-home .cta-bg-wrapper {
    position: absolute;
    inset: 0px;
    z-index: 1;
}
body.page-home .cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.32;
    filter: grayscale(15%) contrast(108%);
}
body.page-home .cta-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(7, 24, 68, 0.94) 0%, rgba(27, 48, 103, 0.82) 50%, rgba(7, 17, 31, 0.94) 100%);
}
body.page-home .cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgb(255, 255, 255) !important;
}
body.page-home .cta-title {
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: 0px;
    margin-bottom: 22px;
    color: var(--home-white) !important;
    font-size: clamp(28px, 4.5vw, 44px) !important;
}
body.page-home .cta-desc {
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(15px, 2vw, 19px) !important;
}
body.page-home .cta-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.page-home .cta-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}
body.page-home .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0px 42px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s,
        color 0.3s;
}
body.page-home .cta-btn--call {
    background: var(--home-primary);
    color: rgb(255, 255, 255) !important;
}
body.page-home .cta-icon {
    margin-right: 10px;
    font-size: 12px;
    letter-spacing: 0.04em;
    opacity: 0.78;
}
body.page-home .cta-phone-number {
    letter-spacing: 0px;
}
body.page-home .cta-btn--inquiry {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--home-white) !important;
}
body.page-home .cta-btn--inquiry:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    body.page-home .home-section--cta {
        padding: 86px 0px;
    }
    body.page-home .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    body.page-home .cta-btn {
        width: 100%;
        min-height: 52px;
        padding: 0px 24px;
        font-size: 16px;
    }
}
body.page-home .home-section--dark {
    background: var(--home-navy);
    color: rgb(255, 255, 255) !important;
}
body.page-home .home-section-head {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 46px;
}
body.page-home .about-section-head,
body.page-home .services-section-head,
body.page-home .process-section-head {
    margin-bottom: 48px;
    max-width: 820px;
}
body.page-home .about-section-head h2,
body.page-home .services-section-head h2,
body.page-home .process-section-head h2 {
    margin-top: var(--space-3);
    color: var(--home-ink);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}
body.page-home .about-lead-text,
body.page-home .services-lead-text,
body.page-home .process-lead-text {
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.78;
    margin: 0px;
}
body.page-home .home-section-head h2,
body.page-home .credential-layout h2,
body.page-home .target-panel h2,
body.page-home .contact-card h2 {
    margin-top: var(--space-3);
    color: var(--home-ink);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0px;
}
body.page-home .home-section-head p:not(.eyebrow),
body.page-home .credential-layout p,
body.page-home .target-panel p,
body.page-home .contact-card p,
body.page-home .contact-action p {
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.85;
}
body.page-home .home-section--dark .eyebrow,
body.page-home .home-section--dark h2,
body.page-home .home-section--dark p {
    color: rgb(255, 255, 255) !important;
}
body.page-home .home-section .eyebrow {
    color: var(--home-primary-dark);
}
body.page-home .home-section--dark .eyebrow {
    color: var(--home-primary);
}
body.page-home .home-about-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: stretch;
}
body.page-home .home-media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--home-navy);
}
body.page-home .home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.page-home .home-media figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 22px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.92);
    color: var(--home-ink);
}
body.page-home .home-media b {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}
body.page-home .home-media span {
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 700;
}
body.page-home .home-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
body.page-home .value-card {
    position: relative;
    min-height: 206px;
    padding: 26px;
    border: 1px solid var(--home-line);
    border-radius: var(--radius-card);
    background: var(--home-white);
    overflow: hidden;
}
body.page-home .value-card::before {
    position: absolute;
    inset: 0px 0px auto;
    height: 3px;
    background: linear-gradient(90deg, var(--home-primary), rgba(27, 48, 103, 0.82));
    content: "";
}
body.page-home .value-card--wide {
    grid-column: 1 / -1;
    min-height: 190px;
    border-color: var(--home-ink);
    background: var(--home-ink);
    color: rgb(255, 255, 255) !important;
}
body.page-home .value-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--home-primary);
    font-weight: 900;
    letter-spacing: 0px;
}
body.page-home .value-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.25;
}
body.page-home .value-card p {
    color: var(--home-muted);
    font-size: 15px;
}
body.page-home .value-card--wide p {
    color: rgba(255, 255, 255, 0.76);
}
body.page-home .home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
body.page-home .service-link-card {
    position: relative;
    border-color: var(--home-line);
}
body.page-home .service-link-card::after {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 28px;
    height: 2px;
    background: var(--home-primary);
    content: "";
    transition: width 0.2s;
}
body.page-home .service-link-card:hover::after {
    width: 46px;
}
body.page-home .service-link-card img {
    aspect-ratio: 16 / 10;
    transition: transform 0.36s;
}
body.page-home .service-link-card:hover img {
    transform: scale(1.035);
}
body.page-home .service-link-card span {
    color: var(--home-ink);
    font-size: 21px;
}
body.page-home .service-link-card p {
    min-height: 94px;
}
.refund-banner-section {
    position: relative;
    padding: 110px 20px;
    color: var(--home-white, #ffffff);
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.88)), url("https://images.pexels.com/photos/4099467/pexels-photo-4099467.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}
.refund-banner-section .refund-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0px auto;
    position: relative;
    z-index: 2;
}
.refund-banner-section .refund-header {
    margin-bottom: 60px;
}
.refund-banner-section .header-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--home-primary, #8dc021);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.refund-banner-section .header-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--home-white, #ffffff);
    line-height: 1.25;
    letter-spacing: -0.03em;
}
.refund-banner-section .refund-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    width: 100%;
}
.refund-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 40px;
    transition: transform 0.4s;
}
.refund-item:hover {
    transform: translateY(-8px);
}
.refund-item .item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--home-primary, #8dc021);
    font-size: 34px;
    transition:
        background-color 0.4s,
        border-color 0.4s,
        color 0.4s;
}
.refund-item:hover .item-icon {
    background-color: var(--home-primary, #8dc021);
    border-color: var(--home-primary, #8dc021);
    color: var(--home-white, #ffffff);
    box-shadow: rgba(37, 185, 203, 0.3) 0px 8px 24px;
}
.refund-item .item-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--home-white, #ffffff);
    letter-spacing: -0.02em;
}
.refund-item .item-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-weight: 400;
    word-break: keep-all;
}
.refund-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1024px) {
    .refund-banner-section {
        padding: 90px 20px;
        background-attachment: scroll;
    }
    .refund-banner-section .header-title {
        font-size: 44px;
    }
    .refund-item {
        padding: 24px 20px;
    }
    .refund-item .item-title {
        font-size: 20px;
    }
    .refund-item .item-desc {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .refund-banner-section {
        padding: 70px 15px;
    }
    .refund-banner-section .refund-header {
        margin-bottom: 40px;
    }
    .refund-banner-section .header-subtitle {
        font-size: 15px;
    }
    .refund-banner-section .header-title {
        font-size: 34px;
    }
    .refund-banner-section .refund-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .refund-item:not(:last-child) {
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 40px;
    }
    .refund-item {
        padding: 10px 0px;
    }
}
body.page-home .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}
body.page-home .process-card {
    position: relative;
    min-height: auto;
    padding: 38px 30px;
    border: 1px solid rgba(27, 48, 103, 0.06);
    border-radius: 16px;
    background: var(--home-white);
    box-shadow: rgba(7, 17, 31, 0.03) 0px 10px 30px;
    transition:
        transform 0.4s,
        box-shadow 0.4s,
        border-color 0.4s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
body.page-home .process-card .card-icon {
    position: absolute;
    top: 32px;
    right: 30px;
    font-size: 38px;
    color: var(--home-primary, #8dc021);
    transform: translateY(-4px) scale(1.08);
    transition:
        color 0.4s,
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}
body.page-home .process-card span {
    display: block;
    margin-bottom: 34px;
    color: rgb(141, 192, 33);
}
body.page-home .target-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--home-ink);
    color: rgb(255, 255, 255) !important;
}
body.page-home .target-panel figure {
    min-height: 560px;
}
body.page-home .target-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.page-home .target-panel > div {
    align-self: center;
    padding: clamp(36px, 6vw, 72px);
}
body.page-home .target-panel h2,
body.page-home .target-panel p {
    color: rgb(255, 255, 255) !important;
}
body.page-home .target-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 34px;
}
body.page-home .target-list span {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}
body.page-home .contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: stretch;
}
body.page-home .contact-card {
    border: 1px solid rgba(37, 185, 203, 0.18);
    padding: 44px;
    border-radius: var(--radius-card);
    background: var(--home-white);
}
body.page-home .contact-card .info-list {
    margin-top: 28px;
}
body.page-home .contact-action {
    display: grid;
    align-content: end;
    min-height: 390px;
    padding: 44px;
    border-radius: var(--radius-card);
    background:
        linear-gradient(rgba(27, 48, 103, 0.22), rgba(7, 17, 31, 0.88)),
        url("../images/home/home-hero-brand-vision-v2.png") center center / cover no-repeat;
    color: rgb(255, 255, 255) !important;
}
body.page-home .contact-action strong {
    display: block;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.28;
}
body.page-home .contact-action p {
    color: rgba(255, 255, 255, 0.78);
}
body.page-home .home-footer {
    padding: 58px 0px 34px;
    background: rgb(7, 17, 31);
    color: rgba(255, 255, 255, 0.76);
}
body.page-home .home-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr;
    gap: 36px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body.page-home .home-footer__logo {
    width: 170px;
    margin-bottom: 18px;
    padding: 8px 10px;
    border-radius: var(--radius-card);
    background: var(--home-white);
}
body.page-home .home-footer h3 {
    margin-bottom: 16px;
    font-size: 16px;
    color: rgb(255, 255, 255) !important;
}
body.page-home .home-footer ul {
    display: grid;
    gap: 8px;
}
body.page-home .home-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
    font-size: 14px;
}
body.page-home .home-gallery-section {
    background: rgb(244, 248, 251);
}
body.page-home .home-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}
body.page-home .gallery-head-info {
    max-width: 680px;
}
body.page-home .gallery-head-info h2 {
    margin-top: var(--space-3);
    color: var(--home-ink);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0px;
    margin-bottom: 12px;
}
body.page-home .gallery-lead-text {
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0px;
}
body.page-home .gallery-head-action {
    flex-shrink: 0;
}
body.page-home .gallery-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0px 30px;
    border-radius: 26px;
    background: var(--home-navy);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.3s,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s;
    box-shadow: rgba(27, 48, 103, 0.16) 0px 4px 14px;
    color: var(--home-white) !important;
}
body.page-home .gallery-action-btn:hover {
    background: var(--home-primary-dark);
    transform: translateY(-2px);
    box-shadow: rgba(21, 147, 163, 0.24) 0px 6px 20px;
}
body.page-home .gallery-action-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}
body.page-home .gallery-action-btn:hover i {
    transform: translateX(4px);
}
body.page-home .home-gallery-ticker-wrap {
    overflow: hidden;
    width: 100%;
    padding: 12px 0px;
    margin: 10px 0px;
}
body.page-home .home-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 24px;
    animation: 32s linear 0s infinite normal none running ticker-slide;
}
body.page-home .home-gallery-grid:hover {
    animation-play-state: paused;
}
body.page-home .home-gallery-card {
    display: flex;
    flex-direction: column;
    width: 320px;
    flex-shrink: 0;
    border: 1px solid rgba(223, 229, 237, 0.72);
    border-radius: 12px;
    background: var(--home-white);
    overflow: hidden;
    box-shadow: rgba(7, 17, 31, 0.03) 0px 8px 30px;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s;
}
body.page-home .home-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(255, 255, 255, 0.05) 0px 16px 40px;
    border-color: rgba(37, 185, 203, 0.24);
}
body.page-home .home-gallery-card figure {
    position: relative;
    aspect-ratio: 4 / 3;
    background: rgb(232, 238, 245);
    overflow: hidden;
}
body.page-home .home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
body.page-home .home-gallery-card:hover img {
    transform: scale(1.05);
}
body.page-home .home-gallery-card figure span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 6px;
    padding: 0px 10px;
    background: rgba(7, 17, 31, 0.82);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.01em;
    backdrop-filter: blur(4px);
}
body.page-home .home-gallery-card > div {
    display: grid;
    gap: 8px;
    padding: 24px;
}
body.page-home .home-gallery-card time {
    color: var(--home-primary-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.02em;
}
body.page-home .home-gallery-card h3 {
    color: var(--home-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.38;
    letter-spacing: -0.02em;
    margin: 4px 0px 2px;
}
body.page-home .home-gallery-card p {
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
}
@media (max-width: 1180px) {
    body.page-home .home-about-grid,
    body.page-home .home-section-head,
    body.page-home .target-panel,
    body.page-home .contact-layout,
    body.page-home .home-footer__grid {
        grid-template-columns: 1fr;
    }
    body.page-home .home-service-grid,
    body.page-home .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.page-home .home-gallery-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    body.page-home .about-section-head,
    body.page-home .services-section-head,
    body.page-home .process-section-head {
        margin-bottom: 36px;
    }
    body.page-home .target-panel figure {
        min-height: 360px;
    }
}
@media (max-width: 768px) {
    body.page-home {
        padding-bottom: 72px;
    }
    body.page-home .site-header {
        border-bottom-color: transparent;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        box-shadow: none;
        transition: background-color 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
    }
    body.page-home .site-header .site-logo img {
        filter: brightness(0) invert(1);
        transition: filter 0.24s ease;
    }
    body.page-home .site-header .site-menu-button {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    body.page-home .site-header .site-menu-button span {
        background: #ffffff;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
    }
    body.page-home .site-header.is-scrolled {
        border-bottom-color: rgba(223, 229, 237, 0.86);
        background: rgba(255, 255, 255, 0.94);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }
    body.page-home .site-header.is-scrolled .site-logo img {
        filter: none;
    }
    body.page-home .site-header.is-scrolled .site-menu-button {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    body.page-home .site-header.is-scrolled .site-menu-button span {
        background: #07111f;
        box-shadow: none;
    }
    body.page-home .site-header__inner {
        min-height: 68px;
    }
    body.page-home .site-logo {
        min-width: 158px;
    }
    body.page-home .site-logo img {
        width: 154px;
    }
    body.page-home .main-hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 0;
    }
    body.page-home .main-hero__slide {
        align-items: flex-start;
    }
    body.page-home .main-hero__slide::after {
        background: linear-gradient(180deg, rgba(7, 17, 31, 0.85) 0%, rgba(7, 17, 31, 0.55) 60%, rgba(7, 17, 31, 0.3) 100%);
    }
    body.page-home .main-hero__slide img,
    body.page-home .main-hero__slide:nth-child(2) img,
    body.page-home .main-hero__slide:nth-child(3) img {
        inset: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }
    body.page-home .main-hero__slide.is-active img,
    body.page-home .main-hero__slide.is-leaving img {
        transform: none;
    }
    body.page-home .main-hero__content {
        opacity: 0;
        transform: translateY(25px);
        transition:
            opacity 800ms cubic-bezier(0.25, 1, 0.5, 1),
            transform 800ms cubic-bezier(0.25, 1, 0.5, 1);
        pointer-events: none;
        padding: clamp(132px, 20vh, 164px) 0 96px;
    }
    body.page-home .main-hero h1,
    body.page-home .main-hero h2 {
        font-size: 28px;
    }
    body.page-home .main-hero p:not(.eyebrow) {
        margin-inline: 0px auto;
        max-width: 34ch;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.6;
    }
    body.page-home .main-hero .button-row {
        gap: 8px;
        margin-top: 22px;
    }
    body.page-home .main-hero .button {
        min-width: auto;
        min-height: 40px;
        padding: 0px 14px;
        font-size: 14px;
    }
    body.page-home .main-hero__controls {
        top: auto;
        right: 18px;
        bottom: 28px;
        transform: none;
    }
    body.page-home .home-section {
        padding: 76px 0px;
    }
    body.page-home .home-section-head {
        gap: 20px;
        margin-bottom: 32px;
    }
    body.page-home .about-section-head,
    body.page-home .services-section-head,
    body.page-home .process-section-head {
        margin-bottom: 28px;
    }
    body.page-home .about-section-head h2,
    body.page-home .services-section-head h2,
    body.page-home .process-section-head h2 {
        font-size: 28px;
        line-height: 1.28;
    }
    body.page-home .about-lead-text,
    body.page-home .services-lead-text,
    body.page-home .process-lead-text {
        font-size: 15px;
        line-height: 1.62;
    }
    body.page-home .home-gallery-head {
        margin-bottom: 32px;
        gap: 16px;
    }
    body.page-home .gallery-head-info h2 {
        font-size: 28px;
        line-height: 1.25;
    }
    body.page-home .gallery-lead-text {
        font-size: 15px;
        line-height: 1.6;
    }
    body.page-home .gallery-head-action {
        width: 100%;
    }
    body.page-home .gallery-action-btn {
        width: 100%;
        justify-content: center;
    }
    body.page-home .home-media {
        min-height: 380px;
    }
    body.page-home .home-value-grid,
    body.page-home .home-service-grid,
    body.page-home .process-grid,
    body.page-home .target-list {
        grid-template-columns: 1fr;
    }
    body.page-home .contact-card,
    body.page-home .contact-action {
        padding: 30px;
    }
    body.page-home .home-footer__bottom {
        display: grid;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-home .main-hero__slide,
    body.page-home .main-hero__slide img {
        transition: none;
    }
}
body.page-home .home-about-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 54px;
    align-items: end;
}
body.page-home .about-block-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 28px;
    color: var(--home-white, #ffffff);
    background: var(--home-navy, #07111f);
    border-radius: 25px 0px;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s;
}
body.page-home .block-card--odd {
    height: 520px;
}
body.page-home .block-card--even {
    height: 585px;
}
body.page-home .block-card-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(7, 17, 31, 0) 30%, rgba(7, 17, 31, 0.88) 100%);
    z-index: 1;
    transition: background 0.4s;
}
body.page-home .about-block-card img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body.page-home .about-block-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(37, 185, 203, 0.15) 0px 20px 48px;
}
body.page-home .about-block-card:hover img {
    transform: scale(1.05);
}
body.page-home .about-block-card:hover .block-card-overlay {
    background: linear-gradient(rgba(7, 17, 31, 0) 15%, rgba(7, 17, 31, 0.94) 100%);
}
body.page-home .about-card-content {
    position: relative;
    z-index: 2;
}
body.page-home .about-card-content .card-eng {
    display: block;
    color: var(--home-primary, #8dc021);
    font-size: 32px;
    font-weight: 800;
    font-family: Roboto, sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    line-height: 1;
    transition: transform 0.4s;
}
body.page-home .about-block-card:hover .card-eng {
    transform: translateY(-2px);
}
body.page-home .about-card-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--home-white, #ffffff);
    margin-bottom: 12px;
    line-height: 1.48;
    letter-spacing: -0.02em;
    word-break: keep-all;
}
body.page-home .about-card-content p {
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0px;
    word-break: keep-all;
    color: rgba(255, 255, 255, 0.72) !important;
}
@media (max-width: 1024px) {
    body.page-home .home-about-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }
    body.page-home .about-block-card {
        padding: 30px 24px;
        border-radius: 36px 8px;
    }
    body.page-home .block-card--odd,
    body.page-home .block-card--even {
        height: 480px;
    }
    body.page-home .about-card-content .card-eng {
        font-size: 28px;
        margin-bottom: 16px;
    }
}
@media (max-width: 768px) {
    body.page-home .home-about-blocks {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }
    body.page-home .about-block-card {
        padding: 28px 20px;
        border-radius: 32px 6px;
    }
    body.page-home .block-card--odd,
    body.page-home .block-card--even {
        height: 380px;
    }
    body.page-home .about-card-content .card-eng {
        font-size: 26px;
        margin-bottom: 12px;
    }
}
body.page-home .process-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(7, 17, 31, 0.06) 0px 16px 40px;
    border-color: rgba(37, 185, 203, 0.22);
}
body.page-home .process-card:hover .card-icon {
    color: var(--home-primary, #8dc021);
    transform: translateY(-4px) scale(1.08);
}
@media (max-width: 1024px) {
    body.page-home .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 576px) {
    body.page-home .process-grid {
        grid-template-columns: 1fr;
    }
}
@keyframes ticker-slide {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-50%);
    }
}
.skin2-theme {
    --theme-color-primary: #0164b1;
    --theme-color-dark: #00508e;
    --theme-color-bg-light: #f7f9fc;
}
.skin2-theme .main-hero__slide.bg1 {
    background-image: url("../images/main_slide/m1.jpg");
    background-size: cover;
    background-position: center center;
}
.skin2-theme .main-hero__slide.bg2 {
    background-image: url("../images/main_slide/m2.jpg");
    background-size: cover;
    background-position: center center;
}
.skin2-theme .main-hero__slide.bg3 {
    background-image: url("../images/main_slide/m3.jpg");
    background-size: cover;
    background-position: center center;
}
@media (max-width: 768px) {
    .skin2-theme .main-hero__slide.bg1 {
        background-image: url("../images/main_slide/m1-mobile.webp");
    }
    .skin2-theme .main-hero__slide.bg2 {
        background-image: url("../images/main_slide/m2-mobile.webp");
    }
    .skin2-theme .main-hero__slide.bg3 {
        background-image: url("../images/main_slide/m3-mobile.webp");
    }
}
.skin2-theme .main-hero__slide::after {
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.85) 0%, rgba(7, 17, 31, 0.55) 45%, rgba(7, 17, 31, 0) 75%);
    content: "";
}
.skin2-theme .main-hero__title span {
    color: #7dd3fc;
    background: linear-gradient(135deg, #93c5fd 0%, #38bdf8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.38));
}
.skin2-theme .main-hero__buttons {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    justify-content: flex-start;
}
.skin2-theme .service-section__head {
    text-align: center;
    margin-bottom: 48px;
}
.skin2-theme .service-section__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--home-ink);
    margin-bottom: 12px;
}
.skin2-theme .service-section__lead {
    font-size: 17px;
    color: var(--home-muted);
}
.skin2-theme .service-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.skin2-theme .home-service-card {
    background: var(--home-white);
    border: 1px solid var(--home-line);
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}
.skin2-theme .home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 28px;
}
.skin2-theme .home-service-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
}
.skin2-theme .home-service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.skin2-theme .home-service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--home-ink);
    margin: 20px 20px 8px;
}
.skin2-theme .home-service-card p {
    font-size: 14.5px;
    color: var(--home-muted);
    margin: auto 20px 24px;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .skin2-theme .service-carousel__track {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .skin2-theme .home-service-card {
        min-height: 380px;
    }
}
@media (max-width: 576px) {
    .skin2-theme .service-carousel__track {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .skin2-theme .home-service-card {
        min-height: auto;
    }
    .skin2-theme .service-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .skin2-theme .service-section__head {
        margin-bottom: 32px;
    }
    .skin2-theme .service-section__head h2 {
        line-height: 1.35;
    }
    .skin2-theme .service-section__lead {
        font-size: 15px;
        line-height: 1.6;
    }
    .skin2-theme .home-service-card h3 {
        font-size: 18px;
        margin: 16px 16px 6px;
    }
    .skin2-theme .home-service-card p {
        font-size: 14px;
        margin: 0 16px 20px;
        line-height: 1.55;
    }
}
.skin2-theme .md-banner-section {
    background: url("../images/banner/phone_bg.png") center center / cover no-repeat;
    padding: 90px 0px 0px;
}
.skin2-theme .md-banner-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.skin2-theme .md-banner-link {
    flex-shrink: 0;
    align-self: flex-end;
}
.skin2-theme .md-banner-link img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    transition: transform 0.3s;
}
.skin2-theme .md-banner-link img:hover {
    transform: scale(1.03);
}
.skin2-theme .md-banner-content {
    flex-grow: 1;
}
.skin2-theme .md-banner-content h2 {
    font-size: 22px;
    color: var(--home-primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
}
.skin2-theme .md-banner-content h3 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--home-ink);
    margin-bottom: 16px;
}
.skin2-theme .md-banner-content h3 span {
    color: #8dc021;
}
.skin2-theme .md-banner-content p {
    font-size: 16.5px;
    color: var(--home-muted);
    line-height: 1.68;
}
@media (max-width: 900px) {
    .skin2-theme .md-banner-section {
        padding: 60px 0px;
    }
    .skin2-theme .md-banner-link {
        align-self: center;
    }
    .skin2-theme .md-banner-container {
        flex-direction: column-reverse;
        gap: 36px;
        text-align: center;
    }
}
.skin2-theme .brand-section {
    border-bottom: 1px solid var(--home-line);
}
.skin2-theme .brand-section__head {
    text-align: center;
    margin-bottom: 48px;
}
.skin2-theme .brand-section__head h2 {
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 800;
    color: var(--home-ink);
    margin-bottom: 12px;
}
.skin2-theme .brand-section__head p {
    font-size: 16.5px;
    color: var(--home-muted);
}
.skin2-theme .brand-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.skin2-theme .brand-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: var(--home-white);
    padding: 16px;
    transition: box-shadow 0.3s;
}
.skin2-theme .brand-list li:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 16px;
}
.skin2-theme .brand-list img {
    max-width: 100%;
    height: auto;
    transition: filter 0.3s;
    filter: none !important;
    image-rendering: crisp-edges !important;
}
.skin2-theme .brand-list li:hover img {
    filter: none;
}
@media (max-width: 1024px) {
    .skin2-theme .brand-list {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .skin2-theme .brand-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .skin2-theme .brand-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.skin2-theme .home-counter {
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 70%),
        url("../../counter_bg.png") no-repeat center right / cover;
    padding: 112px 0px;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: var(--home-ink, #07111f) !important;
}
.skin2-theme .home-counter__eyebrow {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-primary-dark, #0164b1);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-align: left;
    max-width: 600px;
}
.skin2-theme .home-counter__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--home-ink, #07111f) !important;
    text-align: left;
    max-width: 600px;
}
.skin2-theme .home-counter__title span {
    background: linear-gradient(135deg, #1c3f98 0%, #3b74f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.skin2-theme .home-counter__desc {
    font-size: 17px;
    color: var(--home-muted, #596579) !important;
    line-height: 1.7;
    margin-bottom: 56px;
    text-align: left;
    max-width: 600px;
}
.skin2-theme .home-counter__list {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    list-style: none;
    padding: 0px;
    margin: 0px 0px 60px;
    flex-wrap: wrap;
    max-width: 650px;
}
.skin2-theme .home-counter__list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 150px;
}
.skin2-theme .home-counter__number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.skin2-theme .home-counter__number {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1;
    font-family: Pretendard, sans-serif;
    color: var(--home-ink, #07111f) !important;
}
.skin2-theme .home-counter__suffix {
    font-size: 18px;
    font-weight: 700;
    color: var(--home-ink, #07111f);
    margin-left: 4px;
}
.skin2-theme .home-counter__label {
    font-size: 16px;
    color: var(--home-muted, #596579) !important;
    font-weight: 700;
}
.skin2-theme .home-counter__image {
    max-width: 320px;
    margin: 0px auto;
}
.skin2-theme .home-counter__image img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .skin2-theme .home-counter__list {
        gap: 36px;
    }
}
.skin2-theme .gallery-section__head {
    text-align: center;
    margin-bottom: 48px;
}
.skin2-theme .gallery-section__head h2 {
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 800;
    color: var(--home-ink);
    margin-bottom: 12px;
}
.skin2-theme .gallery-section__head p {
    font-size: 16.5px;
    color: var(--home-muted);
}
@media (max-width: 768px) {
    .skin2-theme .home-counter {
        padding: 76px 0px;
        text-align: center;
        background:
            linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
            url("../../counter_bg.png") no-repeat center center / cover;
    }
    .skin2-theme .home-counter__eyebrow,
    .skin2-theme .home-counter__title,
    .skin2-theme .home-counter__desc,
    .skin2-theme .home-counter__list {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .skin2-theme .home-counter__list {
        justify-content: center;
        margin-bottom: 30px;
    }
    .skin2-theme .home-counter__list li {
        align-items: center;
    }
    .skin2-theme .home-counter__number-wrap {
        justify-content: center;
    }
    .skin2-theme .home-counter__desc {
        margin-bottom: 36px;
    }
}
.site-footer {
    background: rgb(24, 28, 36);
    color: rgb(160, 166, 181);
    padding: 60px 0px;
    font-size: 14.5px;
    border-top: 1px solid rgb(35, 41, 54);
}
.site-footer__inner {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 24px;
}
.site-footer__links {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(35, 41, 54);
    padding-bottom: 20px;
}
.site-footer__links a {
    color: rgb(209, 213, 219);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.site-footer__links a:hover {
    color: var(--home-primary, #8dc021);
}
.site-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.site-footer__address {
    flex-grow: 1;
}
.site-footer__address p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.site-footer__company {
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}
.site-footer__address span {
    margin-right: 18px;
    display: inline-block;
}
.site-footer__notice {
    color: rgb(123, 131, 150);
    font-size: 13.5px;
    margin-top: 18px;
}
.site-footer__copyright {
    color: rgb(75, 85, 99);
    font-size: 13px;
    margin-top: 24px;
}
.site-footer__contact {
    text-align: right;
    flex-shrink: 0;
}
.site-footer__contact h3 {
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
    font-weight: 700;
}
.site-footer__phone {
    font-size: 26px;
    font-weight: 900;
    color: var(--home-primary, #8dc021);
    margin-bottom: 12px;
}
.site-footer__email {
    font-size: 14px;
}
.site-footer__email span {
    background: rgb(35, 41, 54);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    margin-right: 6px;
}
@media (max-width: 900px) {
    .site-footer__content {
        flex-direction: column;
        gap: 30px;
    }
    .site-footer__contact {
        text-align: left;
    }
}
body.page-home .main-hero__slide.is-active .main-hero__content {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}
.skin2-theme .md-banner-content h2 {
    color: rgb(224, 242, 254) !important;
}
.skin2-theme .md-banner-content h3 {
    color: rgb(255, 255, 255) !important;
}
.skin2-theme .md-banner-content h3 span {
    color: rgb(141, 192, 33) !important;
}
.skin2-theme .md-banner-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Mobile Typography Hierarchy & Spacing Polish (max-width: 768px) */
@media (max-width: 768px) {
    /* 메인 히어로 타이틀 및 영문 모바일 비율 조율 */
    .skin2-theme .main-hero__eyebrow {
        font-size: 13px !important;
    }
    .skin2-theme .main-hero__title {
        font-size: 38px !important;
        line-height: 1.1 !important;
    }
    .skin2-theme .main-hero__title span {
        font-size: inherit !important;
        display: block !important;
        margin-top: 2px !important;
    }

    /* 실적 카운터 타이틀 및 영문 모바일 비율 조율 */
    .skin2-theme .home-counter__eyebrow {
        font-size: 13px !important;
    }
    .skin2-theme .home-counter__title {
        font-size: 34px !important;
        line-height: 1.3 !important;
    }
    .skin2-theme .home-counter__title span {
        font-size: inherit !important;
        display: inline !important;
    }

    /* 맞춤형 클린 솔루션 배너 타이틀 및 영문 모바일 비율 조율 */
    .skin2-theme .md-banner-content h2 {
        font-size: 13px !important;
    }
    .skin2-theme .md-banner-content h3 {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }
    .skin2-theme .md-banner-content h3 span {
        color: rgb(141, 192, 33) !important;
        font-size: inherit !important;
        display: inline !important;
    }
}

/* Mobile image reveal: upper content + lower image with vertical fade */
@media (max-width: 768px) {
    body.page-home .skin2-theme .home-counter {
        position: relative;
        min-height: 980px;
        padding: 72px 0 clamp(300px, 62vw, 460px);
        isolation: isolate;
        background: #ffffff;
    }

    body.page-home .skin2-theme .home-counter::before {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        height: clamp(220px, 48vw, 390px);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        content: "";
        pointer-events: none;
    }

    body.page-home .skin2-theme .home-counter::before {
        background-image: url("../../counter_bg.png");
    }

    body.page-home .skin2-theme .home-counter::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        height: clamp(300px, 72vw, 550px);
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0.96) 20%,
            rgba(255, 255, 255, 0.72) 42%,
            rgba(255, 255, 255, 0) 72%
        );
        content: "";
        pointer-events: none;
    }

    body.page-home .skin2-theme .home-counter__info {
        position: relative;
        z-index: 2;
    }
}
