:root {
    --navy: #07111f;
    --navy-2: #0e1b2e;
    --blue: #2563eb;
    --cyan: #3b82f6;
    --green: #2563eb;
    --orange: #f97316;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --max-width: 1320px;
    --header-height: 86px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--slate-900);
    background: var(--slate-50);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
    letter-spacing: -0.03em;
}

body.is-menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.content-wrap,
.site-header-inner,
.site-footer-inner {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 24px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark,
.footer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan) 52%, var(--green));
    color: var(--white);
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.24);
}

.brand-title {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--slate-600);
    font-size: 15px;
    font-weight: 800;
}

.header-menu-link {
    transition: color 0.18s ease;
}

.header-menu-link:hover {
    color: var(--blue);
}

.header-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
}

.header-contact-link:hover {
    color: var(--white);
    background: var(--blue);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    background: var(--white);
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--slate-900);
}

.page-container {
    overflow: hidden;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #07111f 0%, #0e1b2e 52%, #0f172a 100%);
}

.hero-bg {
    position: absolute;
    border-radius: 999px;
    filter: blur(58px);
    opacity: 0.32;
    pointer-events: none;
}

.hero-bg-blue {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--cyan);
}

.hero-bg-green {
    top: 14%;
    right: 4%;
    width: 360px;
    height: 360px;
    background: var(--green);
}

.hero-bg-orange {
    left: 42%;
    bottom: -24%;
    width: 460px;
    height: 460px;
    background: var(--orange);
    opacity: 0.18;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    min-height: 720px;
    padding: 92px 0;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #cffafe;
    letter-spacing: -0.01em;
    text-transform: none;
}

.hero-copy h1,
.section-head h2,
.contact-box h2 {
    margin: 0;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
}

.hero-lead {
    margin: 26px 0 0;
    max-width: 640px;
    color: #cbd5e1;
    font-size: 19px;
    line-height: 1.82;
    font-weight: 500;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 950;
    transition: 0.18s ease;
}

.btn::after,
.service-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.18s ease;
}

.btn:hover::after,
.service-link:hover::after {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--white);
    color: var(--slate-900);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.16);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 680px;
    margin-top: 46px;
}

.hero-stat-card {
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat-card strong {
    display: block;
    font-size: 24px;
    font-weight: 950;
}

.hero-stat-card span {
    display: block;
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.hero-dashboard {
    position: relative;
}

.dashboard-panel {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.dashboard-panel::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: -1;
    border-radius: 28px;
    background: rgba(7, 17, 31, 0.82);
}

.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 8px;
}

.dashboard-head span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-head strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
    font-size: 22px;
    font-weight: 950;
}

.dashboard-head em {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.16);
    color: #bbf7d0;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dashboard-card {
    min-height: 154px;
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    color: var(--slate-900);
}

.dashboard-card-wide {
    grid-column: 1 / -1;
}

.dashboard-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-orange {
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
}

.dot-blue {
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.dot-green {
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.dashboard-card small {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 12px;
    font-weight: 950;
}

.dashboard-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 850;
}

.dashboard-card > strong {
    display: block;
    margin-top: 8px;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.progress-bar {
    height: 9px;
    margin-top: 20px;
    border-radius: 999px;
    background: var(--slate-100);
    overflow: hidden;
}

.progress-bar span {
    display: block;
    width: 76%;
    height: 100%;
    border-radius: inherit;
}

.progress-orange {
    background: linear-gradient(90deg, var(--orange), #facc15);
}

.progress-blue {
    width: 88% !important;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.mini-stat-grid div {
    padding: 14px;
    border-radius: 18px;
    background: var(--slate-50);
}

.mini-stat-grid span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 850;
}

.mini-stat-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    font-weight: 950;
}

.section {
    padding: 96px 0;
}

.section-white {
    background: var(--white);
}

.section-head {
    max-width: 740px;
    margin-bottom: 46px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2,
.contact-box h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.18;
}

.section-head p:not(.section-kicker),
.contact-box p {
    margin: 18px 0 0;
    color: var(--slate-600);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    align-items: start;
}

.sticky-head {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.card-grid {
    display: grid;
    gap: 18px;
}

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

.text-card {
    min-height: 190px;
    padding: 26px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--slate-50);
}

.text-card-strong {
    background: var(--white);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
}

.text-card strong {
    display: block;
    font-size: 21px;
    font-weight: 950;
}

.text-card p {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.75;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.service-top {
    position: relative;
    min-height: 170px;
    padding: 26px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-orange .service-top {
    background: linear-gradient(135deg, var(--orange), #f59e0b);
}

.service-blue .service-top {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-green .service-top {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.service-top::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.service-top span {
    position: relative;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 950;
}

.service-top h3 {
    position: relative;
    margin: 28px 0 0;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.service-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.service-summary {
    margin: 0;
    color: var(--slate-900);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 900;
}

.service-desc {
    margin: 16px 0 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.75;
}

.service-feature-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 850;
}

.service-feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--blue);
}

.service-orange .service-feature-list li::before {
    background: var(--orange);
}

.service-green .service-feature-list li::before {
    background: var(--green);
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 28px;
    color: var(--slate-900);
    font-weight: 950;
}

.process-section {
    background: var(--navy);
    color: var(--white);
}

.process-section .section-kicker,
.light .section-kicker,
.contact-box .section-kicker {
    color: #67e8f9;
}

.light p:not(.section-kicker),
.process-card p,
.contact-box p {
    color: #cbd5e1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    min-height: 236px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.process-card em {
    display: inline-flex;
    margin-bottom: 24px;
    color: #67e8f9;
    font-style: normal;
    font-size: 14px;
    font-weight: 950;
}

.process-card strong {
    display: block;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 950;
}

.process-card p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.7;
}

.contact-section {
    background: var(--slate-50);
}

.contact-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 48px;
    border-radius: 34px;
    background: radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.22), transparent 34%), linear-gradient(135deg, #0f172a, #07111f);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-box h2 {
    max-width: 760px;
}

.contact-box p {
    max-width: 680px;
}

.contact-actions {
    flex-direction: column;
    min-width: 180px;
}

.site-footer {
    border-top: 1px solid var(--slate-200);
    background: var(--white);
    color: var(--slate-600);
}

.footer-top-line {
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--orange));
}

.site-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
    padding: 38px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-mark {
    width: 42px;
    height: 42px;
}

.footer-title {
    display: block;
    color: var(--slate-900);
    font-size: 20px;
    font-weight: 950;
}

.footer-brand p,
.footer-info p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
}

.footer-info {
    text-align: right;
}

.footer-info a {
    color: var(--slate-700);
    font-weight: 850;
}

.footer-info a:hover {
    color: var(--blue);
}



/* 서비스 상세페이지 */
.service-detail-page .page-container {
    background: var(--slate-50);
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #07111f 0%, #0e1b2e 58%, #0f172a 100%);
}

.service-detail-hero.service-orange {
    background: radial-gradient(circle at 86% 12%, rgba(249, 115, 22, 0.34), transparent 30%), linear-gradient(135deg, #111827 0%, #21120a 55%, #0f172a 100%);
}

.service-detail-hero.service-blue {
    background: radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.34), transparent 30%), linear-gradient(135deg, #07111f 0%, #0c1d3d 55%, #0f172a 100%);
}

.service-detail-hero.service-green {
    background: radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.32), transparent 30%), linear-gradient(135deg, #07111f 0%, #082f2a 55%, #0f172a 100%);
}

.service-hero-bg {
    position: absolute;
    border-radius: 999px;
    filter: blur(62px);
    opacity: 0.28;
    pointer-events: none;
}

.service-hero-bg-one {
    top: 10%;
    left: 6%;
    width: 340px;
    height: 340px;
    background: var(--cyan);
}

.service-hero-bg-two {
    right: 5%;
    bottom: -18%;
    width: 480px;
    height: 480px;
    background: var(--orange);
    opacity: 0.18;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
    gap: 58px;
    align-items: center;
    min-height: 640px;
    padding: 82px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 26px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb strong {
    color: var(--white);
    font-weight: 950;
}

.service-detail-label {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #cffafe;
    font-size: 14px;
    font-weight: 950;
}

.service-hero-copy h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.service-detail-lead {
    max-width: 760px;
    margin: 26px 0 0;
    color: #cbd5e1;
    font-size: 19px;
    line-height: 1.82;
    font-weight: 500;
}

.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.service-keywords span {
    display: inline-flex;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 850;
}

.service-hero-actions {
    margin-top: 34px;
}

.service-visual-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.service-visual-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 14px 14px 18px;
}

.service-visual-head span {
    color: var(--white);
    font-size: 20px;
    font-weight: 950;
}

.service-visual-head em {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.service-visual-body {
    display: grid;
    gap: 12px;
}

.service-visual-item {
    padding: 22px;
    border-radius: 24px;
    background: var(--white);
    color: var(--slate-900);
}

.service-visual-item span {
    display: block;
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 850;
}

.service-visual-item strong {
    display: block;
    margin-top: 8px;
    font-size: 36px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.service-visual-note {
    margin-top: 12px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.service-visual-note strong {
    display: block;
    color: var(--white);
    font-size: 17px;
    font-weight: 950;
}

.service-visual-note p {
    margin: 8px 0 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
}

.service-detail-nav-section {
    position: sticky;
    top: var(--header-height);
    z-index: 20;
    border-bottom: 1px solid var(--slate-200);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.service-detail-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 62px;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-detail-nav::-webkit-scrollbar {
    display: none;
}

.service-detail-nav a {
    flex: 0 0 auto;
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 950;
}

.service-detail-nav a:hover {
    background: var(--slate-100);
    color: var(--slate-900);
}

.service-split-layout {
    grid-template-columns: 0.8fr 1.2fr;
}

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

.problem-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--slate-50);
}

.problem-card em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--slate-900);
    color: var(--white);
    font-style: normal;
    font-weight: 950;
}

.problem-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
    line-height: 1.78;
    font-weight: 700;
}

.function-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.function-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
}

.function-icon {
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.service-theme-orange .function-icon {
    background: linear-gradient(135deg, var(--orange), #f59e0b);
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.18);
}

.service-theme-green .function-icon {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.function-card strong {
    display: block;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 950;
}

.function-card p {
    margin: 13px 0 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.72;
}

.service-effect-box {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 56px;
    align-items: start;
}

.effect-list {
    display: grid;
    gap: 14px;
}

.effect-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
}

.effect-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: var(--slate-900);
    color: var(--white);
    font-weight: 950;
}

.effect-item p {
    margin: 3px 0 0;
    color: var(--slate-700);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 750;
}

.other-services-section {
    background: var(--slate-50);
}

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

.other-service-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.other-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.other-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.other-service-card.service-orange::before {
    background: linear-gradient(90deg, var(--orange), #f59e0b);
}

.other-service-card.service-green::before {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

.other-service-card span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 13px;
    font-weight: 950;
}

.other-service-card strong {
    display: block;
    margin-top: 18px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.other-service-card p {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.7;
}

.not-found-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.not-found-box h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    letter-spacing: -0.065em;
}

.not-found-box p {
    margin: 18px auto 28px;
    max-width: 560px;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.75;
}

.btn-dark {
    background: var(--slate-900);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue);
}

@media (max-width: 1080px) {
    .hero-inner,
    .split-layout,
    .service-hero-inner,
    .service-effect-box {
        grid-template-columns: 1fr;
    }

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

    .hero-dashboard {
        max-width: 680px;
    }

    .sticky-head {
        position: static;
    }

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

    .service-visual-card {
        max-width: 680px;
    }
}

@media (max-width: 820px) {
    .content-wrap,
    .site-header-inner,
    .site-footer-inner {
        width: min(100% - 28px, var(--max-width));
    }

    .site-header-inner {
        min-height: 66px;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-menu {
        position: fixed;
        top: 66px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--slate-200);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .header-menu.is-open {
        display: flex;
    }

    .header-menu-link {
        padding: 15px 14px;
        border-radius: 14px;
    }

    .header-menu-link:hover {
        background: var(--slate-50);
    }

    .header-contact-link {
        margin-top: 6px;
        color: var(--white);
        text-align: center;
    }

    .hero-inner,
    .service-hero-inner {
        padding: 62px 0;
    }

    .service-detail-nav-section {
        top: 66px;
    }

    .hero-stats,
    .dashboard-grid,
    .two-cols,
    .service-grid,
    .process-grid,
    .function-grid,
    .other-service-grid,
    .problem-card,
    .contact-box,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .dashboard-card-wide {
        grid-column: auto;
    }

    .mini-stat-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .section-head.center {
        text-align: left;
    }

    .text-card,
    .service-card,
    .process-card,
    .function-card,
    .other-service-card {
        min-height: auto;
    }

    .problem-card {
        gap: 16px;
        padding: 24px;
    }

    .service-effect-box {
        gap: 20px;
    }

    .contact-box {
        padding: 34px 24px;
    }

    .contact-actions {
        width: 100%;
    }

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

@media (max-width: 520px) {
    .brand-title {
        font-size: 19px;
    }

    .hero-copy h1,
    .service-hero-copy h1 {
        font-size: 39px;
    }

    .hero-lead,
    .service-detail-lead,
    .section-head p:not(.section-kicker),
    .contact-box p {
        font-size: 16px;
    }

    .service-visual-card {
        padding: 14px;
        border-radius: 28px;
    }

    .service-visual-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .not-found-box {
        padding: 36px 22px;
    }

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

    .btn {
        width: 100%;
    }
}

/* 상단 서비스 드롭다운 메뉴 */
.header-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--header-height);
}

.header-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.header-menu-item.has-dropdown.is-active > .header-menu-trigger,
.header-menu-item.has-dropdown:hover > .header-menu-trigger,
.header-menu-item.has-dropdown:focus-within > .header-menu-trigger {
    color: var(--blue);
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.header-menu-item.has-dropdown:hover .dropdown-arrow,
.header-menu-item.has-dropdown:focus-within .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.header-menu-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 18px;
}

.header-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 286px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.header-menu-item.has-dropdown:hover .header-dropdown,
.header-menu-item.has-dropdown:focus-within .header-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.header-dropdown-link {
    display: block;
    padding: 14px 14px;
    border-radius: 16px;
    color: var(--slate-700);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-dropdown-link:hover,
.header-dropdown-link:focus {
    background: var(--slate-50);
    color: var(--blue);
    transform: translateX(2px);
}

.header-dropdown-link.is-current {
    background: var(--navy);
    color: var(--white);
}

.header-dropdown-link strong {
    display: block;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.header-dropdown-link small {
    display: block;
    margin-top: 4px;
    color: inherit;
    opacity: 0.72;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

@media (max-width: 820px) {
    .header-menu-item {
        display: block;
        min-height: 0;
    }

    .header-menu-item.has-dropdown::after {
        display: none;
    }

    .header-menu-trigger {
        display: flex;
        justify-content: space-between;
        padding: 15px 14px;
        border-radius: 14px;
    }

    .header-menu-trigger:hover {
        background: var(--slate-50);
    }

    .dropdown-arrow {
        margin-top: 2px;
        transform: rotate(45deg);
    }

    .header-menu-item.has-dropdown:hover .dropdown-arrow,
    .header-menu-item.has-dropdown:focus-within .dropdown-arrow {
        margin-top: 2px;
        transform: rotate(45deg);
    }

    .header-dropdown {
        position: static;
        width: auto;
        margin: 0 0 8px;
        padding: 8px;
        border: 0;
        border-radius: 16px;
        background: var(--slate-50);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .header-menu-item.has-dropdown:hover .header-dropdown,
    .header-menu-item.has-dropdown:focus-within .header-dropdown {
        transform: none;
    }

    .header-dropdown-link {
        padding: 11px 12px;
        border-radius: 13px;
    }

    .header-dropdown-link:hover,
    .header-dropdown-link:focus {
        background: var(--white);
        transform: none;
    }

    .header-dropdown-link strong {
        font-size: 14px;
    }

    .header-dropdown-link small {
        font-size: 12px;
    }
}


/* 2026-05-25: 운영 예시 이미지 영역 강화 */
.dashboard-photo-panel .dashboard-head {
    margin-bottom: 18px;
}

.dashboard-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-photo-card {
    overflow: hidden;
    border-radius: 26px;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.06);
}

.dashboard-photo-card-wide {
    grid-column: 1 / -1;
}

.dashboard-photo-link {
    display: block;
    height: 100%;
}

.dashboard-photo-media {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.dashboard-photo-card-wide .dashboard-photo-media {
    min-height: 270px;
}

.dashboard-photo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.05) 0%, rgba(7, 17, 31, 0.12) 28%, rgba(7, 17, 31, 0.82) 100%);
}

.dashboard-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 22px;
    color: var(--white);
}

.dashboard-photo-overlay small {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 900;
}

.dashboard-photo-overlay strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.dashboard-photo-overlay p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.65;
}

.dashboard-photo-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.dashboard-photo-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 850;
}

.dashboard-photo-metrics b {
    color: var(--white);
    font-size: 13px;
    font-weight: 950;
}

.dashboard-photo-orange {
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.14);
}

.dashboard-photo-blue {
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.dashboard-photo-green {
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.service-visual-media {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
}

.service-visual-media img {
    display: block;
    width: 100%;
    height: auto;
}

.service-visual-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.72);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.service-visual-caption {
    margin: 14px 4px 0;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.7;
}

.service-visual-body {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1080px) {
    .dashboard-photo-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-photo-card-wide {
        grid-column: auto;
    }

    .service-visual-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .dashboard-photo-grid,
    .service-visual-body {
        grid-template-columns: 1fr;
    }

    .dashboard-photo-overlay {
        padding: 18px;
    }

    .dashboard-photo-overlay strong {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .dashboard-photo-media,
    .dashboard-photo-card-wide .dashboard-photo-media {
        min-height: 220px;
    }

    .service-visual-media {
        border-radius: 22px;
    }
}


/* 2026-05-25: 플라이시스템 공식 로고 적용 */
.brand-link {
    gap: 0;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
}

.footer-brand {
    align-items: center;
}

.footer-logo {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.footer-brand > p {
    margin: 8px 0 0;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 820px) {
    :root {
        --header-height: 74px;
    }

    .brand-logo {
        width: 168px;
    }

    .footer-logo {
        width: 190px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 148px;
    }
}


/* 2026-05-25: 메인 운영예시 이미지 카드 텍스트 겹침 보정 */
.dashboard-photo-media::after {
    background: linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.02) 0%,
        rgba(7, 17, 31, 0.10) 34%,
        rgba(7, 17, 31, 0.72) 74%,
        rgba(7, 17, 31, 0.92) 100%
    );
}

.dashboard-photo-overlay {
    padding: 18px 20px 20px;
}

.dashboard-photo-overlay strong {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.18;
    word-break: keep-all;
}

.dashboard-photo-overlay p {
    display: none;
}

.dashboard-photo-metrics {
    margin-top: 12px;
    gap: 6px;
    max-width: 100%;
}

.dashboard-photo-metrics span {
    min-width: 0;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.dashboard-photo-metrics b {
    font-size: 12px;
}

@media (max-width: 820px) {
    .dashboard-photo-overlay {
        padding: 16px;
    }

    .dashboard-photo-overlay strong {
        font-size: 22px;
    }

    .dashboard-photo-metrics span {
        padding: 6px 9px;
    }
}

@media (max-width: 520px) {
    .dashboard-photo-overlay small {
        font-size: 11px;
    }

    .dashboard-photo-overlay strong {
        font-size: 20px;
    }

    .dashboard-photo-metrics {
        display: none;
    }
}


/* 2026-05-25: 메인 운영예시 카드 하단 텍스트 완전 제거 및 상단 배지형 표시 */
.dashboard-photo-link {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.dashboard-photo-media::after {
    background: linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.08) 0%,
        rgba(7, 17, 31, 0.00) 34%,
        rgba(7, 17, 31, 0.18) 100%
    );
}

.dashboard-photo-overlay,
.dashboard-photo-overlay p,
.dashboard-photo-metrics {
    display: none !important;
}

.dashboard-photo-name {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 32px);
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.72);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(7, 17, 31, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .dashboard-photo-name {
        left: 12px;
        top: 12px;
        padding: 7px 11px;
        font-size: 12px;
    }
}


/* 2026-05-25: 문의 영역 줄바꿈/로고 크기 보정 */
.brand-logo {
    width: 190px;
}

.footer-logo {
    width: 210px;
}

.contact-box {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 32px;
}

.contact-box h2 {
    max-width: none;
    font-size: clamp(32px, 3.2vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.055em;
    word-break: keep-all;
}

.contact-box p:not(.section-kicker) {
    max-width: 940px;
    word-break: keep-all;
}

.contact-actions .btn {
    width: 180px;
    padding-left: 18px;
    padding-right: 18px;
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-box h2 {
        font-size: clamp(30px, 5vw, 40px);
    }

    .contact-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 820px) {
    .brand-logo {
        width: 154px;
    }

    .footer-logo {
        width: 176px;
    }
}

@media (max-width: 520px) {
    .contact-actions .btn {
        width: 100%;
    }

    .contact-box h2 {
        font-size: 30px;
    }
}

/* 2026-05-25: 도입문의 폼 */
.header-menu-link.is-active,
.header-contact-link.is-active {
    color: var(--blue);
}

.contact-page .page-container {
    background: var(--slate-50);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 82% 16%, rgba(37, 99, 235, 0.28), transparent 32%), linear-gradient(135deg, #07111f 0%, #0e1b2e 58%, #0f172a 100%);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: center;
}

.contact-hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.contact-hero-copy p:not(.section-kicker) {
    max-width: 720px;
    margin: 24px 0 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
}

.contact-phone-link {
    display: inline-flex;
    margin-top: 28px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}

.contact-phone-link:hover {
    background: rgba(255, 255, 255, 0.14);
}

.contact-hero-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
}

.contact-hero-card strong {
    display: block;
    font-size: 22px;
    font-weight: 950;
}

.contact-hero-card ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.contact-hero-card li {
    position: relative;
    padding-left: 22px;
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 750;
}

.contact-hero-card li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 54px;
    align-items: start;
}

.contact-form-head {
    position: sticky;
    top: 110px;
}

.contact-form {
    padding: 38px;
    border: 1px solid var(--slate-200);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}

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

.form-field {
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}

.form-field label,
.privacy-check {
    color: var(--slate-900);
    font-size: 15px;
    font-weight: 900;
}

.form-field label span {
    color: #f97316;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 18px;
    background: #f8fafc;
    color: var(--slate-900);
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field input,
.form-field select {
    height: 56px;
    padding: 0 18px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #ef4444;
    background: #fff7f7;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-field.has-error label,
.privacy-check.has-error {
    color: #b91c1c;
}

.privacy-check.has-error {
    border: 1px solid rgba(239, 68, 68, 0.35);
    background: #fff7f7;
}

.form-error,
.privacy-error {
    margin: 0;
    color: #dc2626;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
}

.form-notice {
    margin-bottom: 22px;
    padding: 15px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 850;
}

.form-notice-success {
    border: 1px solid rgba(37, 99, 235, 0.22);
    background: #ecfdf5;
    color: #047857;
}

.form-notice-error {
    border: 1px solid rgba(220, 38, 38, 0.18);
    background: #fef2f2;
    color: #b91c1c;
}

.privacy-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: var(--slate-50);
    color: var(--slate-700);
    line-height: 1.6;
}

.privacy-check input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--blue);
    flex: 0 0 auto;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn-soft {
    background: var(--slate-100);
    color: var(--slate-900);
}

.btn-soft:hover {
    background: var(--slate-200);
}

.form-hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1080px) {
    .contact-hero-inner,
    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-head {
        position: static;
    }

    .contact-hero-card {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .contact-form {
        padding: 24px;
        border-radius: 26px;
    }

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

    .contact-hero-copy h1 {
        font-size: 44px;
    }

    .form-actions .btn {
        width: 100%;
    }
}

.form-error-global {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fef2f2;
}

.message-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.message-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.message-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
}

.message-modal-box {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    padding: 30px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
    text-align: center;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.18s ease;
}

.message-modal.is-visible .message-modal-box {
    transform: translateY(0) scale(1);
}

.message-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 22px;
    color: var(--white);
    font-size: 30px;
    font-weight: 950;
}

.message-modal-success .message-modal-icon {
    background: linear-gradient(135deg, #2563eb, #2563eb);
}

.message-modal-error .message-modal-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.message-modal-content strong {
    display: block;
    color: var(--slate-900);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.message-modal-content p {
    margin: 10px 0 0;
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 750;
}

.message-modal-close {
    width: 100%;
    height: 54px;
    margin-top: 24px;
    border: 0;
    border-radius: 18px;
    background: var(--navy);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.message-modal-close:hover {
    background: #0f172a;
}

@media (max-width: 560px) {
    .message-modal-box {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }
}


/* 2026-05-25: 메인 첫 화면 밝은 톤 + 운영 예시 슬라이드 */
.hero-section {
    color: var(--slate-900);
    background:
        radial-gradient(circle at 8% 18%, rgba(37, 99, 235, 0.18), transparent 34%),
        radial-gradient(circle at 91% 16%, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef7ff 48%, #ecfdf5 100%);
}

.hero-bg {
    filter: blur(76px);
    opacity: 0.22;
}

.hero-bg-orange {
    opacity: 0.10;
}

.hero-eyebrow {
    border-color: rgba(37, 99, 235, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.08);
}

.hero-lead {
    color: var(--slate-600);
}

.hero-actions .btn-primary {
    background: var(--slate-900);
    color: var(--white);
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.hero-actions .btn-outline-light {
    border-color: rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.78);
    color: var(--slate-900);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.hero-actions .btn-outline-light:hover {
    background: var(--white);
    border-color: rgba(37, 99, 235, 0.22);
}

.hero-stat-card {
    border-color: rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.hero-stat-card span {
    color: var(--slate-600);
}

.dashboard-panel {
    position: relative;
    border-color: rgba(203, 213, 225, 0.86);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.dashboard-panel::before {
    inset: 16px;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.78), rgba(236, 253, 245, 0.56));
}

.dashboard-head span {
    color: var(--slate-500);
}

.dashboard-head strong {
    color: var(--slate-900);
}

.dashboard-head em {
    background: rgba(37, 99, 235, 0.14);
    color: #047857;
}

.operation-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.operation-track {
    position: relative;
    min-height: 430px;
}

.operation-slide {
    position: absolute;
    inset: 0;
    min-height: 430px;
    opacity: 0;
    transform: translateX(18px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.operation-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.operation-slider .dashboard-photo-link {
    height: 100%;
    min-height: 430px;
    border-radius: 28px;
}

.operation-slider .dashboard-photo-media {
    min-height: 430px;
}

.operation-slider .dashboard-photo-media img {
    height: 100%;
}

.operation-slider .dashboard-photo-media::after {
    background: linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.10) 0%,
        rgba(7, 17, 31, 0.00) 42%,
        rgba(7, 17, 31, 0.16) 100%
    );
}

.operation-slider-button {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.54);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    transition: 0.18s ease;
}

.operation-slider-button:hover {
    background: rgba(37, 99, 235, 0.72);
    transform: translateY(-50%) scale(1.04);
}

.operation-slider-prev {
    left: 16px;
}

.operation-slider-next {
    right: 16px;
}

.operation-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.operation-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition: 0.18s ease;
}

.operation-slider-dot.is-active {
    width: 24px;
    background: var(--white);
}

@media (max-width: 1080px) {
    .operation-track,
    .operation-slide,
    .operation-slider .dashboard-photo-link,
    .operation-slider .dashboard-photo-media {
        min-height: 390px;
    }
}

@media (max-width: 820px) {
    .operation-track,
    .operation-slide,
    .operation-slider .dashboard-photo-link,
    .operation-slider .dashboard-photo-media {
        min-height: 330px;
    }

    .operation-slider-button {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .operation-track,
    .operation-slide,
    .operation-slider .dashboard-photo-link,
    .operation-slider .dashboard-photo-media {
        min-height: 250px;
    }

    .operation-slider-button {
        display: none;
    }

    .operation-slider-dots {
        bottom: 12px;
    }
}


/* 2026-05-25: 메인 주요서비스 설명문 한 줄 표시 보정 */
#services .section-head {
    max-width: 1080px;
}

@media (min-width: 1181px) {
    #services .section-head h2,
    #services .section-head p:not(.section-kicker) {
        white-space: nowrap;
    }
}

@media (max-width: 1180px) {
    #services .section-head {
        max-width: 760px;
    }
}


/* 2026-05-25: 전체 밝은 톤 정리 - 화이트 베이스 + 절제된 파스텔 포인트 */
:root {
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(219, 234, 254, 0.46), transparent 30%),
        radial-gradient(circle at 92% 4%, rgba(204, 251, 241, 0.40), transparent 28%),
        #fbfdff;
}

.site-header {
    border-bottom-color: rgba(226, 232, 240, 0.82);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.header-contact-link {
    background: #0f2747;
    box-shadow: 0 10px 24px rgba(15, 39, 71, 0.14);
}

.header-contact-link:hover,
.header-contact-link.is-active {
    background: var(--blue);
}

.hero-section {
    color: var(--slate-900);
    background:
        radial-gradient(circle at 9% 20%, rgba(191, 219, 254, 0.72), transparent 32%),
        radial-gradient(circle at 87% 18%, rgba(191, 219, 254, 0.62), transparent 34%),
        radial-gradient(circle at 52% 86%, rgba(254, 215, 170, 0.34), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 46%, #f3fff9 100%);
}

.hero-bg {
    opacity: 0.15;
}

.hero-eyebrow,
.service-detail-label,
.service-keywords span {
    border-color: rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: #1d4ed8;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.07);
}

.hero-copy h1,
.service-hero-copy h1,
.section-head h2,
.contact-box h2 {
    color: #102033;
}

.hero-lead,
.service-detail-lead,
.section-head p:not(.section-kicker),
.contact-box p,
.light p:not(.section-kicker) {
    color: #526173;
}

.hero-actions .btn-primary,
.service-hero-actions .btn-primary,
.contact-actions .btn-primary {
    background: #0f2747;
    color: var(--white);
    box-shadow: 0 18px 38px rgba(15, 39, 71, 0.16);
}

.hero-actions .btn-primary:hover,
.service-hero-actions .btn-primary:hover,
.contact-actions .btn-primary:hover {
    box-shadow: 0 22px 48px rgba(37, 99, 235, 0.20);
}

.hero-actions .btn-outline-light,
.service-hero-actions .btn-outline-light,
.contact-actions .btn-outline-light {
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: #102033;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.hero-actions .btn-outline-light:hover,
.service-hero-actions .btn-outline-light:hover,
.contact-actions .btn-outline-light:hover {
    border-color: rgba(37, 99, 235, 0.24);
    background: var(--white);
}

.hero-stat-card,
.text-card,
.service-card,
.other-service-card,
.contact-form,
.contact-hero-card {
    border-color: rgba(203, 213, 225, 0.72);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.065);
}

.dashboard-panel {
    border-color: rgba(203, 213, 225, 0.80);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11);
}

.dashboard-panel::before {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.72), rgba(240, 253, 250, 0.66));
}

.section {
    background: transparent;
}

.section-white {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 252, 255, 0.82));
}

.service-top {
    color: #102033;
}

.service-orange .service-top {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.service-blue .service-top {
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.service-green .service-top {
    background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
}

.service-top span {
    background: rgba(255, 255, 255, 0.72);
    color: #102033;
}

.process-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(191, 219, 254, 0.56), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(191, 219, 254, 0.46), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #f5fbff 52%, #f3fff9 100%);
    color: var(--slate-900);
}

.process-section .section-kicker,
.light .section-kicker,
.contact-box .section-kicker {
    color: #2563eb;
}

.process-card {
    border-color: rgba(203, 213, 225, 0.72);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.process-card em {
    color: #2563eb;
}

.process-card p {
    color: #526173;
}

.contact-section {
    background:
        linear-gradient(180deg, #fbfdff 0%, #f4faff 100%);
}

.contact-box {
    border: 1px solid rgba(203, 213, 225, 0.74);
    background:
        radial-gradient(circle at 88% 12%, rgba(125, 211, 252, 0.42), transparent 34%),
        radial-gradient(circle at 8% 90%, rgba(219, 234, 254, 0.36), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
    color: var(--slate-900);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.site-footer {
    background: #ffffff;
}

.service-detail-hero {
    color: var(--slate-900);
    background:
        radial-gradient(circle at 10% 16%, rgba(191, 219, 254, 0.52), transparent 30%),
        radial-gradient(circle at 90% 16%, rgba(191, 219, 254, 0.50), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 50%, #f3fff9 100%);
}

.service-detail-hero.service-orange {
    background:
        radial-gradient(circle at 88% 14%, rgba(253, 186, 116, 0.48), transparent 32%),
        radial-gradient(circle at 12% 16%, rgba(191, 219, 254, 0.35), transparent 28%),
        linear-gradient(135deg, #fffaf5 0%, #fff7ed 48%, #f8fbff 100%);
}

.service-detail-hero.service-blue {
    background:
        radial-gradient(circle at 88% 14%, rgba(147, 197, 253, 0.48), transparent 32%),
        radial-gradient(circle at 12% 18%, rgba(191, 219, 254, 0.30), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 52%, #f8fbff 100%);
}

.service-detail-hero.service-green {
    background:
        radial-gradient(circle at 88% 14%, rgba(147, 197, 253, 0.46), transparent 32%),
        radial-gradient(circle at 12% 18%, rgba(191, 219, 254, 0.34), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #ecfdf5 54%, #f8fbff 100%);
}

.breadcrumb,
.breadcrumb strong,
.breadcrumb a:hover {
    color: #526173;
}

.service-visual-card {
    border-color: rgba(203, 213, 225, 0.78);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
}

.service-visual-head span {
    color: #102033;
}

.service-visual-head em,
.service-visual-badge {
    background: rgba(15, 39, 71, 0.08);
    color: #0f2747;
}

.service-visual-caption {
    color: #526173;
}

.service-visual-note {
    background: rgba(239, 246, 255, 0.76);
}

.service-visual-note strong {
    color: #102033;
}

.service-visual-note p {
    color: #526173;
}

.service-detail-nav-section {
    background: rgba(248, 252, 255, 0.94);
}

.contact-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(191, 219, 254, 0.50), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(191, 219, 254, 0.44), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 54%, #f3fff9 100%);
}

.contact-hero-copy h1 {
    color: #102033;
}

.contact-hero-copy p:not(.section-kicker),
.contact-phone-link {
    color: #526173;
}

.contact-phone-link:hover {
    color: var(--blue);
}

@media (max-width: 820px) {
    .contact-box {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
    }
}


/* 2026-05-25: 큰 제목/굵은 글씨 답답함 완화 */
.hero-copy h1 {
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.18;
    letter-spacing: -0.055em;
    font-weight: 850;
    max-width: 780px;
}

.hero-lead {
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.85;
    letter-spacing: -0.025em;
    max-width: 780px;
}

.section-head h2,
.section-title h2,
.contact-cta h2,
.cta-panel h2 {
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.25;
    letter-spacing: -0.045em;
    font-weight: 820;
}

.section-head p,
.section-title p,
.contact-cta p,
.cta-panel p {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.8;
    letter-spacing: -0.022em;
}

.service-hero-copy h1,
.service-page-hero h1,
.page-hero h1,
.contact-hero h1 {
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.2;
    letter-spacing: -0.05em;
    font-weight: 850;
}

.service-hero-copy p,
.service-page-hero p,
.page-hero p,
.contact-hero p {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.82;
}

.service-card h3,
.value-card h3,
.strength-card h3,
.process-card h3,
.feature-card h3 {
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.34;
    letter-spacing: -0.035em;
    font-weight: 820;
}

.service-card p,
.value-card p,
.strength-card p,
.process-card p,
.feature-card p {
    font-size: 15.5px;
    line-height: 1.75;
}

.dashboard-head strong {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.dashboard-photo-name {
    font-size: 15px;
    font-weight: 850;
}

.btn,
button,
input,
select,
textarea {
    letter-spacing: -0.02em;
}

@media (max-width: 820px) {
    .hero-copy h1 {
        font-size: clamp(32px, 9vw, 44px);
        line-height: 1.22;
    }

    .section-head h2,
    .section-title h2,
    .contact-cta h2,
    .cta-panel h2 {
        font-size: clamp(27px, 7vw, 36px);
        line-height: 1.28;
    }

    .service-hero-copy h1,
    .service-page-hero h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: clamp(29px, 8vw, 40px);
        line-height: 1.25;
    }
}


/* 2026-05-25: 큰 글씨 줄간격 추가 여유 */
.hero-copy h1 {
    line-height: 1.28;
}

.section-head h2,
.section-title h2,
.contact-cta h2,
.cta-panel h2 {
    line-height: 1.34;
}

.service-hero-copy h1,
.service-page-hero h1,
.page-hero h1,
.contact-hero h1 {
    line-height: 1.32;
}

.service-card h3,
.value-card h3,
.strength-card h3,
.process-card h3,
.feature-card h3 {
    line-height: 1.42;
}

.dashboard-head strong {
    line-height: 1.42;
}

@media (max-width: 820px) {
    .hero-copy h1 {
        line-height: 1.32;
    }

    .section-head h2,
    .section-title h2,
    .contact-cta h2,
    .cta-panel h2 {
        line-height: 1.38;
    }

    .service-hero-copy h1,
    .service-page-hero h1,
    .page-hero h1,
    .contact-hero h1 {
        line-height: 1.36;
    }
}


/* 2026-05-25: 도입문의 상단 오른쪽 안내 카드 가독성 보정 */
.contact-hero-card {
    border: 1px solid rgba(203, 213, 225, 0.86);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 64px rgba(15, 23, 42, 0.10);
}

.contact-hero-card strong {
    color: #102033;
}

.contact-hero-card li {
    color: #475569;
    font-weight: 800;
}

.contact-hero-card li::before {
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}


/* 2026-05-25: 도입문의 전화번호 버튼 스타일 강화 */
.contact-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 20px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
    color: #102033 !important;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.contact-phone-link:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.32);
    color: var(--blue) !important;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.10);
}

.contact-phone-link::before {
    content: "☎";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}


/* 2026-05-25: 도입문의 입력 제목 한 줄 표시 */
.contact-form-head h2 {
    white-space: nowrap;
    font-size: clamp(34px, 3vw, 52px);
}

@media (max-width: 1080px) {
    .contact-form-head h2 {
        white-space: normal;
    }
}


/* 2026-05-25: 헤더 도입문의 버튼 글씨 가독성 보정 */
.header-contact-link,
.site-header .header-contact-link,
.header-contact-link:visited {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: rgba(37, 99, 235, 0.36);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.20);
}

.header-contact-link:hover,
.site-header .header-contact-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    border-color: rgba(37, 99, 235, 0.48);
}

.header-contact-link.is-active,
.site-header .header-contact-link.is-active {
    color: #ffffff !important;
}


/* 2026-05-25: 민트 톤 제거 — 블루/인디고 중심으로 정리 */
:root {
    --cyan: #3b82f6;
    --green: #2563eb;
}

.brand-mark,
.footer-mark,
.function-icon,
.service-theme-green .function-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6 58%, #1d4ed8);
}

.hero-section,
.service-section,
.process-section,
.contact-section,
.contact-hero,
.service-detail-hero,
.service-detail-hero.service-green {
    background:
        radial-gradient(circle at 12% 16%, rgba(191, 219, 254, 0.52), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(219, 234, 254, 0.58), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 52%, #eef5ff 100%);
}

.contact-box {
    background:
        radial-gradient(circle at 88% 12%, rgba(191, 219, 254, 0.42), transparent 34%),
        radial-gradient(circle at 8% 90%, rgba(219, 234, 254, 0.38), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.94));
}

.service-theme-green .service-card-icon,
.service-theme-green .service-visual-badge,
.service-green .service-visual-badge,
.contact-hero-card li::before {
    background: #2563eb;
}

.service-theme-green .service-card-link,
.service-theme-green .service-accent,
.service-detail-hero.service-green .section-kicker {
    color: #1d4ed8;
}

.service-detail-hero.service-green {
    color: var(--slate-900);
}

.hero-slider-dot.is-active,
.operation-dot.is-active {
    background: #2563eb;
}


/* 2026-05-25: 오픈 전 최종 디자인 마감 정리 */
.hero-copy h1,
.contact-hero-copy h1,
.service-hero-copy h1,
.service-page-hero h1,
.page-hero h1,
.contact-hero h1 {
    font-weight: 760;
    letter-spacing: -0.045em;
}

.section-head h2,
.section-title h2,
.contact-cta h2,
.cta-panel h2,
.contact-form-head h2 {
    font-weight: 740;
    letter-spacing: -0.04em;
}

.service-card h3,
.value-card h3,
.strength-card h3,
.process-card h3,
.feature-card h3,
.function-card strong,
.effect-item strong {
    font-weight: 760;
    letter-spacing: -0.03em;
}

.hero-lead,
.section-head p,
.section-title p,
.contact-cta p,
.cta-panel p,
.service-card p,
.value-card p,
.strength-card p,
.process-card p,
.feature-card p,
.function-card p,
.effect-item p {
    font-weight: inherit;
}

/* 버튼은 선명하게 유지 */
.btn,
.header-contact-link,
.contact-phone-link,
.form-submit {
    font-weight: 850;
}

/* 카드 그림자 약하게 정리 */
.service-card,
.value-card,
.strength-card,
.process-card,
.feature-card,
.function-card,
.effect-item,
.contact-form,
.contact-hero-card,
.service-visual-card,
.contact-box,
.operation-slider-card,
.hero-operation-card {
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.service-card:hover,
.value-card:hover,
.strength-card:hover,
.process-card:hover,
.feature-card:hover,
.function-card:hover,
.effect-item:hover {
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

/* 섹션 간 여백 정돈 */
.section {
    padding-top: clamp(72px, 7vw, 108px);
    padding-bottom: clamp(72px, 7vw, 108px);
}

.hero-section {
    padding-top: clamp(58px, 6vw, 92px);
    padding-bottom: clamp(72px, 7vw, 108px);
}

.section-head,
.section-title {
    margin-bottom: clamp(34px, 4vw, 54px);
}

.service-grid,
.value-grid,
.strength-grid,
.process-grid,
.feature-grid {
    gap: clamp(20px, 2.2vw, 30px);
}

/* 과한 굵은 느낌 방지 */
strong,
b {
    font-weight: 760;
}

.btn strong,
.header-contact-link,
.contact-phone-link,
.form-submit,
.form-field label,
.privacy-check {
    font-weight: 850;
}

@media (max-width: 820px) {
    .hero-copy h1,
    .contact-hero-copy h1,
    .service-hero-copy h1,
    .service-page-hero h1,
    .page-hero h1,
    .contact-hero h1 {
        font-weight: 760;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-head,
    .section-title {
        margin-bottom: 30px;
    }
}

/* 2026-05-25: 레이아웃 정리 보정 */
/* 1) 메인 히어로 위/아래 여백 축소 */
.hero-inner {
    min-height: 620px;
    padding: 56px 0 58px;
    gap: 44px;
}

.hero-section {
    padding-top: clamp(28px, 3vw, 44px);
    padding-bottom: clamp(42px, 4vw, 64px);
}

/* 2) 주요 기능 카드: 아이콘과 제목을 한 줄 정렬 */
.function-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
        "icon title"
        "desc desc";
    align-items: center;
    column-gap: 18px;
    row-gap: 14px;
    min-height: 214px;
}

.function-icon {
    grid-area: icon;
    margin-bottom: 0;
}

.function-card strong {
    grid-area: title;
    margin: 0;
}

.function-card p {
    grid-area: desc;
    margin: 0;
}

/* 3) 도입 이유: 번호와 텍스트 세로 가운데 정렬 */
.problem-card {
    align-items: center;
}

.problem-card p {
    margin: 0;
}

/* 4) 도입 후 기대할 수 있는 변화: PC에서 한 줄 표시 */
.service-effect-box .section-head h2 {
    white-space: nowrap;
    font-size: clamp(28px, 2.9vw, 44px);
}

/* 5) 섹션 간 여백 미세 정돈 */
#functions.section,
#effects.section,
#problem.section,
.other-services-section.section {
    padding-top: clamp(60px, 5.8vw, 88px);
    padding-bottom: clamp(60px, 5.8vw, 88px);
}

@media (max-width: 1080px) {
    .hero-inner {
        min-height: auto;
        padding: 48px 0 52px;
        gap: 34px;
    }

    .service-effect-box .section-head h2 {
        white-space: normal;
    }
}

@media (max-width: 820px) {
    .hero-section {
        padding-top: 20px;
        padding-bottom: 34px;
    }

    .hero-inner {
        padding: 34px 0 38px;
        gap: 28px;
    }

    .function-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "title"
            "desc";
        align-items: start;
        row-gap: 14px;
    }

    .function-icon {
        margin-bottom: 0;
    }

    .service-effect-box .section-head h2 {
        white-space: normal;
    }
}

/* 2026-05-25: 메인 Hero 상하 여백 추가 축소 */
.hero-inner {
    min-height: 560px;
    padding: 38px 0 42px;
    gap: 38px;
}

.hero-section {
    padding-top: clamp(14px, 2vw, 26px);
    padding-bottom: clamp(28px, 3vw, 44px);
}

@media (max-width: 1080px) {
    .hero-inner {
        padding: 34px 0 38px;
        gap: 28px;
    }
}

@media (max-width: 820px) {
    .hero-section {
        padding-top: 12px;
        padding-bottom: 24px;
    }

    .hero-inner {
        padding: 24px 0 28px;
        gap: 22px;
    }
}

/* 2026-05-25: 메인 운영예시 - 슬라이드 영역만 표시 */
.dashboard-photo-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dashboard-photo-panel::before,
.dashboard-photo-panel .dashboard-head {
    display: none;
}

.dashboard-photo-panel .operation-slider {
    border-radius: 34px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.operation-track {
    min-height: auto;
}

.operation-slide,
.operation-slide.is-active {
    min-height: auto;
}

.operation-slider .dashboard-photo-link {
    min-height: 0;
    height: auto;
}

.operation-slider .dashboard-photo-media {
    min-height: 0;
    aspect-ratio: 500 / 281;
}

.operation-slider .dashboard-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.operation-slider .dashboard-photo-media::after {
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.06) 0%, rgba(7, 17, 31, 0.00) 58%, rgba(7, 17, 31, 0.10) 100%);
}

.operation-slider-dots {
    bottom: 14px;
}

@media (max-width: 820px) {
    .dashboard-photo-panel .operation-slider {
        border-radius: 26px;
    }
}


/* 2026-05-25: 웹용 로고 정리 */
.brand-link {
    align-items: center;
}

.brand-logo {
    display: block;
    width: 172px;
    max-width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.footer-logo {
    display: block;
    width: 198px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 820px) {
    .brand-logo {
        width: 146px;
        max-height: 50px;
    }

    .footer-logo {
        width: 166px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 132px;
    }
}


/* 2026-05-25: 그림자 없는 플랫 로고 적용 */
.brand-logo {
    display: block;
    width: 172px;
    max-width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.footer-logo {
    display: block;
    width: 198px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 820px) {
    .brand-logo {
        width: 146px;
        max-height: 50px;
    }

    .footer-logo {
        width: 166px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 132px;
    }
}


/* 2026-05-25: 푸터 로고 크기 축소 */
.footer-logo {
    width: 160px;
}

@media (max-width: 820px) {
    .footer-logo {
        width: 146px;
    }
}

@media (max-width: 420px) {
    .footer-logo {
        width: 132px;
    }
}
