/* =========================================================
   BLACK AD USER COMMON CSS
========================================================= */

@font-face {
    font-family: "Pretendard";
    src: url("/assets/fonts/Pretendard-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("/assets/fonts/Pretendard-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("/assets/fonts/Pretendard-ExtraBold.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --navy: #071B4D;
    --red: #E60012;
    --yellow: #ffb719;
    --blue: #335CFF;
    --purple: #7B3FF2;
    --gray-50: #F7F8FB;
    --gray-100: #F1F3F7;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;

    --header-height: 86px;
    --container: 1320px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.online-ad-page {
    --onad-deep: #050816;
    --onad-navy: #071B4D;
    --onad-blue: #335CFF;
    --onad-sky: #2FD3FF;
    --onad-purple: #7B3FF2;
    --onad-red: #E60012;
    --onad-gray: #6B7280;
    --onad-light: #F6F8FC;
}
.accent{
    color: var(--red);
}
.accent-y {
    color: var(--yellow) !important;
}
.black-design {
  font-size: 80px;
}

.fas,
.fa-regular,
.fa-brands {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa-regular {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.fa-brands {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--black);
    background: var(--white);
    word-break: keep-all;
}

body.menu-open {
    overflow: hidden;
}

body.is-preloading {
    overflow: hidden;
}

body.is-preloading .site-header,
body.is-preloading .mobile-menu,
body.is-preloading .mobile-menu-dim,
body.is-preloading .quick-menu,
body.is-preloading .page-container,
body.is-preloading .site-footer {
    opacity: 0;
    visibility: hidden;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    background: #050505;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.42s ease, visibility 0.42s ease;
}

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

.site-preloader-mark {
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.site-preloader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: sitePreloaderSpin 0.8s linear infinite;
}

.site-preloader p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 800;
}

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

a, a:hover {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

/* =========================================================
   Layout
========================================================= */

.page-container {
    min-height: 70vh;
}

.section {
    padding: 120px 0;
}

.inner {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 11px;
    border: 1px solid rgba(230, 0, 18, 0.14);
    border-radius: 999px;
    color: var(--red);
    background: rgba(230, 0, 18, 0.055);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.section-title {
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.section-desc {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* =========================================================
   Header
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scroll {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    width: min(1680px, calc(100% - 95px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: auto;
    max-width: 118px;
    max-height: 38px;
    object-fit: contain;
}

.gnb ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gnb a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--header-height);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gnb a:hover{
    color: var(--red);
    text-decoration: none;
}

.gnb a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.gnb a:hover::after,
.gnb a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
}

/* =========================================================
   Mobile Menu
========================================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1200;
    width: min(420px, 86vw);
    height: 100vh;
    padding: 28px;
    background: var(--white);
    transition: right 0.3s ease;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-head img {
    width: auto;
    height: auto;
    max-width: 128px;
    max-height: 42px;
    object-fit: contain;
}

.mobile-menu-head button {
    width: 40px;
    height: 40px;
    font-size: 24px;
}

.mobile-menu ul {
    margin-top: 30px;
}

.mobile-menu li + li {
    margin-top: 24px;
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.mobile-menu-dim {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.mobile-menu-dim.is-open {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   Quick Menu
========================================================= */

.quick-menu {
    position: fixed;
    right: 32px;
    top: 50%;
    z-index: 900;
    transform: translateY(-50%);
}

.quick-title {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 900;
    color: var(--red);
    text-align: center;
}

.quick-box {
    width: 92px;
    padding: 0px 10px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 4px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.quick-item + .quick-item {
    border-top: 1px solid var(--gray-200);
}

.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--white);
    background: var(--black);
}

.quick-icon.kakao {
    background: #FEE500;
    color: #191919;
}

.quick-icon.instagram {
    background: linear-gradient(135deg, #7B3FF2, #E6007E, #FF7A00);
}
.quick-icon.blog {
    color: #00c73c;
}
.quick-icon.phone {
    background: var(--black);
}

/* =========================================================
   Button
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
    transition: 0.25s ease;
}

.btn-black {
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, #111 0%, #000 100%);
}

.btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    color: #fff;
}

.btn-red {
    color: var(--white);
    border: 1px solid rgba(230, 0, 18, 0.72);
    background: linear-gradient(135deg, #E60012 0%, #B90018 100%);
}

.btn-red:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(230, 0, 18, 0.25);
}

.btn-line {
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.btn-line:hover {
    color: var(--white);
    background: var(--black);
}
/* =========================================================
   Footer
========================================================= */

.site-footer {
    padding: 64px 0;
    color: #111;
    background: #e6e6e6;
}

.footer-inner {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 56px;
    align-items: flex-start;
}

.footer-brand {
    min-width: 0;
}

.footer-logo img {
    width: auto;
    height: auto;
    max-width: 118px;
    max-height: 52px;
    object-fit: contain;
}

.footer-info {
    min-width: 0;
}

.footer-company {
    margin-bottom: 14px;
}

.footer-info-list {
    display: grid;
    gap: 8px;
}

.footer-info p,
.footer-info-list p {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.68);
}

.footer-info strong {
    color: #000;
    font-size: 15px;
    font-weight: 950;
}

.footer-copy {
    margin-top: 22px !important;
    color: rgba(0, 0, 0, 0.42) !important;
    font-size: 12px !important;
    font-weight: 800;
}

.footer-channels {
    min-width: 0;
    text-align: right;
}

.footer-channels > strong {
    display: block;
    margin-bottom: 14px;
    color: #000;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
}

.footer-channel-list {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-channel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #111;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.footer-channel-link:hover {
    color: #111;
    background: #fff;
    border-color: rgba(0, 0, 0, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.footer-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.footer-channel-icon.blog {
    background: linear-gradient(135deg, #00c73c, #03b334, #009f2f);
}

.footer-channel-icon.blog-sub {
    background: linear-gradient(135deg, #19d85a, #00b83f, #008f33);
}

.footer-channel-icon.youtube {
    background: linear-gradient(135deg, #ff3b30, #ff0000, #c4302b);
}

.footer-channel-icon.instagram {
    background: linear-gradient(135deg, #7B3FF2, #E6007E, #FF7A00);
}
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-channels {
        text-align: left;
    }

    .footer-channel-list {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        width: calc(100% - 32px);
    }

    .footer-info p,
    .footer-info-list p {
        display: block;
    }

    .footer-info span {
        display: block;
    }

    .mobile-menu-head img,
    .footer-logo img {
        max-width: 112px;
    }

    .footer-channel-link {
        width: 40px;
        height: 40px;
    }
}
/* =========================================================
   Shared Contact Form Section
========================================================= */

.inline-contact-section {
    padding: 110px 0 130px;
    background: #fff;
}

.inline-contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: flex-start;
}

.inline-contact-info {
    position: sticky;
    top: calc(var(--header-height) + 34px);
}

.inline-contact-info h2 {
    margin-top: 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.inline-contact-info p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-700);
}

.inline-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.inline-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #f7f8fb;
    font-size: 15px;
    font-weight: 800;
}

.inline-contact-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: #000;
}

.contact-form-wrap {
    padding: 42px;
    border-radius: 28px;
    background: #f7f8fb;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 900;
    color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 16px;
    color: #111;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
    height: 54px;
}

.form-field textarea {
    min-height: 180px;
    padding-top: 16px;
    line-height: 1.7;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(51, 92, 255, 0.12);
}

.email-composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(128px, 0.9fr);
    gap: 8px;
    align-items: center;
}

.email-composer .email-at {
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 900;
}

.email-composer [data-email-custom]:not([hidden]) {
    grid-column: 1 / -1;
}

.flash-message {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    color: #0f5132;
    background: #d1e7dd;
    font-size: 15px;
    font-weight: 800;
}

.form-submit {
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .inline-contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .inline-contact-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .inline-contact-section {
        padding: 78px 0;
    }

    .contact-form-wrap {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .email-composer {
        grid-template-columns: minmax(0, 1fr) auto minmax(112px, 0.8fr);
    }
}

/* =========================================================
   BLACK AD - Hospital Marketing Page
   file path: static/assets/css/hospital_marketing.css
========================================================= */

.hospital-marketing-page {
    background: #fff;
}

.hm-hero {
    position: relative;
    min-height: 760px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: #070617;
}

.hm-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 24%, rgba(88, 62, 255, 0.48), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(0, 194, 163, 0.30), transparent 34%),
        linear-gradient(135deg, #04030c 0%, #10124a 52%, #2910a8 100%);
}

.hm-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hm-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hm-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: #20d6b1;
    background: rgba(32, 214, 177, 0.12);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.hm-hero h2 {
    margin-top: 24px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.hm-hero h2 strong {
    display: inline;
    color: #20d6b1;
}

.hm-hero p {
    max-width: 710px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.hm-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.hm-hero .btn-line {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hm-hero .btn-line:hover {
    color: #000;
    background: #fff;
}

.hm-hero-object {
    position: relative;
    min-height: 430px;
}

.hm-hero-object::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(32, 214, 177, 0.18);
    filter: blur(28px);
    transform: translate(-50%, -50%);
}

.hm-hero-object img {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    margin-left: auto;
    filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.28));
}

.hm-hero-stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1060px, calc(100% - 48px));
    margin: -64px auto 0;
    padding: 34px 24px;
    border-radius: 28px 28px 0 0;
    color: #0f172a;
    background: #fff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
}

.hm-hero-stats div {
    text-align: center;
}

.hm-hero-stats div + div {
    border-left: 1px solid #e5e7eb;
}

.hm-hero-stats span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #64748b;
}

.hm-hero-stats strong {
    display: block;
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.045em;
    color: #111827;
}

.hm-worry-section {
    padding: 115px 0 105px;
    background: #fff;
}

.hm-center-head {
    text-align: center;
}

.hm-center-head .section-desc {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hm-center-head.white .section-title,
.hm-center-head.white .section-desc {
    color: #fff;
}

.hm-worry-list {
    display: grid;
    gap: 16px;
    width: min(820px, 100%);
    margin: 48px auto 0;
}

.hm-worry-pill {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border-radius: 999px;
    color: #fff;
    background: #2b23ad;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 30px rgba(43, 35, 173, 0.18);
}

.hm-worry-pill:nth-child(2) {
    margin-left: 80px;
}

.hm-worry-pill:nth-child(odd) {
    margin-right: 80px;
}

.hm-trust-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.hm-trust-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.hm-trust-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.hm-trust-card {
    min-height: 330px;
    padding: 36px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hm-trust-card.dark {
    color: #fff;
    background: linear-gradient(135deg, #171356, #0c1f3d);
}

.hm-trust-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #20d6b1, #335cff);
    font-size: 25px;
}

.hm-trust-card h3 {
    margin-top: 30px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hm-trust-card p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
}

.hm-trust-card.dark p {
    color: rgba(255, 255, 255, 0.72);
}

.hm-media-section {
    padding: 120px 0;
    background: #fff;
}

.hm-media-head {
    max-width: 760px;
}

.hm-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.hm-journey-card {
    min-height: 280px;
    padding: 34px;
    border-radius: 28px;
    background: #f7f8fb;
    transition: 0.25s ease;
}

.hm-journey-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.hm-journey-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background: #20d6b1;
    font-size: 15px;
    font-weight: 950;
}

.hm-journey-card h3 {
    margin-top: 30px;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hm-journey-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
}

.hm-screen-section {
    padding: 120px 0;
    background: #f1f3ff;
}

.hm-screen-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hm-screen-image {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hm-screen-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hm-chip {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    color: #fff;
    background: #2b23ad;
    font-size: 13px;
    font-weight: 900;
}

.hm-screen-copy h2 {
    margin-top: 22px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.hm-screen-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray-700);
}

.hm-process-section {
    padding: 120px 0;
    background: #2b23ad;
}

.hm-process-section .section-label {
    color: #20d6b1;
}

.hm-process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 54px;
}

.hm-process-card {
    min-height: 260px;
    padding: 30px;
    border-radius: 24px;
    color: #111;
    background: #fff;
}

.hm-process-card span {
    color: #2b23ad;
    font-size: 12px;
    font-weight: 950;
}

.hm-process-card h3 {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hm-process-card p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

.hm-program-section {
    padding: 120px 0;
    background: #13bd9a;
    color: #fff;
}

.hm-program-section .section-label,
.hm-program-section .section-desc {
    color: rgba(255, 255, 255, 0.82);
}

.hm-program-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 70px;
    align-items: center;
}

.hm-program-list {
    display: grid;
    gap: 16px;
}

.hm-program-list article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 24px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 20px;
    color: #111;
    background: #fff;
}

.hm-program-list strong {
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.hm-program-list span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.hm-program-list a {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    height: 38px;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: #000;
    font-size: 13px;
    font-weight: 900;
}

.hm-case-section {
    padding: 120px 0;
    background: #fff;
}

.hm-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.hm-case-grid article {
    min-height: 200px;
    padding: 30px;
    border-radius: 24px;
    background: #f7f8fb;
}

.hm-case-grid span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    background: #2b23ad;
    font-size: 12px;
    font-weight: 900;
}

.hm-case-grid strong {
    display: block;
    margin-top: 28px;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hm-final-cta {
    padding: 96px 0;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(5, 5, 5, 0.88), rgba(43, 35, 173, 0.84)),
        url("/image/hospital/hospital_cta_bg.png") center/cover no-repeat;
}

.hm-final-cta h2 {
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.hm-final-cta p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.hm-final-cta .btn {
    margin-top: 34px;
}

@media (max-width: 1180px) {
    .hm-process-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hm-hero-inner,
    .hm-trust-grid,
    .hm-screen-grid,
    .hm-program-grid {
        grid-template-columns: 1fr;
    }

    .hm-hero-object {
        min-height: auto;
    }

    .hm-hero-object img {
        margin: 0 auto;
        max-width: 420px;
    }

    .hm-journey-grid,
    .hm-case-grid {
        grid-template-columns: 1fr;
    }

    .hm-trust-card-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hm-hero {
        min-height: auto;
    }

    .hm-hero-inner {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 110px;
        gap: 38px;
    }

    .hm-hero h2 {
        font-size: 43px;
    }

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

    .hm-hero-actions {
        flex-direction: column;
    }

    .hm-hero-actions .btn {
        width: 100%;
    }

    .hm-hero-stats {
        grid-template-columns: 1fr;
        margin-top: -48px;
        border-radius: 24px 24px 0 0;
    }

    .hm-hero-stats div + div {
        margin-top: 22px;
        padding-top: 22px;
        border-left: 0;
        border-top: 1px solid #e5e7eb;
    }

    .hm-worry-section,
    .hm-trust-section,
    .hm-media-section,
    .hm-screen-section,
    .hm-process-section,
    .hm-program-section,
    .hm-case-section {
        padding: 82px 0;
    }

    .hm-worry-pill {
        border-radius: 24px;
        font-size: 16px;
    }

    .hm-worry-pill:nth-child(2),
    .hm-worry-pill:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    .hm-process-list {
        grid-template-columns: 1fr;
    }

    .hm-program-list article {
        display: block;
    }

    .hm-program-list span {
        display: block;
        margin-top: 10px;
    }

    .hm-program-list a {
        margin-top: 18px;
    }
}
/* =========================================================
   BLACK AD - Corporate Marketing Page
   file path: static/assets/css/corporate_marketing.css
========================================================= */

.corporate-marketing-page {
    background: #fff;
}

.cm-hero {
    position: relative;
    min-height: 760px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: #050816;
}

.cm-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 122, 0, 0.42), transparent 28%),
        radial-gradient(circle at 14% 76%, rgba(51, 92, 255, 0.36), transparent 34%),
        linear-gradient(135deg, #03040c 0%, #091b40 52%, #132f7c 100%);
}

.cm-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.42));
}

.cm-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.cm-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ff8a1c;
    background: rgba(255, 138, 28, 0.14);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.cm-hero-copy h2 {
    margin-top: 30px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.cm-hero-copy h2 strong {
    display: inline-block;
    color: #ff8a1c;
}

.cm-hero-copy p {
    max-width: 760px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.78;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.cm-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.cm-hero .btn-line,
.cm-cta-section .btn-line {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.cm-hero .btn-line:hover,
.cm-cta-section .btn-line:hover {
    color: #000;
    background: #fff;
}

.cm-hero-object {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-hero-object::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 28, 0.24), transparent 67%);
    filter: blur(4px);
}

.cm-hero-object img {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.34));
}

.cm-hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(880px, calc(100% - 48px));
    margin: -58px auto 0;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    background: #fff;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.18);
}

.cm-hero-stats div {
    padding: 28px 24px 32px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.cm-hero-stats div:last-child {
    border-right: 0;
}

.cm-hero-stats span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #6b7280;
}

.cm-hero-stats strong {
    display: block;
    margin-top: 8px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.04em;
    color: #0b1736;
}

.cm-problem-section {
    padding: 118px 0 104px;
    background: #fff;
}

.cm-center-head {
    text-align: center;
}

.cm-center-head .section-title {
    color: #050816;
}

.cm-problem-list {
    display: grid;
    gap: 16px;
    width: min(820px, 100%);
    margin: 46px auto 0;
}

.cm-problem-pill {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #172a61, #3158ff);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 16px 38px rgba(49, 88, 255, 0.18);
}

.cm-why-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.cm-why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.cm-why-text .section-desc {
    max-width: 620px;
}

.cm-why-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.cm-why-card {
    min-height: 310px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.cm-why-card.dark {
    color: #fff;
    background: linear-gradient(135deg, #080b18, #162a6e 55%, #3158ff);
}

.cm-why-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a00, #ff3f3f);
    font-size: 24px;
}

.cm-why-card h3 {
    margin-top: 28px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.cm-why-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
}

.cm-why-card.dark p {
    color: rgba(255, 255, 255, 0.74);
}

.cm-funnel-section {
    padding: 120px 0;
    color: #fff;
    background: #071b4d;
}

.cm-funnel-head {
    text-align: center;
}

.cm-funnel-head .section-desc {
    color: rgba(255, 255, 255, 0.72);
}

.cm-funnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.cm-funnel-card {
    min-height: 260px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.cm-funnel-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #071b4d;
    background: #ff8a1c;
    font-size: 15px;
    font-weight: 950;
}

.cm-funnel-card h3 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cm-funnel-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.72);
}

.cm-screen-section {
    padding: 130px 0;
    background: #fff;
}

.cm-screen-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.cm-screen-image {
    overflow: hidden;
    border-radius: 34px;
    background: #eef2ff;
    box-shadow: var(--shadow-card);
}

.cm-screen-image img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.cm-check-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.cm-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f7f8fb;
    color: #111827;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.55;
}

.cm-check-list i {
    margin-top: 2px;
    color: #ff7a00;
}

.cm-service-section {
    padding: 120px 0;
    background: #fff7ed;
}

.cm-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.cm-service-card {
    min-height: 280px;
    padding: 32px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(255, 122, 0, 0.10);
}

.cm-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #071b4d, #335cff);
    font-size: 23px;
}

.cm-service-card h3 {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.cm-service-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
}

.cm-case-section {
    padding: 120px 0;
    background: #fff;
}

.cm-case-head {
    max-width: 840px;
}

.cm-case-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.cm-case-card {
    min-height: 260px;
    padding: 34px;
    border-radius: 26px;
    background: #f7f8fb;
    border-top: 5px solid #ff7a00;
}

.cm-case-card span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    background: #071b4d;
    font-size: 12px;
    font-weight: 950;
}

.cm-case-card h3 {
    margin-top: 22px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.cm-case-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
}

.cm-process-section {
    padding: 120px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.26), transparent 30%),
        linear-gradient(135deg, #050816, #071b4d 68%, #162a6e);
}

.cm-center-head.light .section-title,
.cm-process-section .section-title {
    color: #fff;
}

.cm-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 54px;
}

.cm-process-card {
    min-height: 230px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cm-process-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #071b4d;
    background: #fff;
    font-size: 14px;
    font-weight: 950;
}

.cm-process-card h3 {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cm-process-card p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.cm-quote-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.cm-quote-box {
    padding: 70px 44px;
    border-radius: 34px;
    text-align: center;
    color: #071b4d;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.cm-quote-box p {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.cm-quote-box p::after {
    content: "";
    display: block;
    width: 220px;
    height: 14px;
    margin: -14px auto 0;
    background: rgba(255, 138, 28, 0.42);
}

.cm-quote-box span {
    display: block;
    margin-top: 28px;
    font-size: 17px;
    font-weight: 850;
    color: var(--gray-700);
}

.cm-cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #fff;
    background: #050816;
}

.cm-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 22, 0.92), rgba(5, 8, 22, 0.58)),
        url("/image/corporate/corporate_cta_bg.png") center/cover no-repeat;
    opacity: 0.95;
}

.cm-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.cm-cta-inner h2 {
    margin-top: 28px;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.cm-cta-inner p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.cm-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

@media (max-width: 1180px) {
    .cm-funnel-grid,
    .cm-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .cm-hero-inner,
    .cm-why-grid,
    .cm-screen-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .cm-hero-object {
        min-height: auto;
    }

    .cm-why-card-wrap,
    .cm-service-grid,
    .cm-case-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cm-hero {
        min-height: auto;
    }

    .cm-hero-inner {
        min-height: auto;
        padding: 84px 0 120px;
    }

    .cm-hero-copy h2 {
        font-size: 45px;
    }

    .cm-hero-copy p,
    .cm-cta-inner p {
        font-size: 16px;
    }

    .cm-hero-actions,
    .cm-cta-actions {
        flex-direction: column;
    }

    .cm-hero-actions .btn,
    .cm-cta-actions .btn {
        width: 100%;
    }

    .cm-hero-stats {
        grid-template-columns: 1fr;
        margin-top: -72px;
        border-radius: 24px 24px 0 0;
    }

    .cm-hero-stats div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .cm-problem-section,
    .cm-why-section,
    .cm-funnel-section,
    .cm-screen-section,
    .cm-service-section,
    .cm-case-section,
    .cm-process-section,
    .cm-quote-section,
    .cm-cta-section {
        padding: 82px 0;
    }

    .cm-problem-pill {
        border-radius: 22px;
        font-size: 15px;
    }

    .cm-funnel-grid,
    .cm-process-grid {
        grid-template-columns: 1fr;
    }

    .cm-quote-box {
        padding: 46px 22px;
        border-radius: 24px;
    }
}
/* =========================================================
   BLACK AD - Video Ad Page
   file path: static/assets/css/video_ad.css
========================================================= */

.video-ad-page {
    background: #fff;
}

.va-hero {
    position: relative;
    min-height: 760px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: #050505;
}

.va-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 22%, rgba(255, 45, 64, 0.46), transparent 30%),
        radial-gradient(circle at 18% 74%, rgba(123, 63, 242, 0.42), transparent 34%),
        linear-gradient(135deg, #020202 0%, #110016 48%, #1e0307 100%);
}

.va-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
}

.va-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.va-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ff4050;
    background: rgba(255, 64, 80, 0.14);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.va-hero-copy h2 {
    margin-top: 30px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.va-hero-copy h2 strong {
    display: inline-block;
    color: #ff4050;
}

.va-hero-copy p {
    max-width: 760px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.78;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.va-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.va-hero .btn-line,
.va-cta-section .btn-line {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.va-hero .btn-line:hover,
.va-cta-section .btn-line:hover {
    color: #000;
    background: #fff;
}

.va-hero-object {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.va-hero-object::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 64, 80, 0.15);
    filter: blur(10px);
}

.va-hero-object img {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.34));
}

.va-hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(980px, calc(100% - 48px));
    margin: -58px auto 0;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #fff;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.16);
}

.va-hero-stats div {
    padding: 28px 20px 30px;
    text-align: center;
}

.va-hero-stats div + div {
    border-left: 1px solid #eef0f5;
}

.va-hero-stats span {
    display: block;
    color: #ff4050;
    font-size: 13px;
    font-weight: 950;
}

.va-hero-stats strong {
    display: block;
    margin-top: 8px;
    color: #111;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.va-problem-section {
    padding: 130px 0 120px;
    background: #fff;
}

.va-center-head {
    text-align: center;
}

.va-center-head .section-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.va-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 58px;
}

.va-problem-grid article {
    min-height: 230px;
    padding: 32px;
    border-radius: 28px;
    background: #f7f8fb;
    transition: 0.25s ease;
}

.va-problem-grid article:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.va-problem-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: #ff4050;
    font-size: 14px;
    font-weight: 950;
}

.va-problem-grid strong {
    display: block;
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.va-problem-grid p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.72;
    color: var(--gray-700);
}

.va-black-section {
    padding: 120px 0;
    color: #fff;
    background: #050505;
    overflow: hidden;
}

.va-black-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.va-black-label {
    color: #ff4050;
    font-size: 14px;
    font-weight: 950;
}

.va-black-inner h2 {
    margin-top: 18px;
    font-size: clamp(40px, 5vw, 78px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.va-black-inner p {
    max-width: 740px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.72);
}

.va-light-card {
    min-height: 320px;
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 64, 80, 0.42), transparent 34%),
        linear-gradient(135deg, #151515 0%, #2b0612 100%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.va-light-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 26px;
    color: #fff;
    background: #ff4050;
    font-size: 38px;
    box-shadow: 0 0 38px rgba(255, 64, 80, 0.52);
}

.va-light-card strong {
    display: block;
    margin-top: 34px;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.va-light-card span {
    display: block;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.va-type-section {
    padding: 130px 0;
    background: #fff;
}

.va-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 54px;
}

.va-type-card {
    padding: 24px;
    border: 1px solid #eceef5;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.va-type-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(135deg, #ff4050 0%, #7B3FF2 100%);
}

.va-type-card h3 {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.va-type-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.72;
    color: var(--gray-700);
}

.va-screen-section {
    padding: 130px 0;
    background: #f7f8fb;
}

.va-screen-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.va-screen-image {
    overflow: hidden;
    border-radius: 34px;
    background: #e8ebf2;
    box-shadow: var(--shadow-card);
}

.va-screen-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.va-process-list {
    display: grid;
    gap: 14px;
    margin-top: 36px;
}

.va-process-list div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 66px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.va-process-list strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: #000;
    font-size: 14px;
    font-weight: 950;
}

.va-process-list span {
    font-size: 16px;
    font-weight: 900;
    color: #111;
}

.va-channel-section {
    padding: 130px 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 64, 80, 0.34), transparent 28%),
        linear-gradient(135deg, #090014 0%, #210033 54%, #050505 100%);
}

.va-center-head.light .section-title,
.va-center-head.light .section-desc {
    color: #fff;
}

.va-channel-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.va-channel-card {
    min-height: 190px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.va-channel-card i {
    font-size: 34px;
    color: #ff4050;
}

.va-channel-card strong {
    display: block;
    margin-top: 28px;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.va-channel-card span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.va-result-section {
    padding: 130px 0;
    background: #fff;
}

.va-result-head {
    max-width: 860px;
}

.va-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.va-result-grid article {
    min-height: 210px;
    padding: 34px;
    border-radius: 28px;
    background: #f7f8fb;
}

.va-result-grid strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.va-result-grid p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.76;
    color: var(--gray-700);
}

.va-cta-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: #fff;
    background: #07070b;
}

.va-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46)),
        url("/image/video/video_cta_bg.png") center/cover no-repeat;
    opacity: 0.9;
}

.va-cta-inner {
    position: relative;
    z-index: 2;
}

.va-cta-inner h2 {
    max-width: 980px;
    margin-top: 24px;
    font-size: clamp(40px, 5vw, 78px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.va-cta-inner p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.76);
}

.va-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

@media (max-width: 1180px) {
    .va-type-grid,
    .va-channel-row {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 1024px) {
    .va-hero-inner,
    .va-black-inner,
    .va-screen-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .va-hero-object {
        min-height: 320px;
    }

    .va-problem-grid,
    .va-result-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .va-hero {
        min-height: auto;
    }

    .va-hero-inner {
        min-height: auto;
        padding: 82px 0 120px;
    }

    .va-hero-copy h2 {
        font-size: 48px;
    }

    .va-hero-copy p,
    .va-black-inner p,
    .va-cta-inner p {
        font-size: 16px;
    }

    .va-hero-actions,
    .va-cta-actions {
        flex-direction: column;
    }

    .va-hero-actions .btn,
    .va-cta-actions .btn {
        width: 100%;
    }

    .va-hero-stats {
        grid-template-columns: 1fr;
        border-radius: 24px 24px 0 0;
    }

    .va-hero-stats div + div {
        border-left: 0;
        border-top: 1px solid #eef0f5;
    }

    .va-problem-section,
    .va-black-section,
    .va-type-section,
    .va-screen-section,
    .va-channel-section,
    .va-result-section,
    .va-cta-section {
        padding: 82px 0;
    }

    .va-type-grid,
    .va-channel-row {
        grid-template-columns: 1fr;
    }

    .va-black-inner h2,
    .va-cta-inner h2 {
        font-size: 42px;
    }
}
/* =========================================================
   OFFLINE AD PAGE
========================================================= */

.offline-ad-page {
    --oa-navy: #061833;
    --oa-deep: #020817;
    --oa-blue: #245CFF;
    --oa-orange: #FF6A21;
    --oa-yellow: #FFD45A;
    --oa-mint: #18C6A7;
    --oa-gray: #6B7280;
    --oa-light: #F5F7FB;
}

.oa-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.oa-label,
.oa-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.oa-kicker {
    color: var(--oa-orange);
    background: rgba(255, 106, 33, 0.1);
}

.oa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.25s ease;
}

.oa-btn-primary {
    color: #fff;
    background: var(--oa-orange);
    box-shadow: 0 16px 34px rgba(255, 106, 33, 0.28);
}

.oa-btn-primary:hover {
    transform: translateY(-3px);
}

.oa-btn-line {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.oa-btn-line:hover {
    color: #111;
    background: #fff;
}

.oa-section-head {
    max-width: 700px;
}

.oa-section-head.center {
    margin: 0 auto;
    text-align: center;
}

.oa-section-head.light h3,
.oa-section-head.light p {
    color: #fff;
}

.oa-section-head h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4.3vw, 64px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.oa-section-head p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--oa-gray);
}

/* Hero */
.oa-hero {
    position: relative;
    min-height: 720px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: var(--oa-deep);
}

.oa-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 22%, rgba(36, 92, 255, 0.55), transparent 30%),
        radial-gradient(circle at 75% 30%, rgba(255, 106, 33, 0.5), transparent 28%),
        radial-gradient(circle at 48% 86%, rgba(24, 198, 167, 0.26), transparent 35%),
        linear-gradient(135deg, #020817 0%, #071B4D 58%, #10101E 100%);
}

.oa-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 88%);
}

.oa-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
    align-items: center;
}

.oa-hero-copy h2 {
    margin-top: 28px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.oa-hero-copy h2 em {
    font-style: normal;
    color: var(--oa-yellow);
}

.oa-hero-copy p {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.oa-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.oa-hero-object {
    position: relative;
    min-height: 440px;
}

.oa-hero-object::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(4px);
    transform: translate(-50%, -50%);
}

.oa-hero-object img {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    margin-left: auto;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.32));
}

/* Problem */
.oa-problem {
    padding: 110px 0 100px;
    background: #fff;
}

.oa-chip-cloud {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 960px;
    margin: 56px auto 0;
}

.oa-chip {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 22px;
    text-align: center;
    font-size: 17px;
    font-weight: 950;
    color: var(--oa-navy);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.oa-chip:nth-child(even) {
    transform: translateY(22px) !important;
}

/* Media */
.oa-media-section {
    padding: 120px 0;
    color: #fff;
    background: linear-gradient(180deg, #071B4D 0%, #020817 100%);
}

.oa-media-section .oa-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.oa-media-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 20px;
    margin-top: 54px;
}

.oa-media-card {
    min-height: 240px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.oa-media-card.large {
    grid-row: span 2;
    min-height: 500px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 106, 33, 0.42), transparent 32%),
        rgba(255, 255, 255, 0.12);
}

.oa-media-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #111;
    background: var(--oa-yellow);
    font-weight: 950;
}

.oa-media-card h4 {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.24;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.oa-media-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.72);
}

/* Showcase */
.oa-showcase {
    padding: 130px 0;
    background: #fff;
}

.oa-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.oa-showcase-img {
    overflow: hidden;
    border-radius: 34px;
    background: var(--oa-light);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
}

.oa-showcase-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.oa-showcase-copy h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.oa-showcase-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--oa-gray);
}

.oa-check-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.oa-check-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 850;
    color: var(--oa-navy);
}

.oa-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--oa-orange);
    box-shadow: 0 0 0 6px rgba(255, 106, 33, 0.14);
}

/* Process */
.oa-process {
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 106, 33, 0.32), transparent 28%),
        radial-gradient(circle at 86% 74%, rgba(36, 92, 255, 0.42), transparent 34%),
        #020817;
}

.oa-process .oa-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.oa-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.oa-process-grid article {
    min-height: 230px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.oa-process-grid span {
    font-size: 12px;
    font-weight: 950;
    color: var(--oa-yellow);
}

.oa-process-grid h4 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 950;
    color: #fff;
    letter-spacing: -0.045em;
}

.oa-process-grid p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

/* Result */
.oa-result {
    padding: 120px 0;
    background: #fff;
}

.oa-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.oa-result-grid article {
    min-height: 250px;
    padding: 34px;
    border-radius: 28px;
    background: var(--oa-light);
}

.oa-result-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--oa-orange), var(--oa-blue));
    font-size: 24px;
}

.oa-result-grid h4 {
    margin-top: 28px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.oa-result-grid p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--oa-gray);
}

/* CTA */
.oa-cta {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: #fff;
    background: var(--oa-deep);
}

.oa-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.55)),
        url("/image/offline/offline_cta_bg.png") center/cover no-repeat;
    opacity: 0.95;
}

.oa-cta .oa-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-left: max(calc((100% - 1240px) / 2), 24px);
}

.oa-cta h3 {
    margin-top: 24px;
    font-size: clamp(38px, 4.8vw, 72px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.oa-cta p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.oa-cta .oa-btn {
    margin-top: 38px;
}

@media (max-width: 1024px) {
    .oa-showcase-grid {
        grid-template-columns: 1fr;
    }

    .oa-hero {
        min-height: auto;
    }

    .oa-hero-grid {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .oa-hero-object {
        min-height: auto;
    }

    .oa-chip-cloud,
    .oa-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oa-media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .oa-media-card.large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 300px;
    }

    .oa-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .oa-inner {
        width: calc(100% - 32px);
    }

    .oa-hero-grid {
        padding: 64px 0;
    }

    .oa-hero-copy h2 {
        font-size: 46px;
    }

    .oa-hero-copy p,
    .oa-section-head p,
    .oa-cta p {
        font-size: 16px;
    }

    .oa-hero-actions,
    .oa-btn {
        width: 100%;
    }

    .oa-chip-cloud,
    .oa-media-grid,
    .oa-result-grid,
    .oa-process-grid {
        grid-template-columns: 1fr;
    }

    .oa-chip:nth-child(even) {
        transform: none;
    }

    .oa-media-card.large {
        grid-column: auto;
    }

    .oa-problem,
    .oa-media-section,
    .oa-showcase,
    .oa-process,
    .oa-result,
    .oa-cta {
        padding: 82px 0;
    }

    .oa-showcase-grid {
        gap: 40px;
    }
}
/* =========================================================
   OFFLINE AD - Detail Service Tabs
========================================================= */

.oa-service-tabs-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}

.oa-service-tab-nav {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: min(100%, 980px);
    margin: 46px auto 64px;
    padding: 8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(2, 8, 23, 0.12);
}

.oa-service-tab-btn {
    min-width: 160px;
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    color: var(--oa-navy);
    background: transparent;
    font-size: 15px;
    font-weight: 950;
    transition: 0.24s ease;
}

.oa-service-tab-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--oa-orange), var(--oa-blue));
    box-shadow: 0 12px 28px rgba(36, 92, 255, 0.18);
}

.oa-service-panel {
    display: none;
}

.oa-service-panel.active {
    display: block;
}

.oa-service-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 64px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 22px 64px rgba(2, 8, 23, 0.09);
}

.oa-service-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    background: var(--oa-orange);
    font-size: 15px;
    font-weight: 950;
}

.oa-service-detail-text h3 {
    margin-top: 26px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.07em;
    color: var(--oa-navy);
}

.oa-service-detail-text strong {
    display: block;
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 950;
    color: #111;
}

.oa-service-detail-text p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--oa-gray);
}

.oa-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.oa-service-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--oa-orange);
    background: rgba(255, 106, 33, 0.1);
    font-size: 13px;
    font-weight: 900;
}

.oa-service-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.oa-service-detail-image {
    position: relative;
}

.oa-service-image-card {
    overflow: hidden;
    border-radius: 32px;
    background: #eef2f7;
    box-shadow: 0 24px 56px rgba(2, 8, 23, 0.12);
}

.oa-service-image-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.oa-service-floating-card {
    position: absolute;
    left: -28px;
    bottom: 28px;
    width: min(310px, calc(100% - 32px));
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 106, 33, 0.34), transparent 34%),
        linear-gradient(135deg, #020817, #071B4D);
    box-shadow: 0 20px 52px rgba(2, 8, 23, 0.26);
}

.oa-service-floating-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #111;
    background: var(--oa-yellow);
    font-size: 20px;
}

.oa-service-floating-card strong {
    display: block;
    margin-top: 18px;
    font-size: 20px;
    font-weight: 950;
}

.oa-service-floating-card span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.oa-service-feature-section {
    margin-top: 90px;
}

.oa-service-feature-head {
    margin-bottom: 34px;
}

.oa-service-feature-head h3 {
    margin-top: 16px;
    font-size: clamp(30px, 3.4vw, 52px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.055em;
    color: var(--oa-navy);
}

.oa-service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.oa-service-feature-card {
    min-height: 300px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(2, 8, 23, 0.07);
}

.oa-service-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--oa-orange), var(--oa-blue));
    font-size: 24px;
}

.oa-service-feature-card h4 {
    margin-top: 28px;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.045em;
    color: #111;
}

.oa-service-feature-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--oa-gray);
    min-height: 150px;
}

.oa-service-feature-point {
    display: block;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(7, 27, 77, 0.1);
    color: var(--oa-orange);
    font-size: 12px;
    line-height: 0.5;
    font-weight: 950;
}

@media (max-width: 1024px) {
    .oa-service-detail {
        grid-template-columns: 1fr;
        gap: 46px;
        padding: 46px 34px;
    }

    .oa-service-feature-grid {
        grid-template-columns: 1fr;
    }

    .oa-service-floating-card {
        left: 24px;
        bottom: 24px;
    }
}

@media (max-width: 640px) {
    .oa-service-tabs-section {
        padding: 82px 0;
    }

    .oa-service-tab-nav {
        position: static;
        width: 100%;
        flex-direction: column;
        border-radius: 24px;
        margin: 36px auto 46px;
    }

    .oa-service-tab-btn {
        width: 100%;
    }

    .oa-service-detail {
        padding: 32px 20px;
        border-radius: 26px;
    }

    .oa-service-detail-text h3 {
        font-size: 42px;
    }

    .oa-service-detail-actions {
        flex-direction: column;
    }

    .oa-service-detail-actions .btn {
        width: 100%;
    }

    .oa-service-floating-card {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .oa-service-feature-section {
        margin-top: 72px;
    }
}
/* =========================================================
   PUBLIC INSTITUTION MARKETING PAGE
========================================================= */

.public-marketing-page {
    --pa-navy: #071B4D;
    --pa-deep: #020817;
    --pa-blue: #246BFE;
    --pa-cyan: #16B8D9;
    --pa-green: #22C55E;
    --pa-gold: #F7C948;
    --pa-gray: #6B7280;
    --pa-light: #F5F8FC;
}

.pa-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.pa-label,
.pa-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.pa-kicker {
    color: var(--pa-blue);
    background: rgba(36, 107, 254, 0.1);
}

.pa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.25s ease;
}

.pa-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pa-blue), var(--pa-cyan));
    box-shadow: 0 16px 34px rgba(36, 107, 254, 0.28);
}

.pa-btn-primary:hover {
    transform: translateY(-3px);
}

.pa-btn-line {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.pa-btn-line:hover {
    color: #111;
    background: #fff;
}

.pa-section-head {
    max-width: 720px;
}

.pa-section-head.center {
    margin: 0 auto;
    text-align: center;
}

.pa-section-head.light h3,
.pa-section-head.light p {
    color: #fff;
}

.pa-section-head h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4.3vw, 64px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.pa-section-head p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--pa-gray);
}

/* Hero */
.pa-hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: var(--pa-deep);
}

.pa-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(36, 107, 254, 0.58), transparent 30%),
        radial-gradient(circle at 78% 24%, rgba(34, 197, 94, 0.42), transparent 28%),
        radial-gradient(circle at 48% 88%, rgba(22, 184, 217, 0.28), transparent 35%),
        linear-gradient(135deg, #020817 0%, #071B4D 60%, #05202E 100%);
}

.pa-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 88%);
}

.pa-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
    align-items: center;
}

.pa-hero-copy h2 {
    margin-top: 28px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.pa-hero-copy h2 em {
    font-style: normal;
    color: var(--pa-gold);
}

.pa-hero-copy p {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.pa-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.pa-hero-object {
    position: relative;
    min-height: 440px;
}

.pa-hero-object::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(4px);
    transform: translate(-50%, -50%);
}

.pa-hero-object img {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    margin-left: auto;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.32));
}

/* Issue */
.pa-issue {
    padding: 110px 0 100px;
    background: #fff;
}

.pa-issue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.pa-issue-grid article {
    min-height: 280px;
    padding: 34px;
    border-radius: 28px;
    background: var(--pa-light);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.pa-issue-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: var(--pa-blue);
    font-weight: 950;
}

.pa-issue-grid h4 {
    margin-top: 28px;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.pa-issue-grid p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pa-gray);
}

/* Service */
.pa-service-section {
    padding: 120px 0;
    color: #fff;
    background: linear-gradient(180deg, #071B4D 0%, #020817 100%);
}

.pa-service-section .pa-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.pa-service-section .pa-kicker,
.pa-process .pa-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.pa-service-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 20px;
    margin-top: 54px;
}

.pa-service-card {
    min-height: 240px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.pa-service-card.large {
    grid-row: span 2;
    min-height: 500px;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.42), transparent 32%),
        rgba(255, 255, 255, 0.12);
}

.pa-service-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #071B4D;
    background: var(--pa-gold);
    font-weight: 950;
}

.pa-service-card h4 {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.24;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.pa-service-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.72);
}

/* Showcase */
.pa-showcase {
    padding: 130px 0;
    background: #fff;
}

.pa-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.pa-showcase-img {
    overflow: hidden;
    border-radius: 34px;
    background: var(--pa-light);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
}

.pa-showcase-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.pa-showcase-copy h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.pa-showcase-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--pa-gray);
}

.pa-check-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.pa-check-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 850;
    color: var(--pa-navy);
}

.pa-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pa-green);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

/* Process */
.pa-process {
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.28), transparent 28%),
        radial-gradient(circle at 86% 74%, rgba(36, 107, 254, 0.42), transparent 34%),
        #020817;
}

.pa-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.pa-process-grid article {
    min-height: 230px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pa-process-grid span {
    font-size: 12px;
    font-weight: 950;
    color: var(--pa-gold);
}

.pa-process-grid h4 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 950;
    color: #fff;
    letter-spacing: -0.045em;
}

.pa-process-grid p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

/* Result */
.pa-result {
    padding: 120px 0;
    background: #fff;
}

.pa-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.pa-result-grid article {
    min-height: 250px;
    padding: 34px;
    border-radius: 28px;
    background: var(--pa-light);
}

.pa-result-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--pa-blue), var(--pa-green));
    font-size: 24px;
}

.pa-result-grid h4 {
    margin-top: 28px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.pa-result-grid p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pa-gray);
}

/* CTA */
.pa-cta {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: #fff;
    background: var(--pa-deep);
}

.pa-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.55)),
        url("/image/public/public_cta_bg.png") center/cover no-repeat;
    opacity: 0.95;
}

.pa-cta .pa-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: max(calc((100% - 1240px) / 2), 24px);
}

.pa-cta h3 {
    margin-top: 24px;
    font-size: clamp(38px, 4.8vw, 72px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.pa-cta p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.pa-cta .pa-btn {
    margin-top: 38px;
}

@media (max-width: 1024px) {
    .pa-showcase-grid {
        grid-template-columns: 1fr;
    }

    .pa-hero {
        min-height: auto;
    }

    .pa-hero-grid {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .pa-hero-object {
        min-height: auto;
    }

    .pa-issue-grid,
    .pa-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pa-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pa-service-card.large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 300px;
    }

    .pa-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pa-inner {
        width: calc(100% - 32px);
    }

    .pa-hero-grid {
        padding: 64px 0;
    }

    .pa-hero-copy h2 {
        font-size: 46px;
    }

    .pa-hero-copy p,
    .pa-section-head p,
    .pa-cta p {
        font-size: 16px;
    }

    .pa-hero-actions,
    .pa-btn {
        width: 100%;
    }

    .pa-issue-grid,
    .pa-service-grid,
    .pa-result-grid,
    .pa-process-grid {
        grid-template-columns: 1fr;
    }

    .pa-service-card.large {
        grid-column: auto;
    }

    .pa-issue,
    .pa-service-section,
    .pa-showcase,
    .pa-process,
    .pa-result,
    .pa-cta {
        padding: 82px 0;
    }

    .pa-showcase-grid {
        gap: 40px;
    }
}
/* =========================================================
   BLACK AD - Homepage Production Page
   file path: static/assets/css/homepage_production.css
========================================================= */

.homepage-production-page {
    background: #fff;
}

.hp-hero {
    position: relative;
    min-height: 760px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: #05050b;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(51, 92, 255, 0.45), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(0, 221, 186, 0.30), transparent 34%),
        radial-gradient(circle at 50% 90%, rgba(123, 63, 242, 0.35), transparent 34%),
        linear-gradient(135deg, #04040a 0%, #071b4d 54%, #122b7a 100%);
}

.hp-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.14)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: #50ffd8;
    background: rgba(80, 255, 216, 0.14);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.hp-hero-copy h2 {
    margin-top: 30px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.hp-hero-copy h2 strong {
    color: #50ffd8;
}

.hp-hero-copy p {
    max-width: 760px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.78;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.hp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.hp-hero .btn-line {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hp-hero .btn-line:hover {
    color: #000;
    background: #fff;
}

.hp-hero-object {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-hero-object::before {
    content: "";
    position: absolute;
    width: 82%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(80, 255, 216, 0.12);
    filter: blur(12px);
}

.hp-hero-object img {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
}

.hp-hero-stats {
    position: relative;
    z-index: 3;
    width: min(1120px, calc(100% - 48px));
    margin: -74px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.hp-hero-stats div {
    padding: 30px 34px;
    border-right: 1px solid #e5e7eb;
}

.hp-hero-stats div:last-child {
    border-right: 0;
}

.hp-hero-stats span {
    display: block;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 900;
}

.hp-hero-stats strong {
    display: block;
    margin-top: 10px;
    color: #071b4d;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hp-problem-section {
    padding: 150px 0 110px;
    background: #fff;
}

.hp-center-head,
.hp-section-head {
    text-align: center;
}

.hp-section-head .section-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hp-problem-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 980px;
    margin: 48px auto 0;
}

.hp-problem-pill {
    padding: 18px 24px;
    border-radius: 999px;
    color: #071b4d;
    background: #f1f3ff;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(51, 92, 255, 0.08);
}

.hp-why-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.hp-why-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.hp-why-text .section-desc {
    max-width: 620px;
}

.hp-why-card-wrap {
    display: grid;
    gap: 20px;
}

.hp-why-card {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hp-why-card.is-main {
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(80, 255, 216, 0.36), transparent 34%),
        linear-gradient(135deg, #050505 0%, #071b4d 100%);
}

.hp-why-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    color: #fff;
    background: var(--blue);
    font-size: 16px;
    font-weight: 950;
}

.hp-why-card.is-main span {
    color: #071b4d;
    background: #50ffd8;
}

.hp-why-card h3 {
    margin-top: 24px;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hp-why-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
}

.hp-why-card.is-main p {
    color: rgba(255, 255, 255, 0.74);
}

.hp-service-section {
    padding: 120px 0;
    background: #fff;
}

.hp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.hp-service-card {
    min-height: 390px;
    padding: 32px;
    border-radius: 28px;
    background: #f7f8fb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.hp-service-card.is-dark {
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(80, 255, 216, 0.28), transparent 35%),
        linear-gradient(135deg, #071b4d 0%, #050505 100%);
}

.hp-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(135deg, #335cff, #00ddba);
}

.hp-service-card h3 {
    margin-top: 26px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hp-service-card p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
    color: var(--gray-700);
}

.hp-service-card.is-dark p {
    color: rgba(255, 255, 255, 0.74);
}

.hp-service-card ul {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.hp-service-card li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 850;
    color: #071b4d;
}

.hp-service-card.is-dark li {
    color: rgba(255, 255, 255, 0.88);
}

.hp-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ddba;
}

.hp-screen-section {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.hp-screen-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}

.hp-screen-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: 0 22px 64px rgba(7, 27, 77, 0.16);
}

.hp-screen-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(80, 255, 216, 0.14), transparent 52%);
}

.hp-screen-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hp-check-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.hp-check-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 850;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.hp-check-list i {
    color: #00bfa5;
    margin-top: 3px;
}

.hp-process-section {
    padding: 120px 0;
    color: #fff;
    background: #050505;
}

.hp-process-section .section-label {
    color: #50ffd8;
}

.hp-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.hp-process-item {
    min-height: 280px;
    padding: 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hp-process-item span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #071b4d;
    background: #50ffd8;
    font-size: 12px;
    font-weight: 950;
}

.hp-process-item h3 {
    margin-top: 26px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hp-process-item p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.hp-package-section {
    padding: 120px 0;
    background: #fff;
}

.hp-package-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 64px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 12%, rgba(51, 92, 255, 0.18), transparent 30%),
        #f7f8fb;
}

.hp-package-list {
    display: grid;
    gap: 12px;
}

.hp-package-list p {
    padding: 20px 24px;
    border-radius: 18px;
    background: #fff;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 900;
    color: #071b4d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.hp-estimate-section {
    padding: 130px 0;
    background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

@media (max-width: 1180px) {
    .hp-service-grid,
    .hp-process-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hp-hero-inner,
    .hp-why-grid,
    .hp-screen-grid,
    .hp-package-box {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hp-hero-object {
        max-width: 440px;
        margin: 0 auto;
    }

    .hp-hero-stats {
        margin-top: -40px;
    }
}

@media (max-width: 640px) {
    .hp-hero {
        min-height: auto;
    }

    .hp-hero-inner {
        min-height: auto;
        padding: 92px 0 120px;
    }

    .hp-hero-copy h2 {
        font-size: 46px;
    }

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

    .hp-hero-actions {
        flex-direction: column;
    }

    .hp-hero-actions .btn {
        width: 100%;
    }

    .hp-hero-stats {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        margin-top: -72px;
    }

    .hp-hero-stats div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .hp-hero-stats div:last-child {
        border-bottom: 0;
    }

    .hp-why-section,
    .hp-service-section,
    .hp-screen-section,
    .hp-process-section,
    .hp-package-section {
        padding: 82px 0;
    }

    .hp-problem-section {
        padding: 120px 0 82px;
    }

    .hp-problem-list {
        display: grid;
    }

    .hp-problem-pill {
        border-radius: 18px;
        font-size: 15px;
    }

    .hp-service-grid,
    .hp-process-list {
        grid-template-columns: 1fr;
    }

    .hp-service-card,
    .hp-why-card,
    .hp-process-item {
        min-height: auto;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .hp-package-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

}
/* =========================================================
   Main - Ad Readiness Check
========================================================= */

.ad-readiness-section {
    padding: 110px 0;
    background: #f7f8fb;
}

.ad-readiness-head {
    max-width: 760px;
}

.ad-readiness-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    margin-top: 52px;
}

.ad-readiness-checks {
    display: grid;
    gap: 12px;
}

.ad-readiness-checks label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    font-size: 15px;
    font-weight: 850;
    color: #111;
    cursor: pointer;
    transition: 0.22s ease;
}

.ad-readiness-checks label:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.ad-readiness-checks label:has(input:checked) {
    border-color: rgba(230, 0, 18, 0.28);
    background: #fff7f8;
    box-shadow: 0 18px 44px rgba(230, 0, 18, 0.10);
}

.ad-readiness-checks input {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.ad-readiness-result {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    align-self: flex-start;
    height: 710px;
}

.ad-score-card {
    padding: 34px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(230, 0, 18, 0.36), transparent 34%),
        linear-gradient(135deg, #050505, #071B4D);
}

.ad-score-card span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 950;
}

.ad-score-card strong {
    display: block;
    margin-top: 24px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.ad-score-card p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

.ad-recommend-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.ad-recommend-card {
    display: block;
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
    transition: 0.22s ease;
}

.ad-recommend-card:hover {
    transform: translateY(-4px);
    color: inherit;
    box-shadow: var(--shadow-card);
}

.ad-recommend-card em {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(230, 0, 18, 0.08);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.ad-recommend-card strong {
    display: block;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.ad-recommend-card span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
}

@media (max-width: 1024px) {
    .ad-readiness-box {
        grid-template-columns: 1fr;
    }

    .ad-readiness-result {
        position: static;
    }
}

@media (max-width: 640px) {
    .ad-readiness-section {
        padding: 82px 0;
    }

    .ad-readiness-checks label {
        align-items: flex-start;
        min-height: auto;
        padding: 16px;
        border-radius: 16px;
    }

    .ad-score-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .ad-recommend-card {
        padding: 20px;
    }
}
/* =========================================================
   Migrated inline styles from templates\main.html
========================================================= */
.main-visual {
        position: relative;
        min-height: 100vh;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: #fff;
        background: #050505;
    }

    .main-visual-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    .main-visual-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.62)),
            radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    }

    .main-visual-video {
        position: absolute;
        left: 50%;
        top: 50%;
        width: max(100vw, 177.78vh);
        height: max(56.25vw, 100vh);
        border: 0;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }

    .main-visual-content {
        position: relative;
        z-index: 2;
        width: min(1160px, calc(100% - 48px));
        margin: 0 auto;
        text-align: center;
    }

    .main-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-bottom: 24px;
        padding: 8px 18px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 0.08em;
        color: #fff;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(12px);
    }

    .main-eyebrow::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 5px rgba(230, 0, 18, 0.18);
    }

    .main-title {
        font-size: clamp(48px, 6.2vw, 96px);
        line-height: 0.98;
        font-weight: 950;
        letter-spacing: -0.055em;
        color: #fff;
        text-shadow: 0 8px 36px rgba(0, 0, 0, 0.32);
    }

    .main-title .circle-text {
        position: relative;
        display: inline-block;
    }

    .main-title .circle-text::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 56%;
        z-index: -1;
        width: 110%;
        height: 34%;
        border: 8px solid rgba(230, 0, 18, 0.74);
        border-radius: 50%;
        transform: translate(-50%, -50%) rotate(-6deg);
    }

    .main-subtitle {
        max-width: 760px;
        margin: 34px auto 0;
        font-size: 22px;
        line-height: 1.65;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.84);
        text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
    }

    .main-visual .btn-line {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

    .main-visual .btn-line:hover {
        color: #000;
        background: #fff;
    }

    .main-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 44px;
    }

    .company-file-btn {
        position: fixed;
        right: 30px;
        bottom: 90px;
        z-index: 910;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 260px;
        height: 72px;
        padding: 0 28px;
        border-radius: 999px;
        color: #fff;
        background: #000;
        font-size: 18px;
        font-weight: 900;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
        transition: 0.25s ease;
        border: 1px solid var(--red);
    }

    .company-file-btn:hover {
        transform: translateY(-4px);
        color: #fff;
    }

.strength-section {
    padding: 80px 0;
    background: #fff;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.strength-card {
    position: relative;
    min-height: 260px;
    padding: 32px;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    cursor: pointer;

    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(230, 0, 18, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(123, 63, 242, 0.16),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #6d0000 0%,
            #0b0b0f 100%
        );

    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease;
}

/* 문구가 표시되는 영역 */
.strength-content {
    position: relative;
    z-index: 2;
    min-height: 140px;
}

/* 기본 문구와 호버 문구 공통 */
.strength-default,
.strength-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}

/* 처음 표시되는 문구 */
.strength-default {
    opacity: 1;
    transform: translateY(0);
}

/* 호버 시 표시되는 문구 */
.strength-hover {
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
}

.strength-card h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.strength-card p {
    max-width: 230px;
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
}

.strength-card img {
    position: absolute;
    right: -22px;
    bottom: -22px;
    width: 180px;
    opacity: 0.95;

    transition:
        transform 0.4s ease,
        opacity 0.32s ease;
}

/* 카드 호버 */
.strength-card:hover,
.strength-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(11, 11, 15, 0.22);
    outline: none;
}

/* 기본 문구 숨김 */
.strength-card:hover .strength-default,
.strength-card:focus .strength-default {
    opacity: 0;
    transform: translateY(-24px);
}

/* 새 문구 표시 */
.strength-card:hover .strength-hover,
.strength-card:focus .strength-hover {
    opacity: 1;
    transform: translateY(0);
}

/* 이미지 움직임 */
.strength-card:hover img,
.strength-card:focus img {
    transform: translate(-8px, -8px) scale(1.08);
}

/* 태블릿 */
@media (max-width: 900px) {
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 모바일 */
@media (max-width: 600px) {
    .strength-section {
        padding: 56px 0;
    }

    .strength-grid {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 480px);
        gap: 18px;
    }

    .strength-card {
        min-height: 240px;
        padding: 28px;
    }

    .strength-card h3 {
        font-size: 28px;
    }

    .strength-card img {
        width: 160px;
    }
}

    .intro-section {
        padding: 130px 0 80px;
        text-align: center;
        background: #fff;
    }

    .intro-section .section-desc {
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }
.service-category {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background:
        radial-gradient(circle at 12% 82%, rgba(0, 110, 255, 0.22), transparent 26%),
        radial-gradient(circle at 84% 20%, rgba(255, 0, 76, 0.14), transparent 24%),
        linear-gradient(135deg, #020611 0%, #04112a 45%, #020814 100%);
}

.service-category::before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -80px;
    width: 55%;
    height: 320px;
    background:
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.22), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.service-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 60px;
    align-items: center;
}

.service-copy .section-label {
    color: #ff5a67;
    border-color: rgba(255, 90, 103, 0.28);
    background: rgba(255, 90, 103, 0.08);
}

.service-copy .section-title {
    margin-top: 22px;
    color: #fff;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.service-copy .section-title strong {
    color: #ff4d5d;
    font-weight: 950;
}

.service-copy .section-desc {
    max-width: 520px;
    margin-top: 30px;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.8;
}

.service-cta {
    margin-top: 42px;
    min-width: 220px;
    height: 62px;
    font-size: 18px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(255, 60, 80, 0.25);
}

/* 우측 카드 영역 */
.service-icon-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-icon-row::before {
    content: "";
    position: absolute;
    inset: 8% -4% 8% -4%;
    border: 1px dashed rgba(91, 163, 255, 0.22);
    border-radius: 42px;
    pointer-events: none;
}

.service-icon-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 180px;
    padding: 30px 28px;
    border-radius: 28px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;

    background: linear-gradient(180deg, rgba(10, 20, 46, 0.72), rgba(4, 10, 24, 0.82));
    border: 1px solid rgba(90, 130, 255, 0.26);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-icon-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.08), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.05), transparent 45%);
    pointer-events: none;
}

.service-icon-item.wide {
    grid-column: span 2;
    min-height: 195px;
}

.service-icon-item.bottom-wide {
    grid-column: span 1;
}

/* 아이콘 */
.service-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 10px 30px rgba(0,0,0,0.28);
}

.service-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-text em {
    font-style: normal;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.service-text strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

.service-text span {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
}

/* 카드별 포인트 컬러 */
.service-icon-item:nth-child(1) {
    border-color: rgba(255, 95, 110, 0.45);
}
.service-icon-item:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #ff6b6b, #e63946);
}
.service-icon-item:nth-child(1) .service-text em {
    color: #ff6b6b;
}

.service-icon-item:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #4f8cff, #2f5bff);
}
.service-icon-item:nth-child(2) .service-text em {
    color: #4f8cff;
}

.service-icon-item:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #39d5ff, #15c2a3);
}
.service-icon-item:nth-child(3) .service-text em {
    color: #39d5ff;
}

.service-icon-item:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #9163ff, #6a4dff);
}
.service-icon-item:nth-child(4) .service-text em {
    color: #9d75ff;
}

.service-icon-item:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ffbb45, #ff8a00);
}
.service-icon-item:nth-child(5) .service-text em {
    color: #ffb347;
}

.service-icon-item:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #2de39a, #11b981);
}
.service-icon-item:nth-child(6) .service-text em {
    color: #32e2a3;
}

.service-icon-item:nth-child(7) .service-icon {
    background: linear-gradient(135deg, #4d92ff, #2b6cff);
}
.service-icon-item:nth-child(7) .service-text em {
    color: #6aa5ff;
}

.service-icon-item:nth-child(8) .service-icon {
    background: linear-gradient(135deg, #4d92ff, #2b6cff);
}
.service-icon-item:nth-child(8) .service-text em {
    color: #6aa5ff;
}

.service-icon-item:nth-child(9) .service-icon {
    background: linear-gradient(135deg, #8a5cff, #6e46ff);
}
.service-icon-item:nth-child(9) .service-text em {
    color: #9f7cff;
}

/* 반응형 */
@media (max-width: 1200px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-copy .section-desc {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .service-icon-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-icon-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .service-category {
        padding: 90px 0;
    }

    .service-copy .section-title {
        font-size: 44px;
    }

    .service-copy .section-desc {
        font-size: 16px;
    }

    .service-icon-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-icon-item,
    .service-icon-item.wide,
    .service-icon-item.bottom-wide {
        grid-column: span 1;
        min-height: auto;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 28px;
    }

    .service-text strong {
        font-size: 19px;
    }

    .service-text span {
        font-size: 14px;
    }

    .service-cta {
        width: 100%;
    }
}

    .service-preview {
        padding: 90px 0 130px;
        background: #fff;
    }

    .service-preview-list {
        display: grid;
        gap: 100px;
    }

    .service-preview-card {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1.05fr;
        gap: 70px;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
    }

    .service-preview-card:nth-child(even) {
        grid-template-columns: 1.05fr 1fr;
    }

    .service-preview-card:nth-child(even) .service-preview-text {
        order: 2;
    }

    .service-preview-card:nth-child(even) .service-preview-image {
        order: 1;
    }

    .service-preview-text h3 {
        font-size: clamp(34px, 4vw, 58px);
        line-height: 1.15;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .service-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        color: var(--red);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: 0.14em;
    }

    .service-kicker::after {
        content: "";
        width: 34px;
        height: 1px;
        background: rgba(230, 0, 18, 0.34);
    }

    .service-preview-text h3 a {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }

    .service-preview-text h3 a::after {
        content: "→";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        color: #fff;
        background: #111;
        font-size: 20px;
        letter-spacing: 0;
    }

    .service-preview-text strong {
        display: block;
        margin-top: 18px;
        font-size: 20px;
        color: var(--red);
    }

    .service-preview-text p {
        margin-top: 24px;
        font-size: 17px;
        line-height: 1.8;
        color: var(--gray-700);
    }

    .service-preview-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .service-preview-tags span {
        display: inline-flex;
        align-items: center;
        height: 34px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(17, 24, 39, 0.08);
        color: var(--gray-900);
        background: #fff;
        font-size: 13px;
        font-weight: 900;
    }

    .service-preview-image {
        overflow: hidden;
        border-radius: 28px;
        background: var(--gray-50);
        box-shadow: var(--shadow-card);
    }

    .service-preview-image a {
        display: block;
    }

    .service-preview-image img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .stat-section {
        position: relative;
        padding: 150px 0;
        text-align: center;
        background: linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
        overflow: hidden;
    }

    .stat-title-en {
        font-family: Georgia, serif;
        font-size: clamp(34px, 4vw, 60px);
        line-height: 1.1;
        font-weight: 400;
        color: #111;
    }

    .stat-subtitle {
        margin-top: 22px;
        font-size: 17px;
        font-weight: 800;
    }

    .stat-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        width: min(1040px, calc(100% - 48px));
        margin: 54px auto 0;
    }

    .stat-card {
        padding: 34px 24px;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    .stat-card p {
        font-size: 15px;
        color: var(--gray-700);
        font-weight: 800;
    }

    .stat-card strong {
        display: block;
        margin-top: 10px;
        font-size: 36px;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .portfolio-preview {
        padding: 130px 0;
        background: #fff;
    }

    .portfolio-preview-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        margin-bottom: 48px;
    }

    .portfolio-preview .portfolio-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .portfolio-preview .portfolio-card {
        display: block;
        width: 100%;
        padding: 0;
        border: 0;
        overflow: hidden;
        background: #fff;
        color: inherit;
        text-align: left;
        cursor: pointer;
        transition: 0.25s ease;
    }

    .portfolio-preview .portfolio-card:hover {
        transform: translateY(-8px);
    }

    .portfolio-preview .portfolio-thumb {
        overflow: hidden;
        background: var(--gray-100);
    }

    .portfolio-preview .portfolio-thumb img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        transition: 0.35s ease;
    }

    .portfolio-preview .portfolio-card:hover .portfolio-thumb img {
        transform: scale(1.06);
    }

    .portfolio-preview .portfolio-info {
        display: grid;
        grid-template-rows: auto auto minmax(76px, auto) minmax(36px, auto);
        align-content: start;
        padding: 18px;
    }

    .portfolio-preview .portfolio-meta {
        min-height: 32px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 6px;
    }

    .portfolio-preview .portfolio-tag {
        display: inline-flex;
        align-items: center;
        height: 26px;
        padding: 0 12px;
        border-radius: 999px;
        color: #fff;
        background: #000;
        font-size: 12px;
        font-weight: 900;
    }

    .portfolio-preview .portfolio-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .portfolio-preview .portfolio-badge {
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        border-radius: 999px;
        background: #f4f6f8;
        color: #333;
        font-size: 13px;
        font-weight: 500;
        line-height: 1;
    }

    .portfolio-preview .portfolio-info h3 {
        font-size: 22px;
        line-height: 1.35;
        font-weight: 900;
        letter-spacing: -0.04em;
        min-height: 66px;
        margin-top: 16px;
    }

    .portfolio-preview .portfolio-info p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--gray-700);
        min-height: 76px;
        margin-top: 12px;
    }

    .partner-section {
        padding: 120px 0;
        text-align: center;
        background: #f7f8fb;
    }

    .partner-head {
        max-width: 760px;
        margin: 0 auto 44px;
    }

    .partner-title {
        font-size: clamp(34px, 4vw, 58px);
        line-height: 1.18;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .partner-desc {
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.7;
        font-weight: 700;
        color: var(--gray-700);
    }

    .partner-logo-wrap {
        width: min(980px, calc(100% - 48px));
        margin: 0 auto;
        padding: 48px;
        border-radius: 28px;
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    .partner-logo {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
        object-fit: contain;
    }

    .contact-cta {
        position: relative;
        padding: 110px 0;
        overflow: hidden;
        color: #fff;
        background: #080004;
    }

    .contact-cta .inner {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 60px;
        align-items: center;
    }

    .contact-cta h2 {
        font-size: clamp(38px, 4vw, 70px);
        line-height: 1.12;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .contact-cta p {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
    }

    .contact-cta .main-actions {
        justify-content: flex-start;
    }

    .cta-object {
        width: 100%;
    }

/* =========================================================
   Main Page Motion Details
========================================================= */
.main-eyebrow {
    animation: textRiseIn 0.72s ease both, subtleFloat 4.8s ease-in-out 0.72s infinite;
}

.main-title {
    animation: textRiseIn 0.78s ease 0.12s both;
}

.main-subtitle {
    animation: textRiseIn 0.78s ease 0.24s both;
}

.main-actions {
    animation: textRiseIn 0.78s ease 0.36s both;
}

.main-title .circle-text::after {
    animation: circlePulse 2.7s ease-in-out infinite;
}

.btn,
.company-file-btn,
.quick-item,
.scroll-quick-btn,
.tour-pause-btn,
.tour-step,
.service-preview-text h3 a::after {
    will-change: transform;
}

.text-motion {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.64s ease, transform 0.64s ease;
    transition-delay: var(--text-delay, 0ms);
}

.text-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label.text-motion {
    transform: translateY(10px);
}

.section-label::before {
    animation: labelDotPulse 1.8s ease-in-out infinite;
}

.service-preview-text h3 a,
.portfolio-preview-head .btn,
.contact-cta .btn {
    transition: color 0.22s ease, transform 0.22s ease;
}

.service-preview-text h3 a:hover {
    transform: translateX(4px);
}

.service-text strong,
.service-preview-text strong {
    transition: color 0.24s ease, transform 0.24s ease;
}

.service-icon-item:hover .service-text strong,
.service-preview-card:hover .service-preview-text strong {
    transform: translateX(3px);
}

.quick-item {
    position: relative;
    transition: transform 0.22s ease, color 0.22s ease;
}

.quick-item:hover {
    color: var(--red);
    transform: translateX(-4px);
}

.quick-item:hover .quick-icon {
    transform: rotate(-8deg) scale(1.08);
}

.quick-icon {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-icon-row::before {
    animation: serviceOrbit 9s ease-in-out infinite alternate;
}

.service-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon-item:hover .service-icon {
    transform: translateY(-4px) rotate(-6deg) scale(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 18px 40px rgba(0,0,0,0.34);
}

.service-icon-item:hover .service-text strong {
    color: #fff;
}

.service-preview-card {
    transition: border-color 0.28s ease;
}

.service-preview-card:hover {
    border-color: rgba(230, 0, 18, 0.26);
}

.service-preview-text h3 a::after {
    transition: transform 0.25s ease, background 0.25s ease;
}

.service-preview-card:hover .service-preview-text h3 a::after {
    background: var(--red);
    transform: translateX(4px) rotate(-6deg);
}

.service-preview-image {
    position: relative;
    transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.service-preview-image img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service-preview-card:hover .service-preview-image {
    transform: translateY(-8px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
}

.service-preview-card:hover .service-preview-image img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.stat-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.12);
}

.stat-card p,
.stat-card strong {
    position: relative;
    z-index: 1;
}

.portfolio-preview .portfolio-card {
    border-radius: 18px;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
}

.portfolio-preview .portfolio-card:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.portfolio-preview .portfolio-thumb {
    position: relative;
    border-radius: 18px;
}

.portfolio-preview .portfolio-thumb::after {
    content: attr(data-hover);
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.48);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.16em;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.portfolio-preview .portfolio-card:hover .portfolio-thumb::after {
    opacity: 1;
    transform: scale(1);
}

.contact-cta .inner {
    position: relative;
    z-index: 1;
}

.cta-object {
    animation: subtleFloat 5.2s ease-in-out infinite;
}

@keyframes textRiseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes circlePulse {
    0%, 100% {
        opacity: 0.74;
        transform: translate(-50%, -50%) rotate(-6deg) scale(1);
    }
    50% {
        opacity: 0.98;
        transform: translate(-50%, -50%) rotate(-6deg) scale(1.05);
    }
}

@keyframes labelDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.45);
        opacity: 0.55;
    }
}

@keyframes serviceOrbit {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(12px) scale(0.985);
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-eyebrow,
    .main-title,
    .main-subtitle,
    .main-actions,
    .main-title .circle-text::after,
    .section-label::before,
    .strength-card img,
    .service-icon-row::before,
    .cta-object {
        animation: none;
    }

    .text-motion {
        opacity: 1;
        transform: none;
    }

    .btn,
    .company-file-btn,
    .quick-item,
    .strength-card,
    .service-icon-item,
    .service-icon,
    .service-preview-card,
    .service-preview-image,
    .service-preview-image img,
    .stat-card,
    .text-motion,
    .portfolio-preview .portfolio-card,
    .portfolio-preview .portfolio-thumb::after {
        transition: none;
    }
}

    @media (max-width: 1024px) {
        .main-title {
            font-size: 72px;
        }

        .main-subtitle {
            font-size: 18px;
        }

        .company-file-btn {
            right: 20px;
            bottom: 20px;
            min-width: 210px;
            height: 58px;
            font-size: 15px;
        }

        .service-preview-card,
        .service-preview-card:nth-child(even) {
            grid-template-columns: 1fr;
            gap: 34px;
        }

        .service-preview-card:nth-child(even) .service-preview-text,
        .service-preview-card:nth-child(even) .service-preview-image {
            order: initial;
        }

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

        .portfolio-preview .portfolio-list {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-cta .inner {
            grid-template-columns: 1fr;
        }

        .cta-object {
            max-width: 280px;
        }
    }

    @media (max-width: 640px) {
        .main-visual {
            min-height: 760px;
        }

        .main-title {
            font-size: 50px;
        }

        .main-title .circle-text::after {
            border-width: 4px;
        }

        .main-actions {
            flex-direction: column;
        }

        .main-actions .btn {
            width: 100%;
        }

        .company-file-btn {
            left: 16px;
            right: 16px;
            bottom: 16px;
            width: 50%;
        }

        .stat-grid,
        .portfolio-preview .portfolio-list {
            grid-template-columns: 1fr;
        }

        .portfolio-preview-head {
            display: block;
        }

        .portfolio-preview-head .btn {
            margin-top: 24px;
        }

        .partner-section {
            padding: 82px 0;
        }

        .partner-logo-wrap {
            width: calc(100% - 32px);
            padding: 28px 18px;
            border-radius: 20px;
        }
    }


/* =========================================================
   Migrated inline styles from templates\about.html
========================================================= */
/* =========================================================
       ABOUT PAGE
    ========================================================= */

    .about-visual {
        position: relative;
        min-height: 620px;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #fff;
        background: #050505;
    }

    .about-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 18% 25%, rgba(230, 0, 18, 0.42), transparent 28%),
            radial-gradient(circle at 82% 30%, rgba(51, 92, 255, 0.42), transparent 30%),
            radial-gradient(circle at 50% 90%, rgba(123, 63, 242, 0.38), transparent 34%);
        opacity: 0.9;
    }

    .about-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.25));
    }

    .about-visual-object {
        position: absolute;
        right: 7%;
        bottom: -40px;
        z-index: 1;
        width: min(520px, 42vw);
        opacity: 0.96;
    }

    .about-visual .inner {
        position: relative;
        z-index: 2;
    }

    .about-visual-label {
        display: inline-flex;
        align-items: center;
        height: 34px;
        padding: 0 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
        color: #fff;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(10px);
    }

    .about-visual-title {
        max-width: 900px;
        margin-top: 28px;
        font-size: clamp(48px, 6.5vw, 106px);
        line-height: 1.04;
        font-weight: 950;
        letter-spacing: -0.07em;
    }

    .about-visual-title span {
        color: #ff3341;
    }

    .about-visual-desc {
        max-width: 720px;
        margin-top: 28px;
        font-size: 20px;
        line-height: 1.75;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.78);
    }

    .about-summary {
        padding: 120px 0;
        background: #fff;
    }

    .about-summary-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 80px;
        align-items: center;
    }

    .about-summary-title {
        font-size: clamp(38px, 4vw, 68px);
        line-height: 1.16;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .about-summary-title em {
        font-style: normal;
        color: var(--red);
    }

    .about-summary-desc {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.8;
        color: var(--gray-700);
    }

    .about-summary-card {
        position: relative;
        padding: 42px;
        overflow: hidden;
        border-radius: 30px;
        color: #fff;
        background: linear-gradient(135deg, #111 0%, #071B4D 52%, #335CFF 100%);
        box-shadow: var(--shadow-card);
    }

    .about-summary-card h3 {
        font-size: 34px;
        line-height: 1.25;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .about-summary-card p {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.78);
    }

    .about-summary-card-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 34px;
    }

    .about-summary-card-list li {
        min-height: 92px;
        padding: 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
    }

    .about-summary-card-list strong {
        display: block;
        font-size: 22px;
        font-weight: 950;
    }

    .about-summary-card-list span {
        display: block;
        margin-top: 8px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .value-section {
        padding: 110px 0;
        background: #f7f8fb;
    }

    .value-head {
        text-align: center;
    }

    .value-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        margin-top: 56px;
    }

    .value-card {
        min-height: 280px;
        padding: 34px;
        border-radius: 26px;
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    .value-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
        height: 62px;
        border-radius: 20px;
        color: #fff;
        font-size: 24px;
        background: linear-gradient(135deg, #335CFF, #7B3FF2);
    }

    .value-card h3 {
        margin-top: 28px;
        font-size: 28px;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .value-card p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
        color: var(--gray-700);
    }

    .location-section {
        padding: 120px 0;
        background: #fff;
    }

    .location-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
        margin-bottom: 46px;
    }

    .location-info {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 34px;
        align-items: stretch;
    }

    .map-box {
        overflow: hidden;
        min-height: 440px;
        border-radius: 30px;
        background: #e5e7eb;
        box-shadow: var(--shadow-card);
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        min-height: 440px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        background:
            linear-gradient(135deg, rgba(7, 27, 77, 0.92), rgba(51, 92, 255, 0.78)),
            url("{{ url_for('static', filename='image/about/map_placeholder.png') }}") center/cover no-repeat;
    }

    .map-placeholder i {
        font-size: 48px;
        margin-bottom: 18px;
    }

    .map-placeholder strong {
        font-size: 28px;
        font-weight: 950;
    }

    .map-placeholder span {
        margin-top: 8px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.75);
    }

    .location-card {
        padding: 40px;
        border-radius: 30px;
        background: #f7f8fb;
    }

    .location-card h3 {
        font-size: 30px;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .location-list {
        margin-top: 30px;
    }

    .location-list li {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 18px;
        padding: 20px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .location-list li:first-child {
        border-top: 1px solid #e5e7eb;
    }

    .location-list strong {
        font-size: 15px;
        font-weight: 900;
        color: var(--navy);
    }

    .location-list span {
        font-size: 16px;
        line-height: 1.6;
        color: var(--gray-700);
    }

    .tab-section {
        padding: 120px 0;
        background: #050505;
        color: #fff;
    }

    .tab-head {
        text-align: center;
    }

    .about-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 42px;
    }

    .about-tab-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 150px;
        height: 52px;
        padding: 0 24px;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.58);
        background: rgba(255, 255, 255, 0.1);
        transition: 0.25s ease;
    }

    .about-tab-btn.active {
        color: #000;
        background: #fff;
    }

    .about-tab-panel {
        display: none;
        margin-top: 60px;
    }

    .about-tab-panel.active {
        display: block;
    }
    .history-month-item {
        margin-bottom: 24px;
    }

    .history-month-item h3 {
        margin-bottom: 8px;
    }

    .history-month-item p {
        white-space: pre-line;
    }

    .history-list {
        max-width: 860px;
        margin: 0 auto;
        position: relative;
    }

    .history-list::before {
        content: "";
        position: absolute;
        left: 120px;
        top: 8px;
        bottom: 8px;
        width: 1px;
        background: rgba(255, 255, 255, 0.18);
    }

    .history-item {
        position: relative;
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 44px;
        padding: 28px 0;
    }

    .history-year {
        font-size: 28px;
        font-weight: 950;
        color: #ff3341;
        letter-spacing: -0.04em;
    }

    .history-content {
        position: relative;
        padding-left: 34px;
    }

    .history-content::before {
        content: "";
        position: absolute;
        left: -49px;
        top: 9px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ff3341;
        box-shadow: 0 0 0 8px rgba(230, 0, 18, 0.16);
    }

    .history-content h3 {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -0.035em;
    }

    .history-content p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.68);
    }

    .org-box {
        max-width: 1180px;
        margin: 0 auto;
        padding: 50px;
        border-radius: 20px;
        background: #fff;
        color: #111;
    }

    .org-title {
        text-align: center;
        font-size: 32px;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .org-chart {
        margin-top: 34px;
    }

    .org-top {
        position: relative;
        display: grid;
        justify-items: center;
        margin-bottom: 28px;
        padding-bottom: 18px;
    }

    .org-ceo {
        width: 150px;
        height: 54px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        font-weight: 900;
        background: #000;
    }

    .org-line {
        width: 1px;
        height: 90px;
        margin: 0 auto;
        background: #111;
    }

    .org-executive {
        position: absolute;
        left: calc(50% + 22px);
        top: 72px;
        font-size: 16px;
        font-weight: 800;
        color: #111;
    }

    .org-table-wrap {
        overflow-x: auto;
        border-top: 1px solid #111;
        border-bottom: 1px solid #d9d9d9;
    }

    .org-table {
        width: 100%;
        min-width: 820px;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .org-table th,
    .org-table td {
        padding: 22px 28px;
        border-bottom: 1px solid #d9d9d9;
        vertical-align: middle;
    }

    .org-table tr:last-child th,
    .org-table tr:last-child td {
        border-bottom: 0;
    }

    .org-table th {
        width: 30%;
        text-align: center;
        font-size: 16px;
        font-weight: 900;
        background: #fff;
    }

    .org-table .org-business {
        width: 30%;
        text-align: center;
        font-size: 15px;
        font-weight: 800;
        background: #f4f4f4;
    }

    .org-table .org-detail {
        width: 40%;
        font-size: 14px;
        line-height: 1.9;
        color: var(--gray-700);
    }

    @media (max-width: 1024px) {
        .about-summary-grid,
        .location-info {
            grid-template-columns: 1fr;
        }

        .value-grid {
            grid-template-columns: 1fr;
        }

        .about-visual-object {
            opacity: 0.42;
            right: -60px;
            width: 460px;
        }

        .location-head {
            display: block;
        }

        .location-head .section-desc {
            margin-top: 20px;
        }

        .org-box {
            overflow: hidden;
        }

        .org-table-wrap {
            margin-right: -18px;
            padding-right: 18px;
        }
    }

    @media (max-width: 640px) {
        .about-visual {
            min-height: 540px;
        }

        .about-visual-title {
            font-size: 46px;
        }

        .about-visual-desc {
            font-size: 16px;
        }

        .about-summary,
        .value-section,
        .location-section,
        .tab-section {
            padding: 82px 0;
        }

        .about-summary-card,
        .location-card,
        .org-box {
            padding: 28px 22px;
            border-radius: 22px;
        }

        .about-summary-card-list {
            grid-template-columns: 1fr;
        }

        .location-list li {
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .about-tabs {
            flex-direction: column;
        }

        .about-tab-btn {
            width: 100%;
        }

        .history-list::before {
            left: 0;
        }

        .history-item {
            grid-template-columns: 1fr;
            gap: 12px;
            padding-left: 28px;
        }

        .history-content {
            padding-left: 0;
        }

        .history-content::before {
            left: -34px;
        }
    }


/* =========================================================
   Migrated inline styles from templates\contact.html
========================================================= */
.contact-visual {
        position: relative;
        min-height: 460px;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #fff;
        background:
            radial-gradient(circle at 82% 24%, rgba(230, 0, 18, 0.48), transparent 30%),
            radial-gradient(circle at 18% 78%, rgba(51, 92, 255, 0.42), transparent 34%),
            #050505;
    }

    .contact-visual-title {
        font-size: clamp(44px, 6vw, 92px);
        line-height: 1.06;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .contact-visual-desc {
        max-width: 720px;
        margin-top: 24px;
        font-size: 19px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.76);
    }

    .contact-section {
        padding: 110px 0 130px;
        background: #fff;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 0.82fr 1.18fr;
        gap: 64px;
        align-items: flex-start;
    }

    .contact-info {
        position: sticky;
        top: calc(var(--header-height) + 34px);
    }

    .contact-info h3 {
        font-size: 34px;
        line-height: 1.25;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .contact-info p {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.75;
        color: var(--gray-700);
    }

    .contact-list {
        display: grid;
        gap: 14px;
        margin-top: 34px;
    }

    .contact-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 58px;
        padding: 14px 18px;
        border-radius: 18px;
        background: #f7f8fb;
        font-size: 15px;
        font-weight: 800;
    }

    .contact-list i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: #fff;
        background: #000;
    }

    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 42px;
        }

        .contact-info {
            position: static;
        }
    }

    @media (max-width: 640px) {
        .contact-visual {
            min-height: 390px;
        }

        .contact-section {
            padding: 78px 0;
        }

        .contact-info h3 {
            font-size: 28px;
        }
    }

/* =========================================================
   Migrated inline styles from templates\portfolio.html
========================================================= */
.portfolio-visual {
        min-height: 460px;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        color: #fff;
        background:
            radial-gradient(circle at 84% 24%, rgba(230, 0, 18, 0.42), transparent 30%),
            radial-gradient(circle at 16% 76%, rgba(51, 92, 255, 0.42), transparent 34%),
            #050505;
    }

    .portfolio-visual-title {
        margin-top: 18px;
        font-size: clamp(44px, 6vw, 92px);
        line-height: 1.06;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .portfolio-visual-desc {
        max-width: 720px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.76);
    }

    .portfolio-section {
        padding: 100px 0 130px;
        background: #fff;
    }

    .portfolio-filter {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 44px;
    }

    .portfolio-filter-btn {
        height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        color: var(--gray-700);
        background: #f1f3f7;
        font-size: 14px;
        font-weight: 900;
    }

    .portfolio-filter-btn.active {
        color: #fff;
        background: #000;
    }

    .portfolio-section .portfolio-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .portfolio-item.is-hidden {
        display: none;
    }

    .portfolio-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }

    .portfolio-more-wrap.is-hidden {
        display: none;
    }

    .portfolio-empty.is-hidden {
        display: none;
    }

    .portfolio-more-btn {
        min-width: 164px;
        height: 54px;
        padding: 0 28px;
        border: 1px solid #111;
        border-radius: 999px;
        color: #111;
        background: #fff;
        font-size: 15px;
        font-weight: 900;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .portfolio-more-btn:hover {
        color: #fff;
        background: #111;
    }

    .portfolio-section .portfolio-card {
        display: block;
        width: 100%;
        padding: 0;
        border: 0;
        color: inherit;
        background: transparent;
        text-align: left;
        cursor: pointer;
    }

    .portfolio-section .portfolio-thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: #f1f3f7;
    }

    .portfolio-section .portfolio-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .portfolio-section .portfolio-card:hover .portfolio-thumb img {
        transform: scale(1.06);
    }

    .portfolio-section .portfolio-thumb::after {
        content: attr(data-hover);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        color: #fff;
        background: rgba(0, 0, 0, 0.64);
        font-size: 18px;
        line-height: 1.5;
        font-weight: 900;
        text-align: center;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .portfolio-section .portfolio-card:hover .portfolio-thumb::after {
        opacity: 1;
    }

    .portfolio-section .portfolio-info {
        padding-top: 20px;
        display: grid;
        grid-template-rows: auto auto minmax(78px, auto);
        align-content: start;
    }

    .portfolio-section .portfolio-meta {
        min-height: 32px;
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 6px;
    }

    .portfolio-section .portfolio-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .portfolio-section .portfolio-tag,
    .portfolio-section .portfolio-badge {
        display: inline-flex;
        align-items: center;
        height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 900;
    }

    .portfolio-section .portfolio-tag {
        color: #fff;
        background: #000;
    }

    .portfolio-section .portfolio-badge {
        color: #ababab;
        background: #f5f5f5;
    }

    .portfolio-section .portfolio-info h3 {
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.35;
        font-weight: 950;
        letter-spacing: -0.045em;
        min-height: 66px;
    }

    .portfolio-section .portfolio-info p {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.7;
        color: var(--gray-700);
        min-height: 78px;
    }

    .portfolio-empty {
        padding: 80px 20px;
        text-align: center;
        border-radius: 8px;
        background: #f7f8fb;
    }

    .is-portfolio-media-open {
        overflow: hidden;
    }

    .portfolio-media-modal[hidden] {
        display: none;
    }

    .portfolio-media-modal {
        position: fixed;
        inset: 0;
        z-index: 1300;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #000;
    }

    .portfolio-media-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.94);
    }

    .portfolio-media-modal__dialog {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-rows: 74px minmax(0, 1fr);
        width: 100vw;
        height: 100vh;
        height: 100svh;
        overflow: hidden;
    }

    .portfolio-media-modal__top {
        position: relative;
        z-index: 4;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto 46px;
        align-items: center;
        gap: 18px;
        min-height: 74px;
        padding: 14px 24px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    }

    .portfolio-media-modal__top strong {
        overflow: hidden;
        font-size: 16px;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .portfolio-media-modal__top span {
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        font-weight: 800;
    }

    .portfolio-media-modal__stage {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        padding: 0 84px 44px;
        touch-action: pan-y;
        user-select: none;
    }

    .portfolio-media-modal__stage img,
    .portfolio-media-modal__stage video {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        -webkit-user-drag: none;
    }

    .portfolio-media-modal__stage video {
        width: min(100%, 1180px);
        background: #000;
    }

    .portfolio-media-modal__close,
    .portfolio-media-modal__nav {
        position: absolute;
        z-index: 4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(10px);
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .portfolio-media-modal__close:hover,
    .portfolio-media-modal__nav:hover {
        background: rgba(255, 255, 255, 0.26);
        transform: scale(1.04);
    }

    .portfolio-media-modal__close {
        position: static;
    }

    .portfolio-media-modal__nav.prev {
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .portfolio-media-modal__nav.next {
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .portfolio-media-modal__nav.prev:hover,
    .portfolio-media-modal__nav.next:hover {
        transform: translateY(-50%) scale(1.04);
    }

    @media (max-width: 1024px) {
        .portfolio-section .portfolio-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .portfolio-section {
            padding: 78px 0;
        }

        .portfolio-section .portfolio-list {
            grid-template-columns: 1fr;
        }

        .portfolio-media-modal__dialog {
            grid-template-rows: 64px minmax(0, 1fr);
        }

        .portfolio-media-modal__top {
            grid-template-columns: minmax(0, 1fr) auto 42px;
            min-height: 64px;
            padding: 10px 14px;
        }

        .portfolio-media-modal__stage {
            padding: 0 0 72px;
        }

        .portfolio-media-modal__close,
        .portfolio-media-modal__nav {
            width: 42px;
            height: 42px;
        }

        .portfolio-media-modal__nav.prev {
            top: auto;
            bottom: 18px;
            left: calc(50% - 58px);
            transform: none;
        }

        .portfolio-media-modal__nav.next {
            top: auto;
            right: calc(50% - 58px);
            bottom: 18px;
            transform: none;
        }

        .portfolio-media-modal__nav.prev:hover,
        .portfolio-media-modal__nav.next:hover {
            transform: scale(1.04);
        }
    }


/* =========================================================
   Migrated inline styles from templates\portfolio_detail.html
========================================================= */
.portfolio-detail-visual {
        min-height: 430px;
        padding-top: var(--header-height);
        display: flex;
        align-items: center;
        color: #fff;
        background:
            radial-gradient(circle at 78% 18%, rgba(230, 0, 18, 0.44), transparent 30%),
            #050505;
    }

    .portfolio-detail-title {
        margin-top: 18px;
        font-size: 40px;
        line-height: 1.1;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .portfolio-detail-desc {
        max-width: 720px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.72);
    }

    .portfolio-detail-section {
        padding: 110px 0 130px;
        background: #fff;
    }

    .portfolio-detail-thumb {
        overflow: hidden;
        background: #f7f8fb;
        box-shadow: var(--shadow-card);
        width: 50%;
        margin: auto;
    }

    .portfolio-detail-thumb img {
        width: 100%;
        object-fit: cover;
    }

    .portfolio-gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        width: min(1080px, 100%);
        margin: 0 auto;
    }

    .portfolio-gallery-item {
        position: relative;
        overflow: hidden;
        min-height: 260px;
        padding: 0;
        border: 0;
        border-radius: 18px;
        background: #f7f8fb;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
        cursor: zoom-in;
    }

    .portfolio-gallery-item.is-featured {
        grid-column: 1 / -1;
        min-height: 520px;
    }

    .portfolio-gallery-item img {
        width: 100%;
        height: 100%;
        min-height: inherit;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .portfolio-gallery-item:hover img {
        transform: scale(1.035);
    }

    .is-portfolio-gallery-open {
        overflow: hidden;
    }

    .portfolio-gallery-modal[hidden] {
        display: none;
    }

    .portfolio-gallery-modal {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: #fff;
        background: #000;
    }

    .portfolio-gallery-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
    }

    .portfolio-gallery-modal__dialog {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-rows: 74px minmax(0, 1fr);
        width: 100vw;
        height: 100vh;
        height: 100svh;
        overflow: hidden;
    }

    .portfolio-gallery-modal__top {
        position: relative;
        z-index: 4;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto 46px;
        align-items: center;
        gap: 18px;
        min-height: 74px;
        padding: 14px 24px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    }

    .portfolio-gallery-modal__top strong {
        overflow: hidden;
        font-size: 16px;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .portfolio-gallery-modal__top span {
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        font-weight: 800;
    }

    .portfolio-gallery-modal__stage {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 0;
        padding: 0 84px 44px;
        touch-action: pan-y;
        user-select: none;
    }

    .portfolio-gallery-modal__dialog img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        -webkit-user-drag: none;
    }

    .portfolio-gallery-modal__close,
    .portfolio-gallery-modal__nav {
        position: absolute;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(10px);
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .portfolio-gallery-modal__close:hover,
    .portfolio-gallery-modal__nav:hover {
        background: rgba(255, 255, 255, 0.26);
        transform: scale(1.04);
    }

    .portfolio-gallery-modal__close {
        position: static;
    }

    .portfolio-gallery-modal__nav.prev {
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .portfolio-gallery-modal__nav.next {
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .portfolio-gallery-modal__nav.prev:hover,
    .portfolio-gallery-modal__nav.next:hover {
        transform: translateY(-50%) scale(1.04);
    }

    .portfolio-body {
        width: min(860px, 100%);
        margin: 64px auto 0;
        font-size: 17px;
        line-height: 1.85;
        color: var(--gray-700);
    }

    .portfolio-body a {
        color: var(--red);
        font-weight: 800;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .portfolio-body img {
        max-width: 100%;
        height: auto;
    }

.portfolio-body p[style*="text-align: center"] img,
.portfolio-body div[style*="text-align: center"] img,
.portfolio-body p > img:only-child:not(.note-float-left):not(.note-float-right),
.portfolio-body img.note-float-center,
.portfolio-body img[style*="margin-left: auto"],
.portfolio-body img[style*="margin: 0px auto"] {
        display: block;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .portfolio-body img.note-float-left {
        float: left;
        margin: 8px 24px 18px 0;
    }

    .portfolio-body img.note-float-right {
        float: right;
        margin: 8px 0 18px 24px;
    }

    .portfolio-body::after {
        content: "";
        display: block;
        clear: both;
    }

    .portfolio-body h2 {
        margin-bottom: 18px;
        color: #111;
        font-size: 34px;
        line-height: 1.3;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .portfolio-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 64px;
    }

    @media (max-width: 768px) {
        .portfolio-gallery {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .portfolio-gallery-item,
        .portfolio-gallery-item.is-featured {
            grid-column: auto;
            min-height: 320px;
        }

        .portfolio-gallery-modal {
            padding: 0;
        }

        .portfolio-gallery-modal__dialog {
            grid-template-rows: 64px minmax(0, 1fr);
            height: 100vh;
            height: 100svh;
        }

        .portfolio-gallery-modal__top {
            grid-template-columns: minmax(0, 1fr) auto 42px;
            min-height: 64px;
            padding: 10px 14px;
        }

        .portfolio-gallery-modal__stage {
            padding: 0 0 72px;
        }

        .portfolio-gallery-modal__close,
        .portfolio-gallery-modal__nav {
            width: 42px;
            height: 42px;
        }

        .portfolio-gallery-modal__close {
            position: static;
        }

        .portfolio-gallery-modal__nav.prev {
            top: auto;
            bottom: 18px;
            left: calc(50% - 58px);
            transform: none;
        }

        .portfolio-gallery-modal__nav.next {
            top: auto;
            right: calc(50% - 58px);
            bottom: 18px;
            transform: none;
        }

        .portfolio-gallery-modal__nav.prev:hover,
        .portfolio-gallery-modal__nav.next:hover {
            transform: scale(1.04);
        }
    }


.portfolio-carousel-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.portfolio-carousel-head {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-carousel-head .section-label {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #3167FB;
}

.portfolio-carousel-head h2 {
    margin-bottom: 14px;
    font-size: 38px;
    font-weight: 800;
    color: #111;
}

.portfolio-carousel-head p {
    margin-bottom: 0;
    font-size: 17px;
    color: #666;
}

.portfolio-carousel .carousel-inner {
    padding: 10px 40px 40px;
}

.portfolio-carousel .portfolio-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-carousel .portfolio-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.portfolio-carousel .portfolio-card-img {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #eee;
}

.portfolio-carousel .portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-carousel .portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.06);
}

.portfolio-carousel .portfolio-card-body {
    padding: 28px 26px 30px;
}

.portfolio-carousel .portfolio-card-body h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
}

.portfolio-carousel .portfolio-card-body p {
    min-height: 52px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.portfolio-carousel .portfolio-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #3167FB;
}

.portfolio-carousel .carousel-control-prev,
.portfolio-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 42%;
    border-radius: 50%;
    background: #111;
    opacity: 1;
}

.portfolio-carousel .carousel-control-prev {
    left: 0;
}

.portfolio-carousel .carousel-control-next {
    right: 0;
}

.portfolio-carousel .carousel-control-prev-icon,
.portfolio-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    .portfolio-carousel-section {
        padding: 70px 0;
    }

    .portfolio-carousel-head h2 {
        font-size: 30px;
    }

    .portfolio-carousel .portfolio-card-img {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .portfolio-carousel-section {
        padding: 60px 0;
    }

    .portfolio-carousel .carousel-inner {
        padding: 0 20px 30px;
    }

    .portfolio-carousel-head {
        margin-bottom: 34px;
    }

    .portfolio-carousel-head h2 {
        font-size: 26px;
    }

    .portfolio-carousel-head p {
        font-size: 15px;
    }

    .portfolio-carousel .portfolio-card-body {
        padding: 22px;
    }

    .portfolio-carousel .portfolio-card-body h3 {
        font-size: 19px;
    }

    .portfolio-carousel .portfolio-card-body p {
        min-height: auto;
    }

    .portfolio-carousel .carousel-control-prev,
    .portfolio-carousel .carousel-control-next {
        top: auto;
        bottom: -10px;
        width: 38px;
        height: 38px;
    }

    .portfolio-carousel .carousel-control-prev {
        left: calc(50% - 46px);
    }

    .portfolio-carousel .carousel-control-next {
        right: calc(50% - 46px);
    }
}

/* =========================================================
   Main Product Tour
========================================================= */

.product-tour-section {
    --tour-blue: #2f8df5;
    --tour-navy: #173b70;
    --tour-duration: 4200ms;
    padding: 120px 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(47, 141, 245, 0.18), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #eef6ff 48%, #ffffff 100%);
}

.product-tour-head {
    text-align: center;
}

.tour-kicker {
    display: block;
    color: var(--tour-blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.22em;
}

.product-tour-head h2 {
    margin-top: 12px;
    color: #07111f;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.product-tour-head h2 strong {
    color: #7d8da3;
}

.tour-screen-wrap {
    margin-top: 78px;
}

.tour-browser {
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #d8e2ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 26px 70px rgba(23, 59, 112, 0.12);
    backdrop-filter: blur(14px);
}

.tour-browser-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-bottom: 1px solid #d8e2ef;
    background: #f3f7fb;
}

.tour-browser-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c6d0db;
}

.tour-browser-top em {
    margin-left: 6px;
    color: #9aa8b7;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.tour-screen-stage {
    position: relative;
    min-height: 50vh;
}

.tour-screen {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 22px;
    padding: 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.tour-screen.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tour-quote-card,
.tour-option-card,
.tour-side-panel,
.tour-dashboard-card,
.tour-dashboard-grid div,
.tour-campaign-list article,
.tour-report-card {
    border: 1px solid #d9e4f1;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
}

.tour-quote-card {
    padding: 24px;
}

.tour-quote-card span,
.tour-dashboard-card span,
.tour-dashboard-grid span,
.tour-report-card span {
    display: block;
    color: #8a9bae;
    font-size: 13px;
    font-weight: 900;
}

.tour-quote-card strong {
    display: block;
    margin-top: 8px;
    color: var(--tour-navy);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: -0.045em;
}

.tour-quote-card strong em {
    color: #8a9bae;
    font-size: 15px;
    font-style: normal;
}

.tour-quote-card small {
    display: block;
    margin-top: 8px;
    color: #8a9bae;
    font-size: 12px;
    font-weight: 800;
}

.tour-price-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #e5edf6;
}

.tour-price-list p,
.tour-option-card p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7c8ca0;
    font-size: 13px;
    font-weight: 800;
}

.tour-price-list b,
.tour-option-card b {
    color: #253b56;
}

.tour-option-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.tour-option-card strong {
    color: #59708c;
    font-size: 14px;
    font-weight: 950;
}

.tour-option-card p {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #dbe6f2;
    border-radius: 9px;
    background: #fff;
}

.tour-option-card button {
    height: 46px;
    border-radius: 9px;
    color: #fff;
    background: var(--tour-blue);
    font-size: 14px;
    font-weight: 950;
}

.tour-map-panel {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(47, 141, 245, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(47, 141, 245, 0.12) 1px, transparent 1px),
        #f7fbff;
    background-size: 42px 42px;
}

.tour-map-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--tour-blue);
    box-shadow: 0 10px 24px rgba(47, 141, 245, 0.38);
}

.dot-1 { left: 20%; top: 35%; }
.dot-2 { left: 48%; top: 22%; }
.dot-3 { left: 66%; top: 58%; }
.dot-4 { left: 36%; top: 70%; }

.tour-side-panel {
    padding: 34px;
}

.tour-side-panel strong {
    color: #07111f;
    font-size: 28px;
    font-weight: 950;
}

.tour-side-panel p {
    margin-top: 14px;
    color: #66758a;
    font-size: 16px;
    line-height: 1.7;
}

.tour-side-panel ul {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.tour-side-panel li {
    padding: 13px 14px;
    border-radius: 10px;
    color: #173b70;
    background: #edf6ff;
    font-size: 14px;
    font-weight: 900;
}

.tour-dashboard-card.large {
    padding: 34px;
}

.tour-dashboard-card strong,
.tour-dashboard-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--tour-navy);
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.tour-chart-line {
    position: relative;
    height: 200px;
    margin-top: 34px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(47, 141, 245, 0.18), transparent),
        linear-gradient(135deg, transparent 0 18%, var(--tour-blue) 18% 21%, transparent 21% 38%, var(--tour-blue) 38% 41%, transparent 41% 62%, var(--tour-blue) 62% 65%, transparent 65%);
}

.tour-dashboard-grid {
    display: grid;
    gap: 16px;
}

.tour-dashboard-grid div {
    padding: 24px;
}

.tour-dashboard-grid strong {
    font-size: 30px;
}

.tour-campaign-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    align-content: center;
}

.tour-campaign-list article {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 72px;
    padding: 0 22px;
}

.tour-campaign-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: var(--tour-blue);
    font-size: 13px;
    font-weight: 950;
}

.tour-campaign-list strong {
    color: #172033;
    font-size: 18px;
    font-weight: 950;
}

.tour-campaign-list em {
    min-width: 74px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--tour-blue);
    background: #edf6ff;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.tour-report-card {
    grid-column: 1 / -1;
    padding: 38px;
}

.tour-report-card h3 {
    margin-top: 12px;
    color: #07111f;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.tour-report-card p {
    margin-top: 12px;
    color: #66758a;
    font-size: 16px;
}

.tour-report-bars {
    display: flex;
    align-items: end;
    gap: 18px;
    height: 67%;
    margin-top: 36px;
}

.tour-report-bars i {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--tour-blue), #9fd0ff);
}

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: min(1180px, 100%);
    margin: 64px auto 0;
}

.tour-caption span {
    color: var(--tour-blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.tour-caption h3 {
    margin-top: 8px;
    color: #07111f;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.tour-caption p {
    margin-top: 8px;
    color: #66758a;
    font-size: 16px;
}

.tour-pause-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ccd8e6;
    border-radius: 50%;
    color: #7b8ca0;
    background: #fff;
}

.tour-step-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    width: min(1180px, 100%);
    margin: 22px auto 0;
}

.tour-step {
    position: relative;
    min-height: 82px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid #d4dfeb;
    border-radius: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.76);
    transition: 0.25s ease;
}

.tour-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    border-radius: 6px;
    color: #98a7b8;
    background: #edf2f7;
    font-size: 10px;
    font-weight: 950;
}

.tour-step strong {
    display: block;
    margin-top: 14px;
    color: #66758a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.tour-step i {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #e4ebf3;
}

.tour-step i::after {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: var(--tour-blue);
}

.tour-step.is-active {
    border-color: var(--tour-blue);
    background: #e8f4ff;
    box-shadow: 0 18px 44px rgba(47, 141, 245, 0.18);
}

.tour-step.is-active span {
    color: #fff;
    background: var(--tour-blue);
}

.tour-step.is-active strong {
    color: var(--tour-blue);
}

.tour-step.is-active i::after {
    animation: tourProgress var(--tour-duration) linear forwards;
}

.product-tour-section.is-paused .tour-step.is-active i::after {
    animation-play-state: paused;
}

@keyframes tourProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .tour-screen-stage {
        min-height: 520px;
    }

    .tour-screen {
        grid-template-columns: 1fr;
    }

    .tour-step-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* =========================================================
   Product Tour - Mobile Compact
========================================================= */

@media (max-width: 640px) {
    .product-tour-section {
        padding: 64px 0 58px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .product-tour-head h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .tour-kicker {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .tour-screen-wrap {
        margin-top: 24px;
    }

    .tour-browser {
        border-radius: 14px;
    }

    .tour-browser-top {
        height: 30px;
        padding: 0 12px;
    }

    .tour-browser-top span {
        width: 6px;
        height: 6px;
    }

    .tour-browser-top em {
        max-width: 210px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 10px;
    }

    .tour-screen-stage {
        min-height: 245px;
    }

    .tour-screen {
        gap: 10px;
        padding: 12px;
    }

    .tour-quote-card,
    .tour-option-card,
    .tour-side-panel,
    .tour-dashboard-card,
    .tour-dashboard-grid div,
    .tour-campaign-list article,
    .tour-report-card {
        border-radius: 10px;
    }

    .tour-quote-card,
    .tour-option-card,
    .tour-side-panel,
    .tour-dashboard-card.large,
    .tour-report-card {
        padding: 14px;
    }

    .tour-quote-card span,
    .tour-dashboard-card span,
    .tour-dashboard-grid span,
    .tour-report-card span {
        font-size: 10px;
    }

    .tour-quote-card strong {
        margin-top: 5px;
        font-size: 22px;
    }

    .tour-quote-card small {
        margin-top: 4px;
        font-size: 10px;
    }

    .tour-price-list {
        gap: 6px;
        margin-top: 12px;
        padding-top: 10px;
    }

    .tour-price-list p,
    .tour-option-card p {
        font-size: 10px;
    }

    .tour-option-card {
        gap: 6px;
    }

    .tour-option-card strong {
        font-size: 11px;
    }

    .tour-option-card p {
        min-height: 28px;
        padding: 0 9px;
        border-radius: 7px;
    }

    .tour-option-card button {
        height: 30px;
        border-radius: 7px;
        font-size: 11px;
    }

    .tour-map-panel {
        min-height: 118px;
        border-radius: 10px;
        background-size: 28px 28px;
    }

    .tour-map-dot {
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .tour-side-panel strong {
        font-size: 20px;
    }

    .tour-side-panel p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .tour-side-panel ul {
        gap: 6px;
        margin-top: 10px;
    }

    .tour-side-panel li {
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 11px;
    }

    .tour-dashboard-card strong {
        margin-top: 6px;
        font-size: 26px;
    }

    .tour-chart-line {
        height: 58px;
        margin-top: 16px;
        border-radius: 10px;
    }

    .tour-dashboard-grid {
        gap: 8px;
    }

    .tour-dashboard-grid div {
        padding: 12px;
    }

    .tour-dashboard-grid strong {
        margin-top: 5px;
        font-size: 19px;
    }

    .tour-campaign-list {
        gap: 8px;
    }

    .tour-campaign-list article {
        grid-template-columns: 30px 1fr auto;
        gap: 8px;
        min-height: 48px;
        padding: 0 10px;
    }

    .tour-campaign-list span {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .tour-campaign-list strong {
        font-size: 12px;
        line-height: 1.35;
    }

    .tour-campaign-list em {
        min-width: 48px;
        height: 22px;
        font-size: 9px;
    }

    .tour-report-card h3 {
        margin-top: 6px;
        font-size: 22px;
    }

    .tour-report-card p {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.45;
    }

    .tour-report-bars {
        height: 70px;
        gap: 8px;
        margin-top: 18px;
    }

    .tour-bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
        margin-top: 18px;
    }

    .tour-caption span {
        font-size: 10px;
    }

    .tour-caption h3 {
        margin-top: 4px;
        font-size: 18px;
    }

    .tour-caption p {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.45;
    }

    .tour-pause-btn {
        width: 34px;
        height: 34px;
        margin-top: 0;
        font-size: 11px;
    }

    .tour-step-list {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
        margin-top: 14px;
    }

    .tour-step {
        min-height: 46px;
        padding: 7px 5px;
        border-radius: 8px;
    }

    .tour-step span {
        min-width: 17px;
        height: 15px;
        border-radius: 4px;
        font-size: 8px;
    }

    .tour-step strong {
        display: none;
    }

    .tour-step i {
        left: 5px;
        right: 5px;
        bottom: 5px;
        height: 3px;
    }
}
/* =========================================================
   Scroll Quick Button
========================================================= */

.scroll-quick {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 950;
}

.scroll-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: #fff;
    background: #000;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, background 0.22s ease;
}

.scroll-quick-btn:hover {
    color: #fff;
    background: var(--red);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .scroll-quick {
        right: 18px;
        bottom: 18px;
    }

    .scroll-quick-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    :root {
        --header-height: 72px;
    }

    .gnb {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo img {
        max-width: 104px;
        max-height: 34px;
    }

    .section {
        padding: 90px 0;
    }
}

/* =========================================================
   BLACK AD - Online Ad Page
========================================================= */

.onad-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.onad-label,
.onad-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 15px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.onad-kicker {
    color: var(--onad-blue);
    background: rgba(51, 92, 255, 0.1);
}

.onad-section-head {
    max-width: 760px;
}

.onad-section-head.light h3,
.onad-section-head.light p,
.onad-center-head.light .section-title,
.onad-center-head.light .section-desc {
    color: #fff;
}

.onad-section-head h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4.3vw, 64px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.onad-section-head p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--onad-gray);
}

.onad-center-head {
    text-align: center;
}

.onad-center-head .section-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero */
.onad-hero {
    position: relative;
    min-height: 760px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: #fff;
    background: var(--onad-deep);
}

.onad-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(51, 92, 255, 0.55), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(123, 63, 242, 0.42), transparent 28%),
        radial-gradient(circle at 50% 88%, rgba(47, 211, 255, 0.28), transparent 35%),
        linear-gradient(135deg, #03040c 0%, #071b4d 58%, #150820 100%);
}

.onad-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12)),
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: auto, 54px 54px, 54px 54px;
}

.onad-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 70px;
    align-items: center;
}

.onad-hero-copy h2 {
    margin-top: 28px;
    font-size: clamp(40px, 4vw, 85px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.onad-hero-copy h2 em {
    font-style: normal;
    color: var(--onad-sky);
}

.onad-hero-copy p {
    max-width: 760px;
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
}

.onad-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.onad-hero .btn-line,
.onad-cta-section .btn-line {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.onad-hero .btn-line:hover,
.onad-cta-section .btn-line:hover {
    color: #000;
    background: #fff;
}

.onad-hero-object {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onad-hero-object::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(47, 211, 255, 0.15);
    filter: blur(12px);
}

.onad-hero-object img {
    position: relative;
    z-index: 2;
    width: min(540px, 100%);
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.34));
}

/* Problem */
.onad-problem-section {
    padding: 120px 0 110px;
    background: #fff;
}

.onad-problem-list {
    display: grid;
    gap: 16px;
    width: min(880px, 100%);
    margin: 48px auto 0;
}

.onad-problem-pill {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #071b4d, #335cff);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 16px 38px rgba(51, 92, 255, 0.16);
}

.onad-problem-pill:nth-child(2), .onad-problem-pill:nth-child(4) {
    margin-left: 70px;
}

.onad-problem-pill:nth-child(1), .onad-problem-pill:nth-child(3) {
    margin-right: 70px;
}

/* Channel */
.onad-channel-section {
    padding: 120px 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(51, 92, 255, 0.36), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(123, 63, 242, 0.32), transparent 34%),
        linear-gradient(180deg, #071b4d 0%, #050816 100%);
}

.onad-channel-section .onad-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.onad-channel-section .onad-kicker,
.onad-funnel-section .onad-kicker,
.onad-process-section .onad-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.onad-channel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 20px;
    margin-top: 54px;
}

.onad-channel-card {
    min-height: 230px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.onad-channel-card.large {
    grid-row: span 2;
    min-height: 480px;
    background:
        radial-gradient(circle at 80% 18%, rgba(47, 211, 255, 0.38), transparent 32%),
        rgba(255, 255, 255, 0.12);
}

.onad-channel-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #071b4d;
    background: #fff;
    font-weight: 950;
}

.onad-channel-card h4 {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.24;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-channel-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.72);
}

/* Strategy */
.onad-strategy-section {
    padding: 130px 0;
    background: #fff;
}

.onad-strategy-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}

.onad-strategy-image {
    overflow: hidden;
    border-radius: 34px;
    background: #eef2ff;
    box-shadow: var(--shadow-card);
}

.onad-strategy-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.onad-strategy-copy h3 {
    margin-top: 18px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.onad-strategy-copy p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.82;
    color: var(--onad-gray);
}

.onad-check-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.onad-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--onad-light);
    color: #111827;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.55;
}

.onad-check-list li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--onad-blue);
    box-shadow: 0 0 0 6px rgba(51, 92, 255, 0.12);
}

/* Funnel */
.onad-funnel-section {
    padding: 120px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(230, 0, 18, 0.24), transparent 28%),
        linear-gradient(135deg, #050816, #071b4d 68%, #10101e);
}

.onad-funnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.onad-funnel-grid article {
    min-height: 260px;
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.onad-funnel-grid strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #071b4d;
    background: #fff;
    font-size: 14px;
    font-weight: 950;
}

.onad-funnel-grid h4 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-funnel-grid p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

/* Service */
.onad-service-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.onad-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.onad-service-card {
    min-height: 300px;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.onad-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.12);
}

.onad-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--onad-blue), var(--onad-purple));
    font-size: 23px;
}

.onad-service-card h4 {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-service-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--onad-gray);
}

/* Products */
.onad-product-section {
    padding: 120px 0;
    background: #fff;
}

.onad-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.onad-category-carousel {
    position: relative;
    margin-top: 54px;
}

.onad-category-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.onad-category-list::-webkit-scrollbar {
    display: none;
}

.onad-category-card {
    display: flex;
    flex: 0 0 calc((100% - 45px) / 4);
    flex-direction: column;
    min-height: 100%;
    scroll-snap-align: start;
    padding: 24px;
    border: 1px solid #e8edf7;
    border-radius: 28px;
    background: #f8faff;
}

.onad-category-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 27, 77, 0.88);
    box-shadow: 0 16px 34px rgba(7, 27, 77, 0.2);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.onad-category-arrow:hover {
    background: var(--onad-red);
    transform: translateY(-50%) scale(1.06);
}

.onad-category-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.onad-category-arrow[hidden] {
    display: none;
}

.onad-category-arrow--prev {
    left: -27px;
}

.onad-category-arrow--next {
    right: -27px;
}

.onad-category-card .onad-product-grid {
    margin-top: 14px;
}

.onad-category-head {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.onad-category-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.onad-category-actions .btn {
    flex: 1 1 132px;
    min-width: 0;
}

.onad-category-actions .btn-line {
    color: var(--onad-navy);
    border-color: #cfd8ea;
    background: #fff;
}

.onad-category-actions .btn-line:hover {
    color: #fff;
    border-color: var(--onad-navy);
    background: var(--onad-navy);
}

.onad-category-labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.onad-category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    color: #eb1a2d;
    background: #ffe7ea;
    font-size: 12px;
    font-weight: 950;
}

.onad-category-head h4 {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-category-head p {
    max-width: 760px;
    margin-top: 12px;
    color: var(--onad-gray);
    font-size: 16px;
    line-height: 1.7;
}

.onad-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #e8edf7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 27, 77, 0.08);
}

.onad-product-image {
    background: #eef2ff;
}

.onad-product-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.onad-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    padding: 17px;
}

.onad-product-body h4,
.onad-product-body h5 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-product-body p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.72;
    color: var(--onad-gray);
    white-space: pre-line;
}

.onad-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #edf1f8;
}

.onad-product-meta strong {
    color: var(--onad-navy);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 950;
}

.onad-product-no-file {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #7b8496;
    background: #f1f4f9;
    font-size: 14px;
    font-weight: 850;
}

.online-category-products-modal[hidden] {
    display: none;
}

.online-category-products-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.online-category-products-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(8px);
}

.online-category-products-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 36px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.online-category-products-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #111827;
    background: #f1f4f9;
    cursor: pointer;
}

.online-category-products-modal__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.online-category-products-modal__head h3 {
    margin-top: 18px;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.online-category-products-modal__head p {
    max-width: 780px;
    margin-top: 14px;
    color: var(--onad-gray);
    font-size: 16px;
    line-height: 1.65;
}

.online-category-products-modal__head .btn {
    margin-top: 22px;
}

.online-category-products-modal__body {
    margin-top: 28px;
}

.online-category-products-modal__body .onad-product-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

/* Process */
.onad-process-section {
    padding: 120px 0;
    color: #fff;
    background: #050816;
}

.onad-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 54px;
}

.onad-process-grid article {
    min-height: 230px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.onad-process-grid span {
    font-size: 12px;
    font-weight: 950;
    color: var(--onad-sky);
}

.onad-process-grid h4 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 950;
    color: #fff;
    letter-spacing: -0.045em;
}

.onad-process-grid p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

/* Result */
.onad-result-section {
    padding: 120px 0;
    background: #fff;
}

.onad-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
}

.onad-result-grid article {
    min-height: 250px;
    padding: 34px;
    border-radius: 28px;
    background: var(--onad-light);
}

.onad-result-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--onad-blue), var(--onad-purple));
    font-size: 24px;
}

.onad-result-grid h4 {
    margin-top: 28px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.onad-result-grid p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--onad-gray);
}

/* CTA */
.onad-cta-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: #fff;
    background: var(--onad-deep);
}

.onad-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 22, 0.94), rgba(5, 8, 22, 0.58)),
        url("/image/online/online_cta_bg.png") center/cover no-repeat;
    opacity: 0.95;
}

.onad-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.onad-cta-inner h2 {
    margin-top: 28px;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.065em;
}

.onad-cta-inner p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.onad-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.is-online-product-modal-open {
    overflow: hidden;
}

.online-product-modal[hidden] {
    display: none;
}

.online-product-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.online-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(8px);
}

.online-product-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 36px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.online-product-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #111827;
    background: #f1f4f9;
    cursor: pointer;
}

.online-product-modal__dialog h3 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.online-product-modal__desc {
    margin-top: 14px;
    color: var(--onad-gray);
    font-size: 16px;
    line-height: 1.65;
}

.online-product-modal__desc strong {
    color: var(--onad-blue);
}

.online-product-form {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.online-product-form label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.online-product-form label span {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.online-product-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d8dee9;
    border-radius: 12px;
    color: #111827;
    font-size: 16px;
    outline: none;
}

.online-product-form input:focus {
    border-color: var(--onad-blue);
    box-shadow: 0 0 0 4px rgba(51, 92, 255, 0.12);
}

.online-product-form__message {
    min-height: 22px;
    margin: 0;
    color: var(--onad-red);
    font-size: 14px;
    font-weight: 800;
}

.online-product-form .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1180px) {
    .onad-service-grid,
    .onad-funnel-grid,
    .onad-process-grid,
    .onad-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .onad-category-card {
        flex-basis: calc((100% - 15px) / 2);
    }

    .online-category-products-modal__body .onad-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .onad-channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .onad-channel-card.large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 300px;
    }
}

@media (max-width: 1024px) {
    .onad-hero-grid,
    .onad-strategy-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .onad-hero-object {
        min-height: auto;
    }

    .onad-result-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .onad-inner {
        width: calc(100% - 32px);
    }

    .onad-hero {
        min-height: auto;
    }

    .onad-hero-grid {
        min-height: auto;
        padding: 82px 0 120px;
    }

    .onad-hero-copy h2 {
        font-size: 46px;
    }

    .onad-hero-copy p,
    .onad-section-head p,
    .onad-cta-inner p {
        font-size: 16px;
    }

    .onad-hero-actions,
    .onad-cta-actions {
        flex-direction: column;
    }

    .onad-hero-actions .btn,
    .onad-cta-actions .btn {
        width: 100%;
    }

    .onad-problem-section,
    .onad-channel-section,
    .onad-strategy-section,
    .onad-funnel-section,
    .onad-service-section,
    .onad-product-section,
    .onad-process-section,
    .onad-result-section,
    .onad-cta-section {
        padding: 82px 0;
    }

    .onad-problem-pill {
        border-radius: 22px;
        font-size: 15px;
    }

    .onad-problem-pill:nth-child(2),
    .onad-problem-pill:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    .onad-channel-grid,
    .onad-service-grid,
    .onad-funnel-grid,
    .onad-process-grid,
    .onad-product-grid {
        grid-template-columns: 1fr;
    }

    .onad-category-card {
        flex-basis: 100%;
    }

    .onad-category-arrow {
        width: 46px;
        height: 46px;
    }

    .onad-category-arrow--prev {
        left: -10px;
    }

    .onad-category-arrow--next {
        right: -10px;
    }

    .online-category-products-modal__body .onad-product-grid {
        grid-template-columns: 1fr;
    }

    .onad-category-card {
        padding: 24px;
    }

    .onad-category-head {
        flex-direction: column;
    }

    .onad-category-head .btn {
        width: 100%;
    }

    .onad-channel-card.large {
        grid-column: auto;
    }

    .onad-cta-inner h2 {
        font-size: 42px;
    }

    .online-category-products-modal,
    .online-product-modal {
        padding: 16px;
    }

    .online-category-products-modal__dialog,
    .online-product-modal__dialog {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .online-category-products-modal__head {
        padding-right: 36px;
    }

    .online-category-products-modal__head h3,
    .online-product-modal__dialog h3 {
        font-size: 30px;
    }
}


/* =========================================================
   Scroll Reveal Motion
========================================================= */

.text-motion-left,
.text-motion-right,
.text-motion-up {
    opacity: 0;
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
}

.text-motion-left {
    transform: translateX(-54px);
}

.text-motion-right {
    transform: translateX(54px);
}

.text-motion-up {
    transform: translateY(28px);
}

.text-motion-left.is-visible,
.text-motion-right.is-visible,
.text-motion-up.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .text-motion-left,
    .text-motion-right,
    .text-motion-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   Floating Motion
========================================================= */

.float-motion {
    animation: floatMotion 3.6s ease-in-out infinite;
    will-change: transform;
}

.float-motion-slow {
    animation: floatMotion 5.2s ease-in-out infinite;
    will-change: transform;
}

.float-motion-small {
    animation: floatMotionSmall 3.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatMotion {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatMotionSmall {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-motion,
    .float-motion-slow,
    .float-motion-small {
        animation: none;
    }
}


.motion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.12);
}

/* 필수 입력 표시 */
.required-field label::after {
    content: " *";
    color: var(--red);
    font-weight: 950;
}

/* 필수 입력 안내 뱃지 느낌 */
.required-field label {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* required 상태에서 미입력/미선택일 때 */
.required-field input:required:invalid,
.required-field select:required:invalid {
    border-color: rgba(230, 0, 18, 0.35);
    background-color: rgba(230, 0, 18, 0.03);
}

/* 입력하거나 선택하면 기본 상태 */
.required-field input:required:valid,
.required-field select:required:valid {
    border-color: #e5e7eb;
    background-color: #fff;
}

/* =========================================================
   Common - Next Strategy Section
========================================================= */

.next-strategy-section {
    padding: 110px 0;
    background: #f7f8fb;
}

.next-strategy-head {
    max-width: 780px;
}

.next-strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.next-strategy-card {
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    overflow: hidden;
    border-radius: 28px;
    color: #111;
    background: #fff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.next-strategy-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(230, 0, 18, 0.08);
    transition: 0.24s ease;
}

.next-strategy-card:hover {
    color: #111;
    transform: translateY(-7px);
    box-shadow: var(--shadow-card);
}

.next-strategy-card:hover::after {
    transform: scale(1.18);
    background: rgba(230, 0, 18, 0.14);
}

.next-strategy-card em {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(230, 0, 18, 0.08);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.next-strategy-card strong {
    display: block;
    margin-top: 28px;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.next-strategy-card span {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

.next-strategy-card b {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--red);
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 1024px) {
    .next-strategy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .next-strategy-section {
        padding: 82px 0;
    }

    .next-strategy-card {
        min-height: 220px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .next-strategy-card strong {
        font-size: 24px;
    }
}

.portfolio-pdf-section {
    margin: 60px 0 40px;
}

.portfolio-pdf-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.portfolio-pdf-preview {
    width: 100%;
    min-height: 220px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f8f8;
}

.portfolio-pdf-load {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
}

.portfolio-pdf-preview iframe {
    display: block;
    width: 100%;
    height: 760px;
    border: 0;
}

.portfolio-pdf-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .portfolio-pdf-section {
        margin: 40px 0 32px;
    }

    .portfolio-pdf-title {
        font-size: 20px;
    }

    .portfolio-pdf-preview iframe {
        height: 560px;
    }
}

.portfolio-search-form {
    margin-bottom: 34px;
}

.portfolio-search-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.9fr)) auto auto;
    gap: 10px;
    align-items: center;
}

.portfolio-search-row input,
.portfolio-search-row select {
    width: 100%;
    height: 48px;
    border: 1px solid #d8dce4;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 15px;
    color: #151515;
    background: #fff;
}

.portfolio-search-btn,
.portfolio-reset-btn,
.portfolio-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #d8dce4;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.portfolio-reset-btn,
.portfolio-page-btn {
    background: #fff;
    color: #111;
}

.portfolio-list--simple {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 22px;
}

.portfolio-card--simple {
    position: relative;
    display: grid;
    grid-template-rows: auto 72px;
    height: 100%;
    min-height: 278px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.06),
        0 14px 30px rgba(15, 23, 42, 0.06);
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.portfolio-card--simple::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
    pointer-events: none;
}

.portfolio-card--simple:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.08),
        0 18px 42px rgba(15, 23, 42, 0.12);
}

.portfolio-card--simple:hover::before {
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.14);
}

.portfolio-card--simple img {
    grid-row: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    background: #f3f4f6;
}

.portfolio-card--simple h2 {
    position: relative;
    z-index: 2;
    grid-row: 2;
    display: -webkit-box;
    min-height: 72px;
    margin: 0;
    padding: 15px 16px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    color: #111;
    background: rgba(255, 255, 255, 0.94);
}

.portfolio-card--simple h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.14), transparent);
}

.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    font-weight: 700;
}

.portfolio-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 700;
}

.portfolio-breadcrumb span:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.42);
}

.portfolio-content {
    margin-bottom: 46px;
    font-size: 18px;
    line-height: 1.85;
    color: #222;
    white-space: pre-line;
}

.portfolio-detail-media {
    display: grid;
    gap: 28px;
}

.portfolio-detail-media-item {
    margin: 0;
}

.portfolio-detail-media-item img,
.portfolio-detail-media-item video,
.portfolio-detail-media-item iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: #f3f4f6;
}

.portfolio-detail-media-item img,
.portfolio-detail-media-item video {
    max-height: 78vh;
    object-fit: contain;
}

.portfolio-detail-media-item iframe {
    aspect-ratio: 16 / 9;
}

.portfolio-carousel-more {
    margin-top: 18px;
    text-align: center;
}

.portfolio-card--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 991px) {
    .portfolio-search-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-list--simple {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .portfolio-card--simple {
        min-height: 248px;
    }
}

@media (max-width: 575px) {
    .portfolio-search-row {
        grid-template-columns: 1fr;
    }

    .portfolio-list--simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .portfolio-card--simple h2 {
        min-height: 62px;
        padding: 12px 12px;
        font-size: 14px;
    }

    .portfolio-card--simple {
        min-height: 198px;
    }
}


.onad-pricing-page {
    background: #f6f8fb;
}

.onad-pricing-hero {
    padding: 150px 0 82px;
    background: linear-gradient(135deg, #071425 0%, #0d2340 58%, #101828 100%);
    color: #fff;
}

.onad-pricing-hero-inner {
    max-width: 1120px;
}

.onad-pricing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
}

.onad-pricing-breadcrumb a {
    color: #fff;
    font-weight: 800;
}

.onad-pricing-hero h1 {
    max-width: 760px;
    margin: 12px 0 22px;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.1;
}

.onad-pricing-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.75;
}

.onad-pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.onad-pricing-list-section {
    padding: 72px 0 110px;
    background: #f5f7fa;
}

.onad-pricing-summary {
    margin-bottom: 38px;
}

.onad-pricing-summary .onad-kicker {
    color: #98a2b3;
}

.onad-pricing-summary h2 {
    margin: 8px 0 8px;
    color: #101828;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -.045em;
}

.onad-pricing-summary p {
    margin: 0;
    color: #98a2b3;
    font-size: 16px;
    font-weight: 700;
}

.onad-pricing-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

.onad-pricing-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    z-index: 30;
}

.onad-pricing-sidebar-card {
    max-height: calc(100vh - var(--header-height) - 48px);
    overflow-y: auto;
    padding: 18px 12px 12px;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    scrollbar-width: none;
}

.onad-pricing-sidebar-card::-webkit-scrollbar {
    display: none;
}

.onad-pricing-sidebar-title {
    display: block;
    padding: 0 10px 12px;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 900;
}

.onad-pricing-nav-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 6px 8px;
    border: 0;
    border-radius: 12px;
    color: #667085;
    background: transparent;
    text-align: left;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.onad-pricing-nav-item + .onad-pricing-nav-item {
    margin-top: 3px;
}

.onad-pricing-nav-item:hover {
    color: #101828;
    background: #f3f5f7;
}

.onad-pricing-nav-all {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    margin: 0 0 8px;
    background: #fff;
    cursor: pointer;
    font: inherit;
}

.onad-pricing-nav-all-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd2dc;
    border-radius: 50%;
    background: #fff;
}

.onad-pricing-nav-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 4px 2px;
    border: 0;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

/* 체크 상태: 해당 카테고리만 보는 필터 상태 */
.onad-pricing-nav-item.is-filtered {
    background: #eef1f5;
    box-shadow: inset 0 0 0 1px #d8dee7;
}

.onad-pricing-filter-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 32px;
    margin: 0;
    cursor: pointer;
}

.onad-pricing-filter-check input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.onad-pricing-filter-check span {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd2dc;
    border-radius: 6px;
    background: #fff;
    position: relative;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.onad-pricing-filter-check:hover span {
    border-color: #101828;
    transform: scale(1.05);
}

.onad-pricing-filter-check input:focus-visible + span {
    outline: 3px solid rgba(16, 24, 40, .16);
    outline-offset: 2px;
}

.onad-pricing-filter-check input:checked + span {
    border-color: #101828;
    background: #101828;
}

.onad-pricing-filter-check input:checked + span::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* 스크롤 하이라이트: 현재 보고 있는 카테고리 */
.onad-pricing-nav-item.is-scroll-active {
    color: #e60012;
    background: #fff1f2;
    box-shadow: inset 3px 0 0 #e60012;
}

.onad-pricing-nav-item.is-scroll-active .onad-pricing-nav-count {
    color: #e60012;
}

.onad-pricing-nav-all.is-scroll-active .onad-pricing-nav-all-icon {
    border-color: #e60012;
    background: #e60012;
    box-shadow: inset 0 0 0 4px #fff;
}

.onad-pricing-nav-label {
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.onad-pricing-nav-count {
    color: #b0b8c4;
    font-size: 12px;
    font-weight: 800;
}

.onad-pricing-category[hidden] {
    display: none !important;
}

.onad-pricing-content {
    min-width: 0;
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.onad-pricing-category {
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.onad-pricing-category + .onad-pricing-category {
    margin-top: 48px;
}

.onad-pricing-category-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 14px;
}

.onad-pricing-category-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.onad-pricing-category-head h2 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.025em;
}

.onad-pricing-category-title-row > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    color: #98a2b3;
    background: #e9edf2;
    font-size: 11px;
    font-weight: 900;
}

.onad-pricing-category-title-row > .onad-pricing-category-badge {
    min-width: 0;
    height: auto;
    padding: 4px 8px;
    color: #eb1a2d;
    background: #fff0f2;
    font-size: 11px;
}

.onad-pricing-category-head p {
    max-width: 760px;
    margin: 8px 0 0;
    color: #7d8796;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-line;
}

.onad-pricing-category-head .btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
}

.onad-pricing-product-list {
    overflow: hidden;
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
}

.onad-pricing-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 230px);
    align-items: center;
    gap: 26px;
    min-height: 106px;
    padding: 22px 26px;
}

.onad-pricing-product + .onad-pricing-product {
    border-top: 1px solid #edf0f4;
}

.onad-pricing-product-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.onad-pricing-product-body h3,
.onad-pricing-product-main h3 {
    margin: 0;
    color: #101828;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
}

.onad-pricing-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
}

.onad-pricing-product-badge.is-green {
    color: #15803d;
    background: #ecfdf3;
}

.onad-pricing-product-badge.is-blue {
    color: #2563eb;
    background: #eef4ff;
}

.onad-pricing-product-badge.is-red {
    color: #eb1a2d;
    background: #fff0f2;
}

.onad-pricing-product-main p {
    margin: 7px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-line;
}

.onad-pricing-product-price {
    text-align: right;
}

.onad-pricing-product-price strong {
    display: block;
    color: #101828;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
}

.onad-pricing-category-empty {
    margin: 0;
    padding: 34px 24px;
    color: #98a2b3;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.onad-pricing-empty {
    padding: 90px 0;
    text-align: center;
}

.onad-pricing-empty h2 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 30px;
    font-weight: 900;
}

.onad-pricing-empty p {
    margin: 0 0 26px;
    color: #667085;
}

@media (max-width: 991px) {
    .onad-pricing-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .onad-pricing-sidebar {
        top: var(--header-height);
        margin: 0 -20px;
        padding: 10px 20px;
        background: rgba(245, 247, 250, .94);
        backdrop-filter: blur(14px);
    }

    .onad-pricing-sidebar-card {
        display: flex;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 8px;
        border-radius: 14px;
        scrollbar-width: none;
    }

    .onad-pricing-sidebar-card::-webkit-scrollbar {
        display: none;
    }

    .onad-pricing-sidebar-title {
        display: none;
    }

    .onad-pricing-nav-item,
    .onad-pricing-nav-item + .onad-pricing-nav-item {
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: 20px auto;
        width: auto;
        min-height: 40px;
        margin: 0;
        padding: 5px 10px;
        border: 1px solid #e3e7ec;
        border-radius: 999px;
        background: #fff;
        box-shadow: none;
    }

    .onad-pricing-nav-all {
        position: static;
        grid-template-columns: 18px auto;
        margin: 0;
    }

    .onad-pricing-nav-link {
        display: block;
        width: auto;
        padding: 4px 0;
    }

    .onad-pricing-nav-item.is-filtered {
        border-color: #101828;
        background: #eef1f5;
        box-shadow: none;
    }

    .onad-pricing-nav-item.is-scroll-active {
        color: #e60012;
        border-color: #e60012;
        background: #fff1f2;
        box-shadow: none;
    }

    .onad-pricing-nav-count {
        display: none;
    }

    .onad-pricing-filter-check {
        width: 20px;
        height: 28px;
    }

    .onad-pricing-filter-check span {
        width: 17px;
        height: 17px;
        border-radius: 5px;
    }

    .onad-pricing-filter-check input:checked + span::after {
        left: 4px;
        top: 1px;
    }

    .onad-pricing-category,
    .onad-pricing-content {
        scroll-margin-top: calc(var(--header-height) + 80px);
    }
}

@media (max-width: 767px) {
    .onad-pricing-hero {
        padding: 120px 0 64px;
    }

    .onad-pricing-list-section {
        padding: 48px 0 72px;
    }

    .onad-pricing-summary {
        margin-bottom: 26px;
    }

    .onad-pricing-category + .onad-pricing-category {
        margin-top: 36px;
    }

    .onad-pricing-category-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .onad-pricing-category-head .btn {
        width: 100%;
    }

    .onad-pricing-product {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 20px;
    }

    .onad-pricing-product-price {
        text-align: left;
    }

    .onad-pricing-product-price strong {
        color: #eb1a2d;
    }
}

.execution-case-roller-section {
    padding: 90px 0;
    overflow: hidden;
    background: #f6f8fb;
}

.execution-case-roller-inner {
    display: grid;
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
    align-items: center;
    gap: 58px;
}

.execution-case-roller-head span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #eb1a2d;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.execution-case-roller-head h2 {
    margin: 0;
    color: #101828;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    word-break: keep-all;
}

.execution-case-title-showcase {
    min-width: 0;
    padding: 36px 40px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(16, 24, 40, 0.1);
}

.execution-case-title-mask {
    position: relative;
    height: 420px;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 14%,
        #000 86%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 14%,
        #000 86%,
        transparent 100%
    );
}

.execution-case-title-swiper {
    width: 100%;
    height: 100%;
}

.execution-case-title-swiper .swiper-slide {
    height: auto;
    opacity: 0.26;
    transform: scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.execution-case-title-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.execution-case-title-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 20px 10px;
    color: #101828;
    text-decoration: none;
    border-bottom: 1px solid #eaecf0;
}

.execution-case-title-item:hover {
    color: #eb1a2d;
    text-decoration: none;
}

.execution-case-title-number {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 800;
}

.execution-case-title-item strong {
    display: block;
    color: inherit;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.4;
    word-break: keep-all;
}

.execution-case-title-item strong:hover{
    color: #eb1a2d;
}

.execution-case-title-arrow {
    color: #98a2b3;
    font-size: 20px;
    text-align: right;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.execution-case-title-item:hover .execution-case-title-arrow {
    color: #eb1a2d;
    transform: translate(3px, -3px);
}

.execution-case-title-swiper .swiper-slide-active
.execution-case-title-number {
    color: #eb1a2d;
}

.execution-case-title-swiper .swiper-slide-active
.execution-case-title-item {
    color: #101828;
}

@media (max-width: 900px) {
    .execution-case-roller-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .execution-case-roller-head {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .execution-case-roller-section {
        padding: 64px 0;
    }

    .execution-case-title-showcase {
        padding: 22px;
        border-radius: 14px;
    }

    .execution-case-title-mask {
        height: 300px;
    }

    .execution-case-title-item {
        grid-template-columns: 34px minmax(0, 1fr) 24px;
        min-height: 84px;
        padding: 14px 4px;
    }

    .execution-case-title-item strong {
        font-size: 18px;
    }
}

.execution-case-detail {
    background: #f6f8fb;
}

.execution-case-detail-head span {
    display: inline-flex;
    color: #eb1a2d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.execution-case-detail {
    padding: 132px 0 96px;
}

.execution-case-detail-inner {
    max-width: 1120px;
}

.execution-case-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #667085;
    font-size: 14px;
    font-weight: 750;
}

.execution-case-breadcrumb a {
    color: #eb1a2d;
    font-weight: 850;
    text-decoration: none;
}

.execution-case-detail-head {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-bottom: 34px;
}

.execution-case-detail-head h1 {
    margin: 0;
    color: #101828;
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 900;
    line-height: 1.16;
    word-break: keep-all;
}

.execution-case-detail-image {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 28px 74px rgba(16, 24, 40, .14);
}

.execution-case-detail-image img {
    display: block;
    width: 100%;
    height: auto;
}

.execution-case-detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

@media (max-width: 767px) {
    .execution-case-detail {
        padding: 112px 0 72px;
    }

    .execution-case-detail-actions .btn {
        width: 100%;
    }
}

/* 가격정보 필터: 전체보기 선택 상태와 스크롤 하이라이트를 분리 */
.onad-pricing-nav-all.is-filtered {
    background: #eef1f5;
    box-shadow: inset 0 0 0 1px #d8dee7;
}

.onad-pricing-nav-all.is-filtered .onad-pricing-nav-all-icon {
    border-color: #101828;
    background: #101828;
    position: relative;
}

.onad-pricing-nav-all.is-filtered .onad-pricing-nav-all-icon::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* 전체보기 필터가 선택되어 있어도 현재 스크롤 위치의 빨간 하이라이트는 별도로 표시 */
.onad-pricing-nav-all.is-filtered.is-scroll-active {
    color: #e60012;
    background: #fff1f2;
    box-shadow: inset 3px 0 0 #e60012;
}

.onad-pricing-nav-all.is-filtered.is-scroll-active .onad-pricing-nav-all-icon {
    border-color: #e60012;
    background: #e60012;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .onad-pricing-nav-all.is-filtered {
        border-color: #101828;
        background: #eef1f5;
        box-shadow: none;
    }

    .onad-pricing-nav-all.is-filtered.is-scroll-active {
        border-color: #e60012;
        background: #fff1f2;
        box-shadow: none;
    }
}

/* =========================================================
   Mobile menu overflow fix
   - Prevents lower menu items from being clipped on short screens
   - Supports mobile browser dynamic viewport and safe area
========================================================= */
.mobile-menu {
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.mobile-menu-head {
    position: sticky;
    top: -28px;
    z-index: 2;
    padding-top: 28px;
    padding-bottom: 12px;
    background: var(--white);
}

.mobile-menu ul {
    padding-bottom: 24px;
}

@media (max-width: 480px), (max-height: 760px) {
    .mobile-menu {
        width: min(420px, 90vw);
        padding: 20px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .mobile-menu-head {
        top: -20px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .mobile-menu ul {
        margin-top: 18px;
    }

    .mobile-menu li + li {
        margin-top: 15px;
    }

    .mobile-menu a {
        display: block;
        padding: 3px 0;
        font-size: 17px;
        line-height: 1.35;
    }
}

@media (max-height: 620px) {
    .mobile-menu li + li {
        margin-top: 10px;
    }

    .mobile-menu a {
        font-size: 16px;
    }
}
/* =========================================================
   모바일 퀵메뉴
   PC에서는 기존 디자인 유지
   모바일에서는 카카오톡·전화만 작은 버튼으로 표시
========================================================= */

@media (max-width: 1024px) {

    /* 기존 퀵메뉴를 모바일에서도 표시 */
    .quick-menu {
        position: fixed;
        top: auto;
        right: 18px;
        bottom: calc(70px + env(safe-area-inset-bottom));
        z-index: 1000;

        display: block;
        transform: none;
    }

    /* 모바일에서는 퀵메뉴 박스 배경 제거 */
    .quick-menu .quick-box {
        display: flex;
        flex-direction: column;
        width: auto;
        padding: 0;
        gap: 8px;

        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    /* 블로그와 인스타그램은 모바일에서 숨김 */
    .quick-menu .quick-item-blog,
    .quick-menu .quick-item-instagram {
        display: none;
    }

    /* 카카오톡과 전화 버튼만 표시 */
    .quick-menu .quick-item-kakao,
    .quick-menu .quick-item-phone {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;
        padding: 0;

        border: 0;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
    }

    /* 기존 항목 사이 구분선 제거 */
    .quick-menu .quick-item + .quick-item {
        border-top: 0;
    }

    /* 모바일에서는 텍스트 숨김 */
    .quick-menu .quick-text {
        display: none;
    }

    /* 내부 아이콘 크기 */
    .quick-menu .quick-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;

        border-radius: 50%;
        font-size: 18px;
    }

    /* 카카오톡 버튼 */
    .quick-menu .quick-icon.kakao {
        color: #191919;
        background: #fee500;
    }

    /* 전화 버튼 */
    .quick-menu .quick-icon.phone {
        color: #ffffff;
        background: #111111;
    }

    /* 터치 시 살짝 축소 */
    .quick-menu .quick-item-kakao:active,
    .quick-menu .quick-item-phone:active {
        transform: scale(0.94);
    }
}


/* 작은 모바일 화면 */
@media (max-width: 480px) {

    .quick-menu {
        right: 18px;
        bottom: calc(70px + env(safe-area-inset-bottom));
    }

    .quick-menu .quick-box {
        gap: 7px;
    }

    .quick-menu .quick-item-kakao,
    .quick-menu .quick-item-phone,
    .quick-menu .quick-icon {
        width: 42px;
        height: 42px;
    }

    .quick-menu .quick-icon {
        font-size: 16px;
    }
}

@supports selector(html:has(body.homepage-production-page)) {
    html:has(body.homepage-production-page) {
        scroll-snap-type: y proximity;
    }
}

/* Website Estimate iframe: content-height embeds */
.website-estimate-iframe-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: #fff;
    scroll-margin-top: var(--header-height);
}

.website-estimate-iframe {
    display: block;
    width: 100%;
    height: 720px;
    min-height: 560px;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
}

.hp-estimate-embed-section {
    padding: 100px 0;
    background: #f5f7f6;
}

.hp-estimate-embed-section .inner {
    max-width: 1160px;
}

.hp-estimate-embed-iframe {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.hp-portfolio-cta-section {
    padding: 86px 0;
    background: #07070b;
    color: #fff;
    scroll-snap-align: start;
}

.hp-portfolio-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hp-portfolio-cta-section .section-title {
    margin-top: 12px;
    color: #fff;
}

.hp-portfolio-cta-section .section-desc {
    max-width: 680px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.hp-portfolio-cta-section .btn {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .hp-portfolio-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
