:root {
    --nav-height: 88px;
    --content-width: 1280px;
    --font-pretendard: 'Pretendard', sans-serif;
    --font-section-title: var(--font-pretendard);
    --font-card-title: var(--font-pretendard);
    --font-section-description: var(--font-pretendard);
    --card-title-size: clamp(18px, 2vw, 22px);
    --card-title-weight: 700;
    --section-title-size: 32px;
    --section-title-weight: 800;
    --section-description-size: clamp(15px, 1.2vw, 17px);
    --section-description-weight: 400;
    --mobile-card-title-size: 18px;
    --mobile-card-title-weight: 700;
    --mobile-section-title-size: 26px;
    --mobile-section-title-weight: 800;
    --intro-title-size: clamp(30px, 3.2vw, 34px);
    --intro-title-weight: 700;
    --mobile-intro-title-size: clamp(22px, 6.2vw, 26px);
    --mobile-intro-title-weight: 700;
    --mobile-section-description-size: 15px;
    --mobile-section-description-weight: 400;
    --section-space-y: 120px;
    --section-space-y-mobile: 60px;
    --page-bg: #ffffff;
    --surface-soft: #f8f9fa;
    --section-bg-white: #ffffff;
    --section-bg-soft: #f7f9fc;
    --section-bg-soft-2: #f9fbfd;
    --section-bg-alt: #f4f7fb;
    --accent-main: #D2243F;
    --accent-strong: #ff6a1a;
    --text-main: #0f2137;
    --text-dark: #0f2137;
    --line-soft: rgba(15, 33, 55, 0.12);
    --line-accent: rgba(227, 82, 5, 0.22);
    --panel-soft: rgba(255, 255, 255, 0.88);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body,
p,
div {
    word-break: keep-all;
    overflow-wrap: break-word;
}

body {
    background: var(--page-bg);
    color: var(--text-dark);
    font-family: var(--font-pretendard);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    background:
    radial-gradient(circle at top left, rgba(227, 82, 5, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.section {
    padding-top: var(--section-space-y);
    padding-bottom: var(--section-space-y);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    height: var(--nav-height);
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text-dark);
}

.nav-logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-accent);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-strong) 100%);
    color: #ffffff;
    font-family: var(--font-section-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.nav-logo-text {
    font-family: var(--font-section-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.4vw, 48px);
    min-width: 0;
}

.nav-menu a {
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent-main);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.nav-menu a:hover {
    color: var(--accent-main);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    color: var(--text-dark);
}

.nav-locale {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-card-title);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.card-title {
    margin: 0 0 10px;
    font-family: var(--font-card-title);
    font-size: var(--card-title-size);
    font-weight: var(--card-title-weight);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--tone-strong, var(--text-dark));
}

.section-title {
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--accent-main);
}

.section-description {
    font-family: var(--font-section-description);
    font-size: var(--section-description-size);
    font-weight: var(--section-description-weight);
    line-height: 1.85;
    letter-spacing: -0.01em;
    color: rgba(15, 33, 55, 0.8);
}

.nav-locale a {
    opacity: 0.5;
}

.nav-locale .is-active {
    opacity: 1;
    color: var(--accent-main);
}

.nav-hamburger {
    width: 42px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 16px;
    height: 1.5px;
    background: currentColor;
    display: block;
}

.mobile-nav-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(8, 16, 26, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
    z-index: 49;
}

.mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: min(80vw, 460px);
    height: calc(100vh - var(--nav-height));
    background: #ffffff;
    border-left: 1px solid rgba(15, 33, 55, 0.12);
    box-shadow: -22px 0 44px rgba(7, 15, 24, 0.18);
    padding: 24px 20px 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.mobile-nav-head strong {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.mobile-nav-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(15, 33, 55, 0.16);
    background: #ffffff;
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav-menu {
    display: grid;
    gap: 6px;
}

.mobile-nav-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(15, 33, 55, 0.08);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

body.nav-mobile-open {
    overflow: hidden;
}

body.nav-mobile-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.nav-mobile-open .mobile-nav-drawer {
    transform: translateX(0);
}

.hero {
    min-height: calc(100vh - var(--nav-height));
    position: relative;
    display: flex;
    align-items: stretch;
    background:
    linear-gradient(90deg, rgba(9, 18, 28, 0.88) 0%, rgba(9, 18, 28, 0.62) 34%, rgba(9, 18, 28, 0.26) 62%, rgba(9, 18, 28, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 18, 28, 0.14) 0%, rgba(9, 18, 28, 0.18) 54%, rgba(9, 18, 28, 0.52) 100%),
        url('/images/main_hero_1.jpg') center center / cover no-repeat;
}

.hero-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--section-space-y) 0;
}

.hero-copy {
    width: 100%;
    max-width: 760px;
    color: #ffffff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 32px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-strong);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.16;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-copy p {
    margin-bottom: 20px;
    max-width: 640px;
    font-family: var(--font-section-description);
    font-size: 15px;
    font-weight: var(--section-description-weight);
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.86);

}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-strong) 100%);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(227, 82, 5, 0.32);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(227, 82, 5, 0.4);
}

.hero-cta .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    right: 0;
    bottom: 38px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-scroll-mouse {
    width: 30px;
    height: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 9px;
    animation: heroMouseFloat 1.7s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
}

.hero-scroll-wheel {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-strong);
    animation: heroMouseWheel 1.7s ease-in-out infinite;
}

.hero-scroll-text {
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@keyframes heroMouseFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroMouseWheel {
    0% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(7px);
    }
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: clamp(14px, 1.7vw, 28px);
    }

    .nav-menu a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    p,
    div {
        word-break: normal;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: keep-all;
    }
}

@media (max-width: 767px) {
    .section {
        padding-top: var(--section-space-y-mobile);
        padding-bottom: var(--section-space-y-mobile);
    }

    .site-nav .nav-inner {
        width: 100%;
        max-width: none;
        padding-left: 14px;
        padding-right: 10px;
    }

    .site-nav .nav-actions {
        margin-right: -30px;
    }

    .nav-logo img {
        display: block;
        height: 34px;
        width: auto;
    }

    .hero-panel {
        width: calc(100% - 28px);
        max-width: var(--content-width);
    }

    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-logo-text {
        font-size: 13px;
        letter-spacing: 0.12em;
    }

    .nav-locale {
        font-size: 14px;
        font-weight: 700;
    }

.hero-copy h1 {
    margin: 0 0 22px;
    font-family: var(--font-section-title);
    font-size: 26px;
    font-weight: var(--section-title-weight);
    line-height: 1.5;
    letter-spacing: -0.03em;
    color: #ffffff;
}

    .card-title {
        font-size: var(--mobile-card-title-size);
        font-weight: var(--mobile-card-title-weight);
    }

    .section-title {
        font-size: var(--mobile-section-title-size);
        font-weight: var(--mobile-section-title-weight);
    }

    .section-description,
    .hero-copy p {
        font-size: 15px;
        font-weight: var(--mobile-section-description-weight);
    }

    .hero-panel {
        min-height: calc(100vh - var(--nav-height));
        padding: var(--section-space-y-mobile) 0 88px;
    }

    .hero-cta {
        width: auto;
        justify-content: center;
    }

    .hero-cta .btn {
        flex: 0 0 auto;
        height: 48px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-scroll {
        right: 2px;
        bottom: 24px;
    }

    .hero-scroll-text {
        font-size: 10px;
    }

    .nav-menu {
        display: none;
    }

    .hero-panel {
        padding-bottom: 28px;
    }

    .hero-copy {
        padding: 22px 20px;
    }
}

/* Intro Section */
.intro {
    padding: var(--section-space-y) 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line-soft);
}

.intro-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 460px) 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 8px 18px;
    border: 1px solid var(--line-accent);
    border-radius: 999px;
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-main);
    background: rgba(210, 36, 63, 0.06);
}

.intro-tag-mobile-break {
    display: none;
}

.mobile-title-break {
    display: none;
}

.intro-head h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: var(--intro-title-size);
    font-weight: var(--intro-title-weight);
    line-height: 1.46;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.intro-body {
    padding-top: clamp(4px, 1.4vw, 16px);
    border-left: 1px solid var(--line-soft);
    padding-left: clamp(24px, 3vw, 48px);
}

.intro-body p {
    margin: 0 0 20px;
    font-family: var(--font-section-description);
    font-size: var(--section-description-size);
    font-weight: var(--section-description-weight);
    line-height: 1.85;
    letter-spacing: -0.01em;
    color: rgba(15, 33, 55, 0.8);
}

.intro-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .intro-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .intro-body {
        border-left: none;
        padding-left: 0;
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .intro {
        padding: var(--section-space-y-mobile) 0;
    }

    .intro-panel {
        width: calc(100% - 28px);
        text-align: center;
    }

    .intro-head,
    .intro-body {
        text-align: center;
    }

    .intro-tag {
        display: block;
        font-size: 13px;
        padding: 0;
        margin-bottom: 18px;
        border: 0;
        border-radius: 0;
        background: transparent;
        letter-spacing: 0.08em;
        line-height: 1.6;
    }

    .intro-tag-mobile-break {
        display: block;
    }

    .mobile-title-break {
        display: block;
    }

    .intro-head h2 {
        font-size: var(--mobile-intro-title-size);
        font-weight: var(--mobile-intro-title-weight);
    }

    .intro-body p {
        font-size: var(--mobile-section-description-size);
        font-weight: var(--mobile-section-description-weight);
        margin-bottom: 16px;
    }
}

/* Why Ardent */
.why-ardent {
    padding: var(--section-space-y) 0;
}

.why-ardent-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.section-kicker {
    margin: 0;
    font-family: var(--font-card-title);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.company-hero {
    height: 400px;
    background-image: url('/images/company_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
}

.company-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 12px;
}

.company-hero p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.service-hero {
    height: 400px;
    background: url('/images/service_bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
}

.service-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 12px;
}

.service-hero p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.greeting-section {
    width: 100%;
    padding: 80px 0;
    background: var(--section-bg-white);
}

.company-intro-pattern {
    background: var(--section-bg-alt);
}

.greeting-container {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    gap: 40px;
    align-items: center;
}

.greeting-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.greeting-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.greeting-visual img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: none;
}

.greeting-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-main);
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.greeting-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.greeting-text strong {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-top: 20px;
    margin-bottom: 12px;
}

.greeting-text strong:first-child {
    margin-top: 0;
}

.greeting-signature {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    font-weight: 600;
}

.business-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--section-bg-soft) 0%, var(--section-bg-white) 100%);
}

.business-top-label {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto 18px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.business-section-title {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto 36px;
    text-align: center;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.business-cards {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.business-card {
    background: white;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 24px 18px;
    box-shadow: 0 2px 8px rgba(15, 33, 55, 0.06);
    transition: box-shadow 0.24s ease, transform 0.24s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 260px;
    text-align: center;
}

.business-card:hover {
    border-color: var(--accent-main);
    box-shadow: 0 8px 20px rgba(15, 33, 55, 0.12);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 30px;
    color: var(--accent-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(210, 36, 63, 0.08);
    border-radius: 8px;
    margin: 0 auto;
}

.card-header {
    margin: 0;
    padding: 0;
    font-family: var(--font-card-title);
    font-size: 18px;
    font-weight: var(--card-title-weight);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.card-header span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
    margin-bottom: 6px;
}

.card-header small {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-main);
    margin-top: 20px;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0;
    padding: 0;
    font-family: var(--font-section-description);
    font-size: 14px;
    font-weight: var(--section-description-weight);
    line-height: 1.72;
    color: rgba(15, 33, 55, 0.8);
    text-align: center;
}

.vs-section {
    width: 100%;
    padding: 80px 0;
    background: var(--section-bg-soft-2);
}

.vs-inner {
    position: relative;
    width: calc(100% - 72px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.vs-intro {
    margin: 0 auto 36px;
    max-width: 900px;
    text-align: center;
}

.vs-kicker {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.vs-title {
    margin: 0 0 10px;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.vs-subtitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
}

.vs-compare-wrap {
    position: absolute;
    left: 50%;
    top: 63%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.vs-compare-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-main) 0%, #7d1d30 100%);
    color: white;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.06em;
    box-shadow: 0 12px 24px rgba(210, 36, 63, 0.18);
}

.vs-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 33, 55, 0.06);
}

.vs-column {
    padding: 0;
}

.vs-column-header {
    padding: 28px 40px 18px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(15, 33, 55, 0.02);
}

.vs-column-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
}

.vs-table th,
.vs-table td {
    padding: 18px 28px;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: middle;
    text-align: left;
}

.vs-table th {
    width: 30%;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(15, 33, 55, 0.02);
}

.vs-table td {
    width: 70%;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(15, 33, 55, 0.82);
}

.vs-table tr:last-child th,
.vs-table tr:last-child td {
    border-bottom: none;
}

.vs-column.left .vs-column-header {
    background: rgba(15, 33, 55, 0.02);
}

.vs-column.right .vs-column-header {
    background: rgba(210, 36, 63, 0.04);
}

.vs-column.right .vs-column-header h3 {
    color: var(--accent-main);
}

.contact-section {
    width: 100%;
    padding: 80px 0 100px;
    background: #ffffff;
}

.contact-inner {
    background: #ffffff;
}

.contact-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.contact-header {
    margin: 0 auto 32px;
    text-align: center;
}

.contact-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.contact-header h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.map-card,
.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(15, 33, 55, 0.06);
    overflow: hidden;
}

.map-card {
    min-height: 360px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.contact-info-card {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-number {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-main) 0%, #7d1d30 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(210, 36, 63, 0.2);
}

.contact-copy {
    flex: 1;
}

.contact-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.contact-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(15, 33, 55, 0.82);
}

@media (max-width: 1024px) {
    .business-cards {
        gap: 20px;
    }

    .business-card {
        padding: 24px 20px;
    }

    .service-overview {
        padding: 60px 0 32px;
    }

    .service-brief-inner {
        width: calc(100% - 32px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-brief-copy {
        order: 1;
        gap: 12px;
    }

    .service-brief-media {
        order: 2;
        min-height: 260px;
        border-radius: 18px;
    }

    .service-brief-media img {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .company-hero {
        height: 300px;
    }

    .service-overview {
        padding: 48px 0 24px;
        background: #ffffff;
    }

    .service-brief-inner {
        width: calc(100% - 32px);
        gap: 22px;
    }

    .service-brief-copy {
        order: 1;
        gap: 12px;
    }

    .service-brief-media {
        order: 2;
        min-height: 260px;
        border-radius: 18px;
    }

    .service-brief-kicker {
        padding: 7px 10px;
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    .service-brief-copy h2 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .service-brief-copy p {
        font-size: 15px;
        line-height: 1.8;
    }

    .greeting-section {
        padding: 40px 0;
    }

    @media (max-width: 480px) {
        .service-brief-inner {
            width: calc(100% - 24px);
            gap: 18px;
        }

        .service-brief-copy {
            gap: 12px;
        }

        .service-brief-kicker {
            font-size: 9px;
            letter-spacing: 0.1em;
        }

        .service-brief-copy h2 {
            font-size: 24px;
        }

        .service-brief-copy p {
            font-size: 15px;
            line-height: 1.7;
        }

        .service-brief-media {
            min-height: 220px;
        }

        .service-brief-media img {
            min-height: 220px;
        }
    }

    .greeting-container {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .greeting-content {
        gap: 18px;
    }

    .greeting-title {
        font-size: 22px;
    }

    .greeting-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .greeting-signature {
        margin-top: 18px;
        padding-top: 18px;
    }

    .greeting-visual {
        width: 100%;
    }

    .greeting-visual img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 14px;
    }

    .business-section {
        padding: 40px 0;
    }

    .business-section-title {
        width: calc(100% - 32px);
        font-size: 22px;
        margin-bottom: 40px;
    }

    .business-cards {
        width: calc(100% - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }

    .vs-section {
        padding: 40px 0;
    }

    .vs-inner {
        width: calc(100% - 32px);
    }

    .vs-compare-wrap {
        display: none;
    }

    .vs-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .vs-column-header {
        padding: 18px 14px 14px;
    }

    .vs-column-header h3 {
        font-size: 15px;
    }

    .vs-table th,
    .vs-table td {
        padding: 12px 10px;
    }

    .vs-table th {
        width: 32%;
        font-size: 14px;
    }

    .vs-table td {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-section {
        padding: 40px 0 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-item {
        gap: 12px;
        padding: 14px 0;
    }

    .contact-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .contact-copy p {
        font-size: 14px;
    }

    .vs-title {
        font-size: 22px;
    }

    .vs-subtitle {
        font-size: 16px;
    }
}

.company-hero {
    background: url(/images/company_bg.jpg) center/cover;
    /* background-attachment: fixed; */
}

.service-overview {
    width: 100%;
    padding: 80px 0 80px;
    background: #ffffff;
}

.service-brief-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 42px;
    align-items: center;
}

.service-brief-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-brief-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px 8px 0px;
    /* border-radius: 999px; */
    /* background: rgba(210, 36, 63, 0.08); */
    /* border: 1px solid rgba(210, 36, 63, 0.14); */
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.service-brief-kicker i {
    font-size: 12px;
}

.service-brief-copy h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: clamp(30px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.service-brief-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.service-brief-media {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background: #eef2f6;
    box-shadow: 0 18px 38px rgba(15, 33, 55, 0.08);
}

.service-brief-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .service-overview .service-brief-inner {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .service-overview .service-brief-copy {
        order: 1 !important;
    }

    .service-overview .service-brief-media {
        order: 2 !important;
        min-height: 260px;
    }

    .service-overview .service-brief-media img {
        min-height: 260px;
    }
}

.service-intro {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
}

.service-intro h2 {
    width: min(100%, 980px);
    margin: 0 auto;
    font-family: var(--font-section-title);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.service-detail-section {
    width: 100%;
    padding: 72px 0 80px;
    background: #ffffff;
}

.service-detail-section.market-expansion,
.service-detail-section.distribution-logistics {
    background: #f3f4f6;
}

.service-process-section {
    width: 100%;
    padding: var(--section-space-y) 0;
    background: #ffffff;
}

.service-process-heading {
    max-width: 860px;
    margin: 0 0 36px;
    text-align: left;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    padding: 60px 24px 24px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    box-shadow: 0 10px 24px rgba(15, 33, 55, 0.05);
}

.service-process-card::after {
    content: '\f061';
    position: absolute;
    top: 50%;
    right: -26px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 33, 55, 0.12);
    box-shadow: 0 8px 20px rgba(15, 33, 55, 0.08);
    color: var(--accent-main);
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
    pointer-events: none;
}

.service-process-card:nth-child(4n)::after,
.service-process-card:last-child::after {
    display: none;
}

.service-process-number {
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-main);
}

.service-process-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    color: var(--text-dark);
}

.service-process-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.service-detail-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.service-detail-header {
    display: none;
}

.service-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 48px;
    padding: 28px 30px;
    background: transparent;
    border: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
}

.service-detail-body.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.service-detail-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.service-copy-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-copy-kicker {
    margin: 0;
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.service-copy-title {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.network-hero {
    height: 400px;
    background: linear-gradient(90deg, rgba(9, 18, 28, 0.82) 0%, rgba(9, 18, 28, 0.62) 42%, rgba(9, 18, 28, 0.26) 72%, rgba(9, 18, 28, 0.12) 100%),
        url('/images/network_bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 0;
    margin: 0;
}

.network-hero-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.network-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
}

.network-hero p {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.network-overview {
    width: 100%;
    padding: var(--section-space-y) 0;
    background: #ffffff;
}

.network-brief-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.network-brief-media {
    order: 1;
}

.network-brief-copy {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.network-brief-copy h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: clamp(30px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.network-brief-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.network-brief-media {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background: #eef2f6;
    box-shadow: 0 18px 38px rgba(15, 33, 55, 0.08);
}

.network-brief-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.network-insight {
    width: 100%;
    padding: var(--section-space-y) 0;
    background: #f3f4f6;
}

.network-detail-section {
    width: 100%;
    padding: var(--section-space-y) 0;
}

.network-detail-section.is-soft {
    background: #f3f4f6;
}

.network-detail-section.is-white {
    background: #ffffff;
}

.network-detail-section.is-coverage-map {
    background: #ffffff;
}

.network-detail-section.is-partners {
    background: #f3f4f6;
}

.network-detail-section.is-live-radar {
    background: #ffffff;
}

.network-detail-section.is-buyer-verification {
    background: #f3f4f6;
}

.network-copyline {
    width: 100%;
    padding: 68px 0;
    background: #ffffff;
}

.network-copyline-inner {
    width: calc(100% - 48px);
    max-width: 1040px;
    margin: 0 auto;
    padding: 32px 32px 36px;
    border: 0;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.network-copyline-quote {
    margin: 0 0 10px;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.network-copyline-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.network-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #D2243F 0%, #ff6a1a 100%);
    color: #ffffff;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.network-cta-btn:hover {
    transform: translateY(-2px);
}

.network-page .network-overview *,
.network-page .network-insight *,
.network-page .network-detail-section *,
.network-page .network-copyline * {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.network-page .service-tag {
    background: transparent;
}

.partner-hero {
    background: linear-gradient(90deg, rgba(9, 18, 28, 0.82) 0%, rgba(9, 18, 28, 0.62) 42%, rgba(9, 18, 28, 0.26) 72%, rgba(9, 18, 28, 0.12) 100%),
        url('/images/partner_bg.jpg') center center / cover no-repeat;
}

.customer-hero {
    background:
        linear-gradient(90deg, rgba(9, 18, 28, 0.78) 0%, rgba(9, 18, 28, 0.58) 40%, rgba(9, 18, 28, 0.22) 74%, rgba(9, 18, 28, 0.08) 100%),
        url('/images/customer_bg.jpg') center center / cover no-repeat,
        url('/images/service_bg.jpg') center center / cover no-repeat;
}

.customer-overview .network-brief-inner {
    grid-template-columns: 1fr;
}

.customer-overview .network-brief-media {
    display: none;
}

.customer-overview .network-brief-copy {
    max-width: 900px;
    margin: 0 auto;
}

.customer-info-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100%;
    padding: 34px 28px 24px;
    border: 1px solid rgba(15, 33, 55, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    text-align: center;
}

.customer-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 10px;
}

.customer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d2243f 0%, #b91d36 100%);
    color: #ffffff;
    font-size: 28px;
    margin-top: 20px;
    box-shadow: 0 12px 24px rgba(210, 36, 63, 0.2);
    margin-bottom: 0px;
}

.customer-icon-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-main);
}

.customer-info-card .network-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    gap: 10px;
    text-align: center;
}

.customer-info-card .network-card-body h3 {
    margin: 0;
    font-size: clamp(20px, 2vw, 22px);
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    text-align: center;
}

.customer-info-card .network-card-body p {
    margin: 0;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(15, 33, 55, 0.82);
    text-align: center;
}

.partner-overview .network-brief-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.partner-overview .network-brief-copy {
    order: 1;
}

.partner-overview .network-brief-media {
    order: 2;
}

.partner-insight .network-info-card {
    min-height: 100%;
}

.partner-card-image {
    height: 220px;
}

.partner-insight .network-card-body {
    min-height: 100%;
    justify-content: flex-start;
}

.partner-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-featured-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.partner-featured-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.partner-featured-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 28px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
}

.partner-featured-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.partner-featured-copy p:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.partner-logo-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.partner-logo-badge img {
    display: block;
    width: 100%;
    max-width: 140px;
    height: auto;
}

.service-scope-grid.partner-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.partner-featured-grid .service-scope-card {
    background: #ffffff;
}

.partner-featured-item-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-dark);
}

.partner-section-heading {
    max-width: 860px;
    margin: 0 auto 36px;
}

.partner-featured-heading {
    text-align: center;
}

.partner-ecosystem-section .section-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.partner-structure-grid,
.partner-ecosystem-grid,
.partner-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.partner-structure-card,
.partner-ecosystem-card,
.partner-value-card {
    padding: 28px 24px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 33, 55, 0.05);
}

.partner-structure-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-main);
}

.partner-structure-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.partner-structure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(210, 36, 63, 0.08);
    color: var(--accent-main);
    font-size: 20px;
    flex: 0 0 auto;
}

.partner-structure-card h3,
.partner-value-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--text-dark);
}

.partner-structure-card p,
.partner-ecosystem-card p,
.partner-value-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

.partner-ecosystem-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.partner-ecosystem-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.partner-ecosystem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(210, 36, 63, 0.08);
    color: var(--accent-main);
    font-size: 22px;
    flex: 0 0 auto;
}

.partner-ecosystem-icon i,
.partner-structure-icon i {
    display: block;
    line-height: 1;
}

.partner-ecosystem-head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    color: var(--text-dark);
}

.partner-value-card {
    position: relative;
    padding-top: 74px;
}

.partner-value-number {
    position: absolute;
    top: 22px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-main) 0%, #7d1d30 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.network-insight-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.network-heading {
    margin-bottom: 32px;
    text-align: center;
}

.mobile-break {
    display: none;
}

.network-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.network-info-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(15, 33, 55, 0.06);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.network-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 36, 63, 0.18);
    box-shadow: 0 18px 30px rgba(15, 33, 55, 0.12);
}

.network-card-image {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: #eef2f6;
}

.network-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
}

.network-card-body h3 {
    margin: 0;
    font-family: var(--font-card-title);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.network-card-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(15, 33, 55, 0.8);
}

@media (max-width: 1024px) {
    .network-brief-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partner-overview .network-brief-copy {
        order: 1;
    }

    .partner-overview .network-brief-media {
        order: 2;
    }

    .network-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .partner-page .network-overview .network-brief-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .partner-page .network-overview .network-brief-copy {
        order: 1 !important;
    }

    .partner-page .network-overview .network-brief-media {
        order: 2 !important;
        min-height: 220px !important;
    }

    .partner-page .network-overview .network-brief-media img {
        min-height: 220px !important;
    }

    .network-hero {
        height: 300px;
    }

    .network-hero-inner,
    .network-brief-inner,
    .network-insight-inner {
        width: calc(100% - 32px);
    }

    .network-overview {
        padding: var(--section-space-y-mobile) 0;
    }

    .network-brief-media {
        min-height: 260px;
    }

    .network-brief-media img {
        min-height: 260px;
    }

    .partner-insight .network-insight-inner {
        width: calc(100% - 32px);
    }

    .partner-insight .network-heading {
        margin-bottom: 22px;
        text-align: left;
    }

    .partner-page .partner-insight .network-card-grid,
    .partner-page .partner-insight .network-card-grid.partner-card-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .partner-page .partner-insight .network-info-card {
        min-height: 0;
        overflow: hidden;
        display: flex;
        width: 100%;
    }

    .partner-page .partner-insight .partner-card-image {
        height: 180px;
    }

    .partner-page .partner-insight .network-card-body {
        padding: 16px 16px 18px;
    }

    .partner-page .partner-insight .network-card-body h3 {
        font-size: 18px;
    }

    .partner-page .partner-insight .network-card-body p {
        font-size: 13px;
        line-height: 1.7;
    }

    .network-insight {
        padding: var(--section-space-y-mobile) 0;
    }

    .network-detail-section {
        padding: var(--section-space-y-mobile) 0;
    }

    .mobile-break {
        display: block;
    }

    .network-detail-section.is-partners .service-detail-body,
    .network-detail-section.is-partners .service-detail-body.reverse {
        grid-template-columns: 1fr;
    }

    .network-detail-section.is-partners .service-detail-copy {
        order: 1;
    }

    .network-detail-section.is-partners .service-scope-grid {
        order: 2;
    }

    .network-copyline {
        padding: 36px 0;
    }

    .network-copyline-inner {
        width: calc(100% - 32px);
        padding: 24px 16px 28px;
    }

    .network-copyline-quote {
        margin: 0 0 8px;
        font-size: 22px;
        line-height: 1.4;
    }

    .network-copyline-desc {
        margin: 0 0 18px;
        font-size: 14px;
    }

    .network-cta-btn {
        height: 44px;
        padding: 0 24px;
        font-size: 14px;
    }

    .network-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .network-info-card {
        min-height: 130px;
        padding: 18px 16px;
    }

    .network-info-card p {
        font-size: 14px;
    }

    .partner-featured-card {
        gap: 22px;
    }

    .partner-featured-head {
        justify-content: center;
    }

    .partner-logo-badge {
        width: 100%;
        justify-content: center;
    }

    .partner-logo-badge img {
        max-width: 110px;
    }

    .partner-value-grid,
    .partner-card-grid {
        grid-template-columns: 1fr;
    }

    .service-scope-grid.partner-featured-grid {
        grid-template-columns: 1fr;
    }

    .partner-structure-grid,
    .partner-ecosystem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-structure-card,
    .partner-ecosystem-card,
    .partner-value-card {
        padding: 22px 18px;
    }

    .partner-structure-card h3,
    .partner-value-card h3 {
        font-size: 20px;
    }

    .partner-value-card {
        padding-top: 64px;
    }

    .partner-value-number {
        top: 18px;
        left: 18px;
    }

    .partner-ecosystem-head {
        gap: 14px;
    }

    .partner-structure-head {
        gap: 14px;
    }

    .partner-ecosystem-head h3 {
        font-size: 20px;
    }
}

.service-subtitle {
    margin: 0;
    font-size: clamp(18px, 1.6vw, 20px);
    line-height: 1.7;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--accent-main);
}

.service-description {
    margin: 0;
    font-size: 15px;
    line-height: 2.5;
    color: rgba(15, 33, 55, 0.82);
    word-break: break-all;
    overflow-wrap: anywhere;
}

.service-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(210, 36, 63, 0.3);
    background: rgba(210, 36, 63, 0.08);
    color: #8f1d34;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.service-page .service-tag {
    background: #ffffff;
}

.service-page .network-copyline {
    background: #f3f4f6;
}

.service-page .network-copyline-inner {
    background: #f3f4f6;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.service-scope-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 172px;
    padding: 18px 18px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.scope-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-main) 0%, #7d1d30 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.service-scope-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

@media (max-width: 768px) {
    .service-hero {
        height: 300px;
    }

    .service-overview {
        padding: 48px 0 10px;
    }

    .service-intro {
        width: calc(100% - 32px);
    }

    .service-detail-inner {
        width: calc(100% - 32px);
    }

    .service-process-section {
        padding: var(--section-space-y-mobile) 0;
    }

    .service-process-heading {
        text-align: left;
    }

    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-process-card::after {
        right: -26px;
    }

    .service-process-card:nth-child(4n)::after {
        display: inline-flex;
    }

    .service-process-card:nth-child(2n)::after,
    .service-process-card:last-child::after {
        display: none;
    }

    .service-process-card {
        min-height: 0;
        padding: 54px 18px 20px;
    }

    .service-process-card h3 {
        font-size: 20px;
    }

    .service-process-number {
        top: 18px;
        left: 18px;
    }

    .service-detail-header {
        margin-bottom: 18px;
    }

    .service-detail-header h2 {
        font-size: 26px;
    }

    .service-detail-body,
    .service-detail-body.reverse {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }

    .service-detail-section.local-brand-growth .service-detail-body,
    .service-detail-section.local-brand-growth .service-detail-body.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-section.local-brand-growth .service-detail-copy {
        order: 1;
    }

    .service-detail-section.local-brand-growth .service-scope-grid {
        order: 2;
    }

    .service-scope-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-scope-card {
        min-height: 140px;
        padding: 16px 14px;
    }

    .service-scope-card p {
        font-size: 12px;
    }

    .service-subtitle {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-tag-list {
        gap: 8px;
        margin-top: 8px;
    }

    .service-tag {
        height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }

}

.why-ardent .why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    display: flex;
    flex-direction: column;
    border: none;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 33, 55, 0.06);
    transition: box-shadow 0.24s ease;
}

.why-card:hover {
    box-shadow: 0 8px 20px rgba(15, 33, 55, 0.12);
}

.why-card-image {
    width: 100%;
    height: 220px;
    background: var(--surface-soft);
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
}

.why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-card h3 {
    margin: 18px 16px 10px;
    font-family: var(--font-card-title);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.why-card h3 i {
    margin-right: 8px;
    color: var(--accent-main);
    font-size: 0.9em;
}

.why-card p {
    margin: 0 16px 18px;
    font-family: var(--font-section-description);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
    color: rgba(15, 33, 55, 0.8);
}

/* Real Market Intelligence */
.real-market {
    padding: var(--section-space-y) 0;
    background: #ffffff;
    border-top: 1px solid var(--line-soft);
}

.real-market-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(26px, 4vw, 56px);
    align-items: center;
}

/* .real-market-heading {
    margin-bottom: 20px;
}

.real-market-copy p {
    margin: 0 0 16px;
} */

.real-market-copy p:last-child {
    margin-bottom: 0;
}

.real-market-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 33, 55, 0.12);
    min-height: 100%;
    height: 420px;
}

.real-market-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Alliance */
.alliance {
    padding: var(--section-space-y) 0;
    background: #edf3f7;
    border-top: 1px solid rgba(15, 33, 55, 0.12);
}

.alliance-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
}

.alliance-heading {
    margin-bottom: 36px;
}

.alliance-heading .section-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
}

.alliance-heading h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.alliance-diagram {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(15, 33, 55, 0.12);
    border-bottom: 1px solid rgba(15, 33, 55, 0.12);
    background: transparent;
}

.alliance-node {
    min-height: 230px;
    padding: 26px 18px 16px;
    border-right: 1px solid rgba(15, 33, 55, 0.12);
    /* border-bottom: 1px solid rgba(15, 33, 55, 0.12); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: transparent;
}

.alliance-node:last-child {
    border-right: 0;
}

.alliance-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 36px;
    border-radius: 50%;
    background: rgba(133, 174, 210, 0.28);
    color: #0b3d6a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.alliance-node h3 {
    margin: 0 0 8px;
    font-family: var(--font-card-title);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.alliance-node p {
    margin: 0;
    max-width: 280px;
    font-family: var(--font-section-description);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(15, 33, 55, 0.8);
}

.alliance-copy {
    display: none;
}

.goal-cta {
    padding: 0;
    min-height: 620px;
    background: linear-gradient(rgba(8, 17, 27, 0.52), rgba(8, 17, 27, 0.62)),
        url('/images/cta_bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-cta-panel {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    padding: clamp(60px, 8vw, 100px) 0;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.goal-cta-kicker {
    margin: 0 0 24px;
    font-family: var(--font-card-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.goal-cta h2 {
    margin: 0 auto 32px;
    max-width: 960px;
    font-family: var(--font-section-title);
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-align: center;
}

.goal-cta-copy {
    margin: 0 auto 18px;
    max-width: 860px;
    font-family: var(--font-section-description);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.goal-cta-copy:last-of-type {
    margin-bottom: 42px;
}

.goal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-strong) 100%);
    color: #ffffff;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 16px 32px rgba(227, 82, 5, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(227, 82, 5, 0.5);
}

.goal-cta-simple {
    width: 100%;
    padding: var(--section-space-y) 0;
    background: #f8f8f8;
}

.goal-brief-inner {
    width: calc(100% - 48px);
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.goal-brief-media {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background: #eef2f6;
    box-shadow: 0 18px 38px rgba(15, 33, 55, 0.08);
}

.goal-brief-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.goal-brief-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.goal-brief-copy h2 {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: clamp(30px, 2.8vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.goal-brief-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 33, 55, 0.82);
}

@media (max-width: 768px) {
    .goal-cta-simple {
        padding: var(--section-space-y-mobile) 0;
    }

    .goal-brief-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .goal-brief-copy {
        order: 1;
    }

    .goal-brief-media {
        order: 2;
    }

    .goal-brief-media,
    .goal-brief-media img {
        min-height: 260px;
    }
}

@media (max-width: 1024px) {
    .why-ardent .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .why-card {
        min-height: auto;
    }

    .alliance-diagram {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alliance-node {
        min-height: 400px;
    }

    .real-market-panel {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .real-market-image {
        height: 360px;
    }

    .real-market-image img {
        min-height: 360px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .why-ardent .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .why-ardent,
    .alliance,
    .real-market {
        padding: var(--section-space-y-mobile) 0;
    }

    .why-ardent .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .why-card-image {
        height: 180px;
    }

    .why-card h3 {
        font-size: 16px;
        margin: 16px 14px 8px;
    }

    .why-card p {
        font-size: 14px;
        margin: 0 14px 16px;
        line-height: 1.6;
    }

    .why-ardent-panel,
    .alliance-panel {
        width: calc(100% - 28px);
    }

    .section-heading {
        margin-bottom: 26px;
        text-align: center;
    }

    .section-heading.service-process-heading {
        text-align: left;
    }

    .section-kicker {
        font-size: 11px;
    }

    .section-heading h2 {
        font-size: var(--mobile-section-title-size);
    }

    .alliance-panel {
        width: calc(100% - 28px);
    }

    .alliance-diagram {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid rgba(15, 33, 55, 0.12);
        border-right: 1px solid rgba(15, 33, 55, 0.12);
    }

    .alliance-node {
        min-height: 220px;
        padding: 18px 10px 14px;
        border-left: 0;
        border-right: 1px solid rgba(15, 33, 55, 0.12);
        border-bottom: 1px solid rgba(15, 33, 55, 0.12);
        justify-content: center;
        text-align: center;
    }

    .alliance-node:nth-child(2n) {
        border-right: 0;
    }

    .alliance-node:last-child,
    .alliance-node:nth-last-child(2) {
        border-bottom: 0;
    }

    .alliance-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin: 0 auto 18px;
    }

    .alliance-node h3 {
        margin: 0 0 8px;
        font-size: 16px;
        text-align: center;
    }

    .alliance-node p {
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .real-market-panel {
        width: calc(100% - 28px);
        gap: 18px;
    }

    .real-market-copy {
        text-align: center;
    }

    .real-market-heading {
        margin-bottom: 14px;
    }

    .real-market-copy p {
        line-height: 1.72;
        margin-bottom: 14px;
    }

    .real-market-image img {
        min-height: 260px;
    }

    .goal-cta {
        min-height: 480px;
        padding: 0;
    }

    .goal-cta-panel {
        padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 32px);
    }

    .goal-cta-kicker {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .goal-cta h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.3;
    }

    .goal-cta-copy {
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.7;
    }

    .goal-cta-copy:last-of-type {
        margin-bottom: 32px;
    }

    .goal-cta-btn {
        height: 48px;
        padding: 0 24px;
        font-size: 14px;
    }
}

/* Footer */
.site-footer {
    background: #1a2f4d;
    color: #ffffff;
}

.footer-main {
    padding: 48px 40px 26px;
    background: #1a2f4d;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-company {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-info {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}

.footer-info li {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info li:not(:last-child)::after {
    content: '|';
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-info-top,
.footer-info-bottom {
    width: auto;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 40px 22px;
    background: #16283f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 52px;
}

.copyright {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.policy-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.policy-trigger:hover {
    color: #ffffff;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 33, 55, 0.18);
    background: #ffffff;
    color: #0f2137;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 24px rgba(15, 33, 55, 0.14);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 33, 55, 0.18);
}

.floating-action.contact {
    background: #0f2137;
    color: #ffffff;
    border-color: #0f2137;
}

.floating-action.top {
    min-width: 72px;
}

.policy-modal[hidden] {
    display: none;
}

.policy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 22, 0.6);
}

.policy-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 32px));
    max-height: 80vh;
    margin: 8vh auto 0;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    padding: 28px 28px 24px;
    overflow: hidden;
}

.policy-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: #f2f4f7;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #333333;
}

#policyModalTitle {
    margin: 0 0 16px;
    padding-right: 28px;
    font-size: 22px;
    font-weight: 800;
    color: #111111;
}

.policy-modal-body {
    max-height: 60vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.8;
    color: #2d2d2d;
    white-space: pre-line;
}

@media (max-width: 767px) {
    .footer-main {
        padding: 28px 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-company {
        margin-top: 0;
    }

    .footer-info {
        gap: 6px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info li::after {
        content: none !important;
        margin-left: 0 !important;
    }

    .footer-bottom {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    .policy-trigger {
        font-size: 11px;
    }

    .policy-modal-dialog {
        margin-top: 12vh;
        padding: 24px 20px 20px;
    }

    .floating-actions {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 8px;
    }

    .floating-action {
        min-width: 88px;
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

    .floating-action.top {
        min-width: 64px;
    }

    #policyModalTitle {
        font-size: 18px;
    }
}
