/* =========================================================
   BRAND PLUG USER COMMON CSS
========================================================= */

:root {
    --black: #02060A;
    --white: #ffffff;

    --navy: #061321;
    --deep: #010409;
    --dark-navy: #07111E;

    --lime: #7CFF00;
    --lime-2: #A6FF2E;
    --lime-dark: #45B800;

    --blue: #10243A;
    --purple: #172A3D;
    --red: #7CFF00;

    --gray-50: #F7F8FB;
    --gray-100: #F1F3F7;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-700: #9AA6B2;
    --gray-900: #EAF2FF;

    --header-height: 86px;
    --container: 1320px;
    --radius-lg: 28px;
    --radius-md: 18px;

    --shadow-card: 0 20px 52px rgba(0, 0, 0, 0.32);
    --shadow-lime: 0 0 28px rgba(124, 255, 0, 0.28);
}

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

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

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

.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;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



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.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;
}





@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
========================================================= */



.section {
    padding: 120px 0;
}

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









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



.header-inner {
    width: min(1680px, calc(100% - 48px));
    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-height: 140px;
    object-fit: contain;
}

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







.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
========================================================= */



.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-dim.is-open {
    opacity: 1;
    visibility: visible;
}

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













.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 {
    color: #fff;
    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;
}













/* =========================================================
   Footer
========================================================= */



.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 {
    object-fit: contain;
}

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

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

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



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



.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-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;
    color: var(--blue);
}

.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 input,
.form-field select {
    height: 54px;
}

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



.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);
    }
}

/* =========================================================
   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: 60vh;
    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;
    border: solid 1px var(--lime);
}

.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%;
    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;
}

.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;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    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%;
    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: 260px;
    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: 16px;
    line-height: 1.7;
    color: var(--oa-gray);
}

@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;
    }
}

/* =========================================================
   BRAND PLUG - 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: 60vh;
    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;
}

.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;
    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%;
    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%);
}

.hp-estimate-head {
    max-width: 920px;
    margin: 0 auto 56px;
    text-align: center;
}

.hp-estimate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
    gap: 34px;
    align-items: start;
}

.hp-estimate-control {
    display: grid;
    gap: 24px;
}

.hp-estimate-group {
    padding: 34px;
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(7, 27, 77, 0.06);
}

.hp-estimate-group h3 {
    margin-bottom: 18px;
    color: #071b4d;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.hp-plan-card,
.hp-option-card {
    cursor: pointer;
}

.hp-plan-card {
    display: block;
}

.hp-plan-card + .hp-plan-card {
    margin-top: 12px;
}

.hp-plan-card input,
.hp-option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hp-plan-card span {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #f7f8fb;
    transition: 0.22s ease;
}

.hp-plan-card strong,
.hp-option-card strong {
    color: #111827;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.hp-plan-card em,
.hp-option-card em {
    color: #E60012;
    font-style: normal;
    font-size: 15px;
    font-weight: 950;
}

.hp-plan-card small {
    grid-column: 1 / -1;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.hp-plan-card input:checked + span,
.hp-option-card input:checked + span {
    border-color: rgba(0, 221, 186, 0.72);
    box-shadow: 0 16px 38px rgba(0, 221, 186, 0.13);
}

.hp-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hp-option-card span {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f7f8fb;
    transition: 0.22s ease;
}

.hp-estimate-summary {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 14%, rgba(80, 255, 216, 0.28), transparent 34%),
        linear-gradient(135deg, #050505 0%, #071b4d 100%);
    box-shadow: 0 24px 64px rgba(7, 27, 77, 0.22);
}

.hp-price-box {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hp-price-box span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 900;
}

.hp-price-box strong {
    display: block;
    margin-top: 10px;
    color: #50ffd8;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.hp-price-box p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 750;
}

.hp-form-fields {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.hp-estimate-summary .form-field label {
    color: #fff;
}

.hp-estimate-summary .form-field input,
.hp-estimate-summary .form-field select,
.hp-estimate-summary .form-field textarea {
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hp-estimate-summary .form-field input::placeholder,
.hp-estimate-summary .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.hp-estimate-summary .form-field select option {
    color: #111;
}

.hp-estimate-summary .email-composer .email-at {
    color: rgba(255, 255, 255, 0.74);
}

.hp-estimate-summary .form-field textarea {
    min-height: 130px;
}

.hp-estimate-summary .btn {
    width: 100%;
    margin-top: 22px;
}

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

    .hp-estimate-grid {
        grid-template-columns: 1fr;
    }

    .hp-estimate-summary {
        position: static;
    }
}

@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: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 28px;
    margin-top: 52px;
    align-items: center;
}

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

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

.ad-readiness-checks label:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 255, 0, 0.32);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

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

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

.ad-score-card {
    padding: 34px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(124, 255, 0, 0.28), 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;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

.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: transform 0.22s ease, box-shadow 0.22s ease;
}

.ad-recommend-card:hover {
    transform: translateY(-4px);
    color: inherit;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.14);
}

.ad-recommend-card em {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(124, 255, 0, 0.12);
    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;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

@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-box {
        margin-top: 36px;
    }

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

    .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::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 .circle-text {
        position: relative;
        display: inline-block;
    }

    

    

    .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;
    }

    

    .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: 0 0 80px;
    }

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

    

    .strength-card h3 {
        position: relative;
        z-index: 2;
        font-size: 32px;
        font-weight: 950;
        letter-spacing: -0.05em;
    }

    .strength-card p {
        position: relative;
        z-index: 2;
        max-width: 230px;
        margin-top: 16px;
        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;
    }

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

    .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;
    gap: 22px;
}



.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-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;
    }

    .service-preview-list {
        display: grid;
        gap: 100px;
    }

    

    .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: var(--lime);
    }

    .service-preview-text h3 a {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }

    

    .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 var(--red);
        color: var(--gray-900);
        font-size: 13px;
        font-weight: 900;
    }

    

    .service-preview-image a {
        display: block;
    }

    

    .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;
        color: var(--red);
    }

    .stat-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        width: min(1040px, calc(100% - 48px));
        margin: 54px auto 0;
    }

    

    .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;
    }

    .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-thumb img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: contain;
        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;
    }

    .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;
        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 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;
    }

    

/* =========================================================
   Main Page Motion Details
========================================================= */
.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);
    animation: textRiseIn 0.72s ease both, subtleFloat 4.8s ease-in-out 0.72s infinite;
}


.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);
    animation: textRiseIn 0.78s ease 0.12s both;
}


.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);
    animation: textRiseIn 0.78s ease 0.24s both;
}


.main-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 44px;
    animation: textRiseIn 0.78s ease 0.36s both;
}


.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);
    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 {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    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:hover {
    color: var(--red);
    transform: translateX(-4px);
}

.quick-item:hover .quick-icon {
    transform: rotate(-8deg) scale(1.08);
}



.strength-card {
    position: relative;
    min-height: 260px;
    padding: 32px;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    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;
}


.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;
    animation: serviceOrbit 9s ease-in-out infinite alternate;
}


.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);
    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 {
    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);
    transition: border-color 0.28s ease;
}


.service-preview-card:hover {
    border-color: rgba(230, 0, 18, 0.26);
}

.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;
    transition: transform 0.25s ease, background 0.25s ease;
}


.service-preview-card:hover .service-preview-text h3 a::after {
    background: var(--red);
    color: var(--navy);
    transform: translateX(4px) rotate(-6deg);
}

.service-preview-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.34s ease, box-shadow 0.34s ease;
}


.service-preview-image img {
    width: 100%;
    object-fit: cover;
    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 {
    padding: 34px 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-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 {
    overflow: hidden;
    background: #fff;
    transition: 0.25s ease;
    border-radius: 18px;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
}


.portfolio-preview .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}


.portfolio-preview .portfolio-thumb {
    overflow: hidden;
    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 {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}


.cta-object {
    width: 100%;
    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;
        }

        .strength-grid {
            grid-template-columns: 1fr;
        }

        .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: auto;
        }

        .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%;
        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: var(--lime);
    }

    .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;
        box-shadow: var(--shadow-card);
        margin: auto;
    }

    .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("../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: var(--lime);
        letter-spacing: -0.04em;
    }

    .history-content {
        position: relative;
        padding-left: 34px;
    }

    .history-content::before {
        content: "";
        position: absolute;
        left: -49px;
        top: 15px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--lime);
        box-shadow: 0 0 0 8px #28a74538;
    }

    .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;
        border: 1px solid var(--lime);
        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;
    }

    .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: var(--lime-dark);
    }

    .org-line {
        width: 1px;
        height: 90px;
        margin: 0 auto;
        background: var(--lime-dark);
    }

    .org-executive {
        position: absolute;
        left: calc(50% + 22px);
        top: 72px;
        font-size: 16px;
        font-weight: 800;
        color: var(--lime-dark);
    }

    .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: 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;
    }

    .org-table .org-business {
        width: 30%;
        text-align: center;
        font-size: 15px;
        font-weight: 800;
    }

    .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%, rgb(124 255 0 / 29%), transparent 30%), radial-gradient(circle at 16% 76%, rgb(255 215 0 / 25%), 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(3, 1fr);
        gap: 54px 28px;
    }

    .portfolio-item.is-hidden {
        display: none;
    }

    .portfolio-section .portfolio-card {
        display: block;
    }

    .portfolio-section .portfolio-thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .portfolio-section .portfolio-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        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;
        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) minmax(36px, 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;
    }

    @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;
        }
    }

/* =========================================================
   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-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;
    }

.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;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
    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;
}

.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(--navy);
    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;
    border: 1px solid #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(--lime) 18% 21%, transparent 21% 38%, var(--lime) 38% 41%, transparent 41% 62%, var(--lime) 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;
    border: 1px solid var(--lime);
    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(--lime);
    border: 1px solid var(--lime-dark);
    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(--lime), var(--lime-dark));
}

.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(--lime);
    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(--navy);
}

.tour-step.is-active {
    border-color: var(--navy);
    background: #e8f4ff;
    box-shadow: 0 18px 44px rgba(47, 141, 245, 0.18);
}

.tour-step.is-active strong {
    color: var(--navy);
}

.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;
    }

    .quick-menu {
        display: none;
    }

    .section {
        padding: 90px 0;
    }
}

/* =========================================================
   BRAND PLUG - Online Ad Page
========================================================= */

.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;
}

.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: 60vh;
    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;
    box-shadow: var(--shadow-card);
}

.onad-strategy-image img {
    width: 100%;
    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);
}

/* 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;
}

/* Responsive */
@media (max-width: 1180px) {
    .onad-service-grid,
    .onad-funnel-grid,
    .onad-process-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-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 {
        grid-template-columns: 1fr;
    }

    .onad-channel-card.large {
        grid-column: auto;
    }

    .onad-cta-inner h2 {
        font-size: 42px;
    }
}

/* =========================================================
   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;
    }
}

/* =========================================================
   BRAND PLUG NEON STYLE OVERRIDE
   이미지 로고 톤: 블랙/딥네이비 + 형광 라임 + 메탈릭
   기존 CSS 하단에 오버라이드로 추가했습니다.
========================================================= */

.offline-ad-page,
.public-marketing-page,
.online-ad-page,
.hospital-marketing-page,
.corporate-marketing-page,
.homepage-production-page,
.video-ad-page {
    --oa-navy: var(--navy);
    --oa-deep: var(--deep);
    --oa-blue: var(--blue);
    --oa-orange: var(--lime);
    --oa-yellow: var(--lime-2);
    --oa-mint: var(--lime-dark);
    --oa-gray: var(--gray-700);
    --oa-light: var(--dark-navy);

    --pa-navy: var(--navy);
    --pa-deep: var(--deep);
    --pa-blue: var(--blue);
    --pa-cyan: var(--lime);
    --pa-green: var(--lime-dark);
    --pa-gold: var(--lime-2);
    --pa-gray: var(--gray-700);
    --pa-light: var(--dark-navy);

    --onad-deep: var(--deep);
    --onad-navy: var(--navy);
    --onad-blue: var(--lime);
    --onad-sky: var(--lime-2);
    --onad-purple: var(--purple);
    --onad-red: var(--lime);
    --onad-gray: var(--gray-700);
    --onad-light: var(--dark-navy);
}

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


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


.site-header.is-scroll {
    background: rgba(1, 4, 9, 0.94);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.gnb a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--header-height);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: color-mix(in srgb, var(--gray-900) 82%, transparent);
}


.gnb a:hover {
    color: var(--lime);
    text-decoration: none;
    text-shadow: 0 0 16px rgba(124, 255, 0, 0.42);
}


.gnb a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--lime);
    transform: translateX(-50%);
    transition: width 0.25s ease;
    box-shadow: 0 0 14px rgba(124, 255, 0, 0.72);
}


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


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1200;
    width: min(420px, 86vw);
    height: 100vh;
    padding: 28px;
    background: var(--dark-navy);
    transition: right 0.3s ease;
    color: var(--gray-900);
    border-left: 1px solid rgba(124, 255, 0, 0.12);
}


.mobile-menu a {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: color-mix(in srgb, var(--gray-900) 86%, transparent);
}




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


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 11px;
    border: 1px solid rgba(124, 255, 0, 0.22);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(124, 255, 0, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 0 18px rgba(124, 255, 0, 0.04);
}


.section-title {
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.045em;
    color: var(--gray-900);
    text-shadow: 0 0 28px rgba(124, 255, 0, 0.08);
}


.section-desc {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--gray-900) 68%, transparent);
}


.btn-black {
    color: var(--gray-900);
    border: 1px solid rgba(124, 255, 0, 0.26);
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep) 100%);
    box-shadow: inset 0 0 18px rgba(124, 255, 0, 0.06);
}


.btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(124, 255, 0, 0.22);
    color: var(--lime);
    border-color: rgba(124, 255, 0, 0.62);
}


.btn-red {
    color: var(--navy);
    border: 1px solid rgba(124, 255, 0, 0.82);
    background: linear-gradient(135deg, var(--lime-2) 0%, var(--lime) 48%, var(--lime-dark) 100%);
    box-shadow: 0 16px 34px rgba(124, 255, 0, 0.24);
}


.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 34px rgba(124, 255, 0, 0.42);
    color: var(--deep);
}


.btn-line {
    color: var(--gray-900);
    border: 1px solid rgba(234, 242, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}


.btn-line:hover {
    color: var(--navy);
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 0 24px rgba(124, 255, 0, 0.34);
}


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


.quick-box {
    width: 92px;
    padding: 0px 10px;
    border-radius: 18px;
    background: rgba(7, 17, 30, 0.96);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(124, 255, 0, 0.1);
}


.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 4px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    position: relative;
    transition: transform 0.22s ease, color 0.22s ease;
    color: color-mix(in srgb, var(--gray-900) 82%, transparent);
}


.quick-item + .quick-item {
    border-top: 1px solid rgba(124, 255, 0, 0.1);
}


.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--navy);
    background: var(--lime);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    box-shadow: 0 0 18px rgba(124, 255, 0, 0.26);
}


.contact-form-wrap,
.hm-trust-card,
.cm-why-card,
.va-problem-grid article,
.oa-chip,
.hp-why-card,
.hp-service-card,
.ad-recommend-card,
.hp-estimate-group,
.hp-plan-card span,
.hp-option-card span {
    background: linear-gradient(145deg, rgba(9, 20, 34, 0.96), rgba(1, 4, 9, 0.98));
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
}



.hm-trust-card p,
.cm-why-card p,
.va-problem-grid p,
.hp-why-card p,
.hp-service-card p,
.ad-recommend-card span,
.hp-plan-card small {
    color: color-mix(in srgb, var(--gray-900) 66%, transparent);
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 900;
    color: color-mix(in srgb, var(--gray-900) 88%, transparent);
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(124, 255, 0, 0.12);
    border-radius: 14px;
    padding: 0 16px;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.045);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: color-mix(in srgb, var(--gray-900) 38%, transparent);
}

.form-field select option {
    color: var(--black);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(124, 255, 0, 0.13);
}




.hm-trust-section,
.cm-why-section,
.va-screen-section,
.hp-why-section,
.hp-estimate-section,
.oa-service-tabs-section,
.pa-issue {
    background: linear-gradient(180deg, var(--deep) 0%, var(--dark-navy) 100%);
}

.inline-contact-section,
.ad-readiness-section,
.hm-worry-section,
.hm-media-section,
.cm-problem-section,
.va-problem-section,
.hp-service-section,
.hp-package-section,
.oa-showcase,
.oa-result,
.pa-showcase,
.pa-result,
.hm-hero,
.cm-hero,
.va-hero,
.hp-hero,
.oa-hero,
.pa-hero {
    background: var(--deep);
}


.hm-hero-bg,
.cm-hero-bg,
.va-hero-bg,
.hp-hero-bg,
.oa-hero-bg,
.pa-hero-bg {
    background:
        radial-gradient(circle at 78% 20%, rgba(124, 255, 0, 0.24), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(9, 32, 52, 0.88), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(124, 255, 0, 0.12), transparent 38%),
        linear-gradient(135deg, var(--deep) 0%, var(--navy) 58%, var(--black) 100%);
}

.hm-eyebrow,
.cm-eyebrow,
.va-eyebrow,
.hp-eyebrow,
.oa-kicker,
.pa-kicker,
.ad-recommend-card em {
    color: var(--lime);
    background: rgba(124, 255, 0, 0.1);
}

.hm-hero h2 strong,
.cm-hero-copy h2 strong,
.va-hero-copy h2 strong,
.hp-hero-copy h2 strong,
.oa-hero-copy h2 em,
.pa-hero-copy h2 em,
.hp-price-box strong {
    color: var(--lime);
    text-shadow: 0 0 26px rgba(124, 255, 0, 0.22);
}

.hm-hero-stats,
.cm-hero-stats,
.va-hero-stats,
.hp-hero-stats {
    color: var(--gray-900);
    background: var(--dark-navy);
    border: 1px solid rgba(124, 255, 0, 0.08);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.4);
}

.mobile-menu a:hover,
.hm-hero-stats strong,
.cm-hero-stats strong,
.va-hero-stats strong,
.hp-hero-stats strong {
    color: var(--lime);
}


.hm-hero-stats span,
.cm-hero-stats span,
.va-hero-stats span,
.hp-hero-stats span {
    color: color-mix(in srgb, var(--gray-900) 62%, transparent);
}

.hm-hero-stats div + div,
.va-hero-stats div + div,
.hp-hero-stats div,
.cm-hero-stats div {
    border-color: rgba(124, 255, 0, 0.1);
}

.site-footer {
    padding: 64px 0;
    color: var(--gray-900);
    background: radial-gradient(circle at 80% 10%, rgba(124, 255, 0, 0.12), transparent 28%), linear-gradient(180deg, var(--gray-500) 0%, var(--gray-700) 100%) !important;
}


.footer-info p,
.footer-info-list p {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 13px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--gray-900) 58%, transparent);
}


.contact-form-wrap h3,
.hm-trust-card h3,
.cm-why-card h3,
.va-problem-grid strong,
.hp-why-card h3,
.hp-service-card h3,
.ad-recommend-card strong,
.hp-estimate-group h3,
.hp-plan-card strong,
.hp-option-card strong,
.footer-info strong,
.footer-channels > strong {
    color: var(--gray-900);
}


.footer-copy {
    margin-top: 22px !important;
    color: color-mix(in srgb, var(--gray-900) 36%, transparent) !important;
    font-size: 12px !important;
    font-weight: 800;
}


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


.footer-channel-link:hover {
    color: var(--navy);
    background: var(--lime);
    border-color: var(--lime);
    transform: translateY(-3px);
    box-shadow: 0 0 24px rgba(124, 255, 0, 0.28);
}


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


.site-preloader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: sitePreloaderSpin 0.8s linear infinite;
    box-shadow: 0 0 22px rgba(124, 255, 0, 0.32);
}


.site-preloader p {
    margin: 0;
    color: color-mix(in srgb, var(--gray-900) 62%, transparent);
    font-size: 14px;
    font-weight: 800;
}


@media (max-width: 640px) {
    .site-header {
        background: rgba(1, 4, 9, 0.9);
    }
}

/* =========================================================
   BRAND PLUG CONTRAST PASS
========================================================= */

.about-summary,
.value-section,
.location-section,
.contact-section,
.portfolio-section,
.portfolio-carousel-section,
.cm-problem-section,
.cm-service-section,
.cm-process-section,
.va-type-section,
.va-channel-section,
.va-result-section,
.onad-service-section,
.onad-result-section,
.next-strategy-section,
.product-tour-section {
    color: var(--gray-900);
    background: var(--deep) !important;
}

.about-summary-card,
.about-summary-card-list li,
.value-card,
.location-card,
.contact-info,
.contact-list li,
.contact-form-wrap,
.cm-service-card,
.cm-process-card,
.va-type-card,
.va-channel-card,
.va-result-grid article,
.onad-service-card,
.onad-result-grid article,
.next-strategy-card,
.portfolio-section .portfolio-card,
.portfolio-carousel .portfolio-card,
.tour-browser,
.tour-quote-card,
.tour-option-card,
.tour-side-panel,
.tour-dashboard-card,
.tour-dashboard-grid div,
.tour-campaign-list article,
.tour-report-card {
    color: var(--gray-900);
    background: linear-gradient(145deg, rgba(9, 20, 34, 0.96), rgba(1, 4, 9, 0.98)) !important;
    border: 1px solid rgba(124, 255, 0, 0.1);
    box-shadow: var(--shadow-card);
}









.contact-form input,
.contact-form select,
.contact-form textarea,
.email-composer input,
.email-composer select {
    color: var(--gray-900) !important;
    background-color: var(--dark-navy) !important;
    border-color: rgba(124, 255, 0, 0.18) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.email-composer input::placeholder {
    color: color-mix(in srgb, var(--gray-900) 48%, transparent) !important;
}

.contact-form select option,
.email-composer select option {
    color: var(--black);
    background: var(--white);
}

.portfolio-filter-btn,
.tour-step {
    color: color-mix(in srgb, var(--gray-900) 78%, transparent) !important;
    background: var(--dark-navy) !important;
    border: 1px solid rgba(124, 255, 0, 0.12);
}

.portfolio-filter-btn.active,
.tour-step.is-active {
    color: var(--navy) !important;
    background: var(--lime) !important;
    border-color: var(--lime);
}

.portfolio-section .portfolio-tag,
.portfolio-section .portfolio-badge {
    color: var(--navy) !important;
    background: var(--lime) !important;
}



.btn-black,
.btn.btn-black {
    color: var(--gray-900) !important;
    background-color: var(--dark-navy) !important;
}

main.page-container > section:not(.main-visual):not(.hm-hero):not(.cm-hero):not(.va-hero):not(.hp-hero):not(.oa-hero):not(.pa-hero):not(.contact-visual):not(.portfolio-visual) {
    color: var(--gray-900) !important;
    background: var(--deep) !important;
    background-color: var(--deep) !important;
}

main.page-container > section:not(.main-visual):not(.hm-hero):not(.cm-hero):not(.va-hero):not(.hp-hero):not(.oa-hero):not(.pa-hero):not(.contact-visual):not(.portfolio-visual) article,
main.page-container > section:not(.main-visual):not(.hm-hero):not(.cm-hero):not(.va-hero):not(.hp-hero):not(.oa-hero):not(.pa-hero):not(.contact-visual):not(.portfolio-visual) [class*="-card"],
.contact-info,
.contact-list li,
.contact-form-wrap,
.hp-estimate-summary,
.hp-estimate-group,
.hp-plan-card,
.hp-option-card,
.hp-price-box,
.oa-service-detail,
.oa-service-feature-section,
.oa-service-floating-card,
.cm-quote-box {
    color: var(--gray-900) !important;
    background: linear-gradient(145deg, rgba(9, 20, 34, 0.9), rgba(1, 4, 9, 0.9)) !important;
    border-color: rgba(124, 255, 0, 0.12) !important;
}





main.page-container section .section-label,
main.page-container section .onad-kicker,
main.page-container section .oa-kicker,
main.page-container section .pa-kicker,
main.page-container section .hm-eyebrow,
main.page-container section .cm-eyebrow,
main.page-container section .va-eyebrow,
main.page-container section .hp-eyebrow,
main.page-container section .next-strategy-card em {
    color: var(--lime) !important;
    background: rgba(124, 255, 0, 0.12) !important;
    background-color: rgba(124, 255, 0, 0.12) !important;
}

main.page-container section input,
main.page-container section select,
main.page-container section textarea {
    color: var(--gray-900) !important;
    background: var(--dark-navy) !important;
    background-color: var(--dark-navy) !important;
    border-color: rgba(124, 255, 0, 0.2) !important;
}

main.page-container section input::placeholder,
main.page-container section textarea::placeholder {
    color: color-mix(in srgb, var(--gray-900) 50%, transparent) !important;
}

.oa-btn-primary,
.oa-service-num,
.va-problem-grid span,
.tour-step.is-active strong,
.tour-step.is-active span,
.tour-option-card button {
    color: var(--navy) !important;
}

.oa-btn-primary,
.oa-service-num,
.tour-option-card button {
    background-color: var(--lime) !important;
}

.tour-step span,
.tour-browser-top em {
    color: color-mix(in srgb, var(--gray-900) 78%, transparent) !important;
    background: transparent !important;
}

.section-label,
.onad-kicker,
.tour-kicker,
.next-strategy-card em,
.tour-price-list b,
.tour-option-card b,
.location-list strong {
    color: var(--lime) !important;
}




.about-summary-title,
.about-summary-card h3,
.about-summary-card-list strong,
.value-card h3,
.location-card h3,
.contact-info h3,
.cm-service-card h3,
.cm-process-card h3,
.va-type-card h3,
.va-channel-card strong,
.va-result-grid strong,
.onad-service-card h4,
.onad-result-grid h4,
.next-strategy-card strong,
.tour-caption h3,
.tour-quote-card strong,
.tour-option-card strong,
.tour-side-panel strong,
.tour-dashboard-card strong,
.tour-dashboard-grid strong,
.tour-campaign-list strong,
.tour-report-card h3,
.portfolio-section .portfolio-info h3,
.portfolio-carousel .portfolio-card-body h3,
.pa-check-list li,
.onad-check-list li,
main.page-container section h1,
main.page-container section h2,
main.page-container section h3,
main.page-container section h4,
main.page-container section h5,
main.page-container section h6,
main.page-container section strong,
main.page-container section label,
.ad-readiness-checks label,
.ad-readiness-checks label span,
.hp-package-box h2,
.hp-plan-card strong,
.hp-option-card strong,
.cm-process-card strong,
.onad-funnel-grid strong,
.footer-company strong,
.footer-channels > strong {
    color: var(--gray-900) !important;
}


.about-summary-desc,
.about-summary-card p,
.about-summary-card-list span,
.value-card p,
.location-list span,
.contact-info p,
.contact-list span,
.cm-service-card p,
.cm-process-card p,
.va-type-card p,
.va-channel-card span,
.va-result-grid p,
.onad-service-card p,
.onad-result-grid p,
.next-strategy-card span,
.tour-caption p,
.tour-quote-card span,
.tour-quote-card small,
.tour-option-card p,
.tour-side-panel p,
.tour-side-panel li,
.tour-dashboard-card span,
.tour-dashboard-grid span,
.tour-campaign-list span,
.tour-report-card p,
.portfolio-section .portfolio-info p,
.portfolio-carousel .portfolio-card-body p,
main.page-container section small,
main.page-container section em:not(.section-label),
.hp-plan-card small,
.hp-option-card small,
.onad-funnel-grid p {
    color: color-mix(in srgb, var(--gray-900) 72%, transparent) !important;
}




.btn-red,
.btn.btn-red,
.tour-step.is-active strong,
.tour-step.is-active span,
.tour-option-card button,
.oa-btn-primary,
.oa-service-num,
.va-problem-grid span {
    color: var(--navy) !important;
    background-color: var(--lime) !important;
}


.tour-option-card b,
.cm-process-card > strong,
.hp-plan-card > strong,
.onad-funnel-grid strong {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--navy) !important;
    background: var(--lime) !important;
    background-color: var(--lime) !important;
    border-radius: 999px;
    padding: 2px 10px;
    box-shadow: var(--shadow-lime);
}

.page-container,
.quick-menu {
    color: var(--gray-900) !important;
    background-color: var(--deep) !important;
}

.page-container {
    min-height: 70vh;
    background: var(--deep) !important;
}


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


.ad-readiness-box,
.ad-readiness-checks label,
.hp-package-box,
.hp-plan-card,
.hp-option-card,
.hp-estimate-summary,
.onad-funnel-grid > *,
.cm-process-card,
.tour-option-card,
.tour-quote-card,
.tour-step,
.quick-box,
.tour-browser-top,
.portfolio-empty,
.hp-check-list div,
.va-process-list div,
.oa-service-tab-nav {
    color: var(--gray-900) !important;
    background: linear-gradient(145deg, rgba(9, 20, 34, 0.98), rgba(1, 4, 9, 0.98)) !important;
    background-color: var(--dark-navy) !important;
    border-color: rgba(124, 255, 0, 0.14) !important;
}


main.page-container section .tour-option-card b,
main.page-container section .cm-process-card > strong,
main.page-container section .hp-plan-card strong,
main.page-container section .onad-funnel-grid strong,
main.page-container section .va-process-list strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 38px;
    min-height: 28px;
    color: var(--navy) !important;
    background: var(--lime) !important;
    background-color: var(--lime) !important;
    border-radius: 999px;
    padding: 2px 10px;
    box-shadow: var(--shadow-lime);
}

.tour-browser-top em,
.portfolio-empty,
.hp-check-list div,
.va-process-list span,
.oa-service-tab-nav {
    color: color-mix(in srgb, var(--gray-900) 82%, transparent) !important;
}

.oa-service-tab-nav .oa-service-tab-btn {
    color: var(--gray-900) !important;
    background: rgba(124, 255, 0, 0.08) !important;
    background-color: rgba(124, 255, 0, 0.08) !important;
}

.oa-service-tab-btn.active,
.oa-service-tab-btn:hover,
.oa-service-tab-nav .oa-service-tab-btn.active,
.oa-service-tab-nav .oa-service-tab-btn:hover {
    color: var(--navy) !important;
    background: var(--lime) !important;
    background-color: var(--lime) !important;
}