:root {
    --navy-950: #050a2b;
    --navy-900: #071044;
    --navy-800: #0b1560;
    --blue-600: #1a46ff;
    --blue-500: #315cff;
    --blue-100: #e8edff;
    --ink-950: #10121a;
    --ink-700: #3c404b;
    --ink-500: #6a707c;
    --line: #dfe3eb;
    --surface: #f5f7fb;
    --white: #fff;
    --content-width: 1400px;
    --page-gutter: clamp(20px, 4vw, 64px);
    --section-space: clamp(96px, 10vw, 168px);
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shadow-card: 0 24px 70px rgba(9, 21, 70, 0.09);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--ink-950);
    background: var(--white);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 12px 18px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 0.2s;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #86a2ff;
    outline-offset: 4px;
}

.content-width {
    width: min(100%, calc(var(--content-width) + (var(--page-gutter) * 2)));
    margin-inline: auto;
    padding-inline: var(--page-gutter);
}

.section {
    padding-block: var(--section-space);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow i {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(26, 70, 255, 0.12);
}

.eyebrow-light {
    color: #91a8ff;
    font-size: 12px;
}

.section-heading {
    margin-bottom: clamp(48px, 6vw, 84px);
}

.section-heading h2,
.audience-copy h2,
.faq-heading h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4.4vw, 68px);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 1.12;
}

.company-heading h2,
.faq-heading h2 {
    max-width: 14ch;
    font-size: clamp(34px, 3.6vw, 54px);
    letter-spacing: -0.045em;
    line-height: 1.18;
    text-wrap: balance;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: clamp(40px, 8vw, 140px);
}

.split-heading > p,
.services-heading > p {
    margin-bottom: 6px;
    color: var(--ink-500);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.8;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: color 0.35s, background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled,
.site-header.menu-active {
    color: var(--ink-950);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(9, 21, 70, 0.07);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(100%, calc(var(--content-width) + (var(--page-gutter) * 2)));
    min-height: 84px;
    margin-inline: auto;
    padding-inline: var(--page-gutter);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.header-brand {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.header-brand .brand-word {
    display: inline-flex;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.header-brand .brand-core,
.header-brand .brand-suffix {
    transition: color 0.35s, text-shadow 0.35s;
}

.header-brand .brand-core {
    color: var(--white);
}

.header-brand .brand-suffix {
    color: #91a8ff;
}

.site-header.scrolled .header-brand .brand-core,
.site-header.menu-active .header-brand .brand-core {
    color: var(--navy-800);
    text-shadow: none;
}

.site-header.scrolled .header-brand .brand-suffix,
.site-header.menu-active .header-brand .brand-suffix {
    color: var(--blue-600);
    text-shadow: none;
}

.brand-mark {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--blue-500);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 1.7vw, 28px);
}

.desktop-nav a {
    position: relative;
    padding-block: 29px;
    font-size: 15px;
    font-weight: 650;
}

.desktop-nav .work-system-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce4ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.desktop-nav .work-system-link svg,
.mobile-work-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-header.scrolled .desktop-nav .work-system-link,
.site-header.menu-active .desktop-nav .work-system-link,
.policy-page .desktop-nav .work-system-link {
    color: var(--blue-600);
}

.desktop-nav .work-system-link::after {
    background: var(--blue-500);
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--blue-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding-inline: 22px;
    color: var(--white);
    background: var(--blue-600);
    border: 1px solid var(--blue-600);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 0.25s, background 0.25s;
}

.header-cta:hover {
    background: #0f39df;
    transform: translateY(-2px);
}

.kakao-header-cta {
    gap: 9px;
    padding: 7px 17px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    height: calc(100svh - 76px);
    padding: 26px var(--page-gutter) 40px;
    color: var(--ink-950);
    background: var(--white);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
    font-weight: 700;
}

.mobile-nav .mobile-work-link {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    margin-top: 8px;
    padding: 14px 16px;
    color: var(--navy-800);
    background: var(--blue-100);
    border: 1px solid #d5ddff;
    border-radius: 12px;
    font-weight: 800;
}

.mobile-work-link i {
    color: var(--blue-600);
    font-style: normal;
}

.mobile-nav .mobile-nav-cta {
    justify-content: center;
    min-height: 56px;
    margin-top: 28px;
    color: var(--white);
    background: var(--blue-600);
    border: 0;
    border-radius: 999px;
    font-size: 16px;
}

.mobile-nav .mobile-nav-cta.kakao-cta {
    justify-content: flex-start;
    padding: 10px 12px 10px 20px;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 760px;
    height: 100svh;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-overlay,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -1;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero.video-unavailable .hero-media video {
    display: none;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 8, 37, 0.9) 0%, rgba(3, 8, 37, 0.64) 45%, rgba(3, 8, 37, 0.25) 100%),
        linear-gradient(0deg, rgba(3, 8, 37, 0.75) 0%, transparent 38%);
}

.hero-grid {
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-position: center;
    background-size: min(11vw, 160px) min(11vw, 160px);
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
    align-items: end;
    gap: 60px;
    padding-top: 110px;
}

.hero-copy h1 {
    max-width: 980px;
    margin-bottom: 32px;
    font-size: clamp(54px, 7.4vw, 116px);
    font-weight: 780;
    letter-spacing: -0.07em;
    line-height: 0.96;
}

.hero-copy h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
}

.hero-copy > p {
    max-width: 760px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.75;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 196px;
    min-height: 58px;
    padding-inline: 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--blue-600);
}

.button-primary:hover {
    background: #0f39df;
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.8);
}

.kakao-cta {
    position: relative;
    isolation: isolate;
    gap: 10px;
    overflow: hidden;
}

.kakao-cta::before {
    position: absolute;
    top: -80%;
    bottom: -80%;
    left: -34%;
    z-index: 0;
    width: 24%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    content: "";
    transform: translateX(-180%) rotate(15deg);
    transition: transform 0.7s var(--ease-out);
}

.kakao-cta:hover::before,
.kakao-cta:focus-visible::before {
    transform: translateX(720%) rotate(15deg);
}

.kakao-cta-label,
.kakao-cta-arrow {
    position: relative;
    z-index: 1;
}

.kakao-cta-label {
    flex: 1 1 auto;
    text-align: left;
    white-space: nowrap;
}

.kakao-cta-arrow {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    color: currentColor;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}

.kakao-cta:hover .kakao-cta-arrow,
.kakao-cta:focus-visible .kakao-cta-arrow {
    color: var(--navy-900);
    background: #fee500;
    border-color: #fee500;
    transform: translate(3px, -3px);
}

.kakao-cta-primary {
    min-width: 230px;
    padding: 10px 14px 10px 20px;
}

.kakao-cta-hero {
    min-width: 220px;
    padding: 9px 14px 9px 20px;
}

.hero-index {
    width: 100%;
    max-width: 380px;
    margin: 0 0 9px auto;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-index > p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero-index ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-index li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 20px;
    font-weight: 600;
}

.hero-index li span {
    color: #91a8ff;
    font-size: 18px;
    font-weight: 700;
}

.scroll-cue {
    position: absolute;
    right: var(--page-gutter);
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 28px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
}

.scroll-cue i::after {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    content: "";
    transform: translateX(-50%);
    animation: scroll-dot 1.8s infinite;
}

@keyframes scroll-dot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Intro */
.intro {
    background:
        radial-gradient(circle at 82% 14%, rgba(49, 92, 255, 0.08), transparent 24%),
        var(--white);
}

.ceo-greeting {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(52px, 8vw, 130px);
    margin-bottom: var(--section-space);
    padding: clamp(26px, 4vw, 54px);
    background: linear-gradient(135deg, #f3f6ff, #fff 65%);
    border: 1px solid #e5eaff;
    border-radius: var(--radius-lg);
    box-shadow: 0 26px 80px rgba(9, 21, 70, 0.08);
}

.ceo-portrait {
    overflow: hidden;
    background: var(--white);
    border-radius: calc(var(--radius-lg) - 10px);
}

.ceo-portrait img {
    width: 100%;
    height: auto;
}

.ceo-message h2 {
    margin-bottom: 30px;
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 1.13;
}

.ceo-message > p:not(.ceo-signature) {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--ink-700);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.9;
}

.ceo-signature {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 0;
}

.ceo-signature strong {
    color: var(--navy-800);
    font-size: 23px;
}

.ceo-signature span {
    color: var(--ink-500);
    font-size: 14px;
}

.company-heading {
    margin-top: 0;
}

.company-description p {
    margin-bottom: 16px;
}

.company-description p:last-child {
    margin-bottom: 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.value-card {
    min-height: 290px;
    padding: clamp(32px, 4vw, 56px);
    border-right: 1px solid var(--line);
    transition: color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
}

.value-card:last-child {
    border-right: 0;
}

.value-card:hover {
    color: var(--white);
    background: var(--navy-800);
    transform: translateY(-8px);
}

.card-number {
    display: block;
    margin-bottom: 72px;
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 800;
}

.value-card:hover .card-number {
    color: #91a8ff;
}

.value-card h3 {
    margin-bottom: 14px;
    font-size: clamp(22px, 2vw, 29px);
    letter-spacing: -0.04em;
}

.value-card p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 16px;
    line-height: 1.75;
    transition: color 0.4s;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.location-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 7vw, 96px);
    margin-top: var(--section-space);
    padding-top: clamp(70px, 8vw, 118px);
    border-top: 1px solid var(--line);
}

.location-info h2 {
    margin-bottom: 36px;
    font-size: clamp(40px, 4.2vw, 64px);
    letter-spacing: -0.055em;
    line-height: 1.1;
}

.location-name {
    margin-bottom: 12px;
    color: var(--blue-600);
    font-size: 17px;
    font-weight: 800;
}

.location-info address {
    margin-bottom: 30px;
    color: var(--ink-700);
    font-size: clamp(18px, 1.7vw, 23px);
    font-style: normal;
    line-height: 1.7;
}

.location-info dl {
    margin: 0 0 34px;
}

.location-info dl > div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.location-info dt {
    color: var(--ink-500);
    font-size: 13px;
}

.location-info dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.location-button {
    min-width: 230px;
    color: var(--white);
    background: var(--navy-800);
}

.location-button:hover {
    background: var(--blue-600);
}

.map-preview {
    position: relative;
    min-height: 480px;
    background:
        radial-gradient(circle at 62% 45%, rgba(26, 70, 255, 0.1), transparent 19%),
        linear-gradient(135deg, #eef2f8, #dfe6f2);
    border: 1px solid #d6deea;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
}

.map-preview::before,
.map-preview::after {
    position: absolute;
    z-index: -1;
    content: "";
}

.map-preview::before {
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.8) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.8) 2px, transparent 2px);
    background-size: 82px 82px;
    transform: rotate(-8deg) scale(1.2);
}

.map-preview::after {
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(transparent, rgba(7, 16, 68, 0.18));
}

.map-road {
    position: absolute;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(152, 166, 191, 0.45);
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.road-one {
    top: 28%;
    left: -8%;
    width: 92%;
    transform: rotate(18deg);
}

.road-two {
    top: 55%;
    right: -12%;
    width: 94%;
    transform: rotate(-24deg);
}

.road-three {
    top: 8%;
    left: 58%;
    width: 70%;
    transform: rotate(82deg);
}

.map-pin {
    position: absolute;
    top: 47%;
    left: 59%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: var(--blue-600);
    border: 7px solid var(--white);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 12px 28px rgba(26, 70, 255, 0.35);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
    width: 13px;
    height: 13px;
    background: var(--white);
    border-radius: 50%;
}

.map-label {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    color: var(--white);
    background: rgba(7, 16, 68, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.map-label strong {
    font-size: 18px;
}

.map-label small {
    color: #b9c6ff;
    font-size: 13px;
    font-weight: 700;
}

.location-sites {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.location-site-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    min-height: 300px;
    padding: clamp(28px, 3.5vw, 48px);
    background:
        radial-gradient(circle at 93% 8%, rgba(26, 70, 255, 0.12), transparent 28%),
        var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.location-site-card::after {
    position: absolute;
    right: -34px;
    bottom: -48px;
    width: 180px;
    height: 180px;
    border: 34px solid rgba(26, 70, 255, 0.045);
    border-radius: 50%;
    content: "";
}

.location-site-card:hover {
    border-color: #c7d2ff;
    box-shadow: 0 24px 60px rgba(9, 21, 70, 0.09);
    transform: translateY(-4px);
}

.location-site-number {
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 800;
}

.location-site-content {
    position: relative;
    z-index: 1;
}

.location-site-type {
    display: block;
    margin-bottom: 13px;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-site-content h3 {
    margin-bottom: 18px;
    color: var(--navy-800);
    font-size: clamp(24px, 2.4vw, 34px);
    letter-spacing: -0.045em;
}

.location-site-content address {
    min-height: 62px;
    margin-bottom: 14px;
    color: var(--ink-700);
    font-size: 17px;
    font-style: normal;
    line-height: 1.75;
}

.location-site-contact {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ink-500);
    font-size: 13px;
}

.location-site-contact a {
    color: var(--ink-700);
    font-weight: 750;
}

.location-site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin-top: 12px;
    color: var(--blue-600);
    font-size: 14px;
    font-weight: 800;
}

.location-site-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

/* Services */
.services {
    background: var(--surface);
}

.services-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.services-heading > p {
    max-width: 410px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    padding: clamp(28px, 3vw, 42px);
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    grid-column: span 2;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
}

.service-card.service-featured {
    grid-column: span 3;
    min-height: 490px;
    background:
        radial-gradient(circle at 90% 10%, rgba(49, 92, 255, 0.1), transparent 26%),
        var(--white);
}

.service-card:hover {
    border-color: rgba(26, 70, 255, 0.18);
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-card-top > span {
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 800;
}

.service-card-top svg {
    width: 68px;
    height: 68px;
    fill: none;
    stroke: var(--blue-600);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-card-top svg {
    transform: scale(1.08) rotate(-3deg);
}

.service-label {
    margin-bottom: 9px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 17px;
    font-size: clamp(24px, 2.2vw, 32px);
    letter-spacing: -0.045em;
}

.service-card div > p:last-child {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.75;
}

.service-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 750;
}

.service-card > a span {
    color: var(--blue-600);
    font-size: 21px;
    transition: transform 0.3s;
}

.service-card > a:hover span {
    transform: translateX(5px);
}

.service-card > .consulting-cta {
    color: var(--navy-800);
    font-size: 17px;
    font-weight: 850;
}

.service-card > .consulting-cta .cta-arrow {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 50%;
    font-size: 21px;
    box-shadow: 0 8px 20px rgba(26, 70, 255, 0.25);
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.service-card > .consulting-cta:hover .cta-arrow,
.service-card > .consulting-cta:focus-visible .cta-arrow {
    background: var(--navy-800);
    box-shadow: 0 10px 26px rgba(11, 21, 96, 0.28);
    transform: translateX(0);
    animation: consulting-arrow-nudge 0.65s var(--ease-out);
}

@keyframes consulting-arrow-nudge {
    0% { transform: translateX(0); }
    45% { transform: translateX(7px); }
    100% { transform: translateX(0); }
}

/* Audience */
.audience-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(64px, 9vw, 150px);
}

.audience-copy {
    position: sticky;
    top: 130px;
    align-self: start;
}

.audience-copy > p {
    max-width: 460px;
    margin: 32px 0;
    color: var(--ink-500);
    font-size: 17px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ink-950);
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    color: var(--blue-600);
}

.audience-list {
    border-top: 1px solid var(--ink-950);
}

.audience-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 164px;
    padding: 28px 10px;
    border-bottom: 1px solid var(--line);
    transition: padding 0.35s, background 0.35s;
}

.audience-item:hover {
    padding-inline: 24px;
    background: var(--surface);
}

.audience-item > span {
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 800;
}

.audience-item h3 {
    margin-bottom: 8px;
    font-size: clamp(22px, 2.3vw, 31px);
    letter-spacing: -0.04em;
}

.audience-item p {
    margin-bottom: 0;
    color: var(--ink-500);
}

.audience-item > i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--blue-600);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 21px;
    font-style: normal;
}

/* Partners */
.partners-layout {
    text-align: center;
}

.partners-layout .section-heading {
    align-items: center;
    margin: 0 auto 48px;
}

.partners-layout .section-heading p {
    max-width: 480px;
    margin: 20px auto 0;
    color: var(--ink-500);
    font-size: 17px;
    line-height: 1.8;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.partners-list li span {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-950);
    background: #fff;
    font-size: 16px;
    font-weight: 750;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.partners-list li span:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
    background: var(--surface);
}

.partners-note {
    margin: 28px 0 0;
    color: var(--ink-500);
    font-size: 14px;
}

/* Statement */
.statement {
    position: relative;
    min-height: 760px;
    padding-block: var(--section-space);
    color: var(--white);
    background:
        radial-gradient(circle at 72% 45%, rgba(49, 92, 255, 0.5), transparent 24%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    isolation: isolate;
    overflow: hidden;
}

.statement::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image: radial-gradient(rgba(255, 255, 255, 0.75) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
    mask-image: radial-gradient(circle at 65% 50%, black, transparent 62%);
}

.statement-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 490px;
}

.statement h2 {
    margin-bottom: 34px;
    font-size: clamp(52px, 7.3vw, 112px);
    font-weight: 760;
    letter-spacing: -0.07em;
    line-height: 1;
}

.statement h2 span {
    color: #6e8aff;
}

.statement p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.8;
}

.statement-decoration {
    position: absolute;
    top: 50%;
    right: -8vw;
    z-index: -1;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    transform: translateY(-50%);
}

.statement-decoration span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.statement-decoration span:nth-child(2) {
    inset: 15%;
}

.statement-decoration span:nth-child(3) {
    inset: 30%;
    background: rgba(49, 92, 255, 0.08);
}

/* Guide */
.guide {
    background: var(--white);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-steps li {
    position: relative;
    padding-right: clamp(22px, 3.5vw, 52px);
}

.step-marker {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 34px;
}

.step-marker span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    color: var(--blue-600);
    background: var(--blue-100);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
}

.step-marker i {
    width: 100%;
    height: 1px;
    background: var(--line);
}

.guide-steps li:last-child .step-marker i {
    display: none;
}

.guide-steps h3 {
    margin-bottom: 13px;
    font-size: clamp(20px, 2vw, 25px);
    letter-spacing: -0.035em;
}

.guide-steps p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.75;
}

/* FAQ */
.faq {
    background: var(--surface);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(64px, 10vw, 160px);
}

.faq-heading {
    align-self: start;
}

.faq-list {
    border-top: 1px solid var(--ink-950);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
    padding: 20px 4px;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--blue-600);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 0.25s;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 720px;
    margin: -2px 50px 30px 4px;
    color: var(--ink-500);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    padding: clamp(32px, 6vw, 84px) 0;
    background: var(--surface);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(60px, 9vw, 140px);
    padding-block: clamp(64px, 8vw, 118px);
    color: var(--white);
    background:
        radial-gradient(circle at 75% 50%, rgba(49, 92, 255, 0.4), transparent 24%),
        var(--navy-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(42px, 5.2vw, 78px);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.contact-copy > p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.8;
}

.contact-button {
    width: max-content;
    margin-top: 34px;
}

.contact-checklist {
    align-self: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.contact-checklist > p:first-child {
    margin-bottom: 20px;
    color: #9cb0ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-checklist li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 15px;
}

.contact-checklist li span {
    color: #91a8ff;
    font-size: 11px;
    font-weight: 800;
}

.selected-service {
    min-height: 24px;
    margin: 20px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* Footer */
.site-footer {
    padding-top: 90px;
    color: rgba(255, 255, 255, 0.62);
    background: var(--navy-950);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-brand {
    margin-bottom: 24px;
    color: var(--white);
}

.footer-company-name {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 18px;
    font-weight: 750;
}

.footer-company address {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: clamp(56px, 8vw, 120px);
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    gap: 10px;
}

.footer-nav p {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-nav a {
    width: max-content;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-nav .footer-work-link {
    color: #b8c8ff;
    font-weight: 700;
}

.footer-nav .policy-link {
    color: var(--white);
    font-weight: 750;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 12px;
}

/* Privacy policy */
.policy-page {
    background: var(--off-white);
}

.policy-page .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(9, 21, 70, 0.07);
}

.policy-page .header-brand .brand-core {
    color: var(--navy-800);
    text-shadow: none;
}

.policy-page .header-brand .brand-suffix {
    color: var(--blue-600);
    text-shadow: none;
}

.policy-hero {
    padding: 176px 0 86px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 18%, rgba(56, 94, 255, 0.42), transparent 28%),
        linear-gradient(135deg, #071044, #0b1c70);
}

.policy-hero h1 {
    max-width: 820px;
    margin: 22px 0 24px;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.policy-hero > .content-width > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.policy-content {
    padding: 88px 0 130px;
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 70px;
    align-items: start;
}

.policy-article {
    max-width: 820px;
}

.policy-summary {
    margin-bottom: 52px;
    padding: 28px 30px;
    border: 1px solid rgba(26, 70, 255, 0.16);
    border-radius: 18px;
    background: #eef2ff;
    color: var(--navy-800);
    line-height: 1.75;
}

.policy-section {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.policy-section h2 {
    margin-bottom: 18px;
    color: var(--navy-800);
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.035em;
}

.policy-section p,
.policy-section li {
    color: var(--ink-700);
    line-height: 1.85;
}

.policy-section ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.policy-section a {
    color: var(--blue-600);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-aside {
    position: sticky;
    top: 118px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.policy-aside strong,
.policy-aside span {
    display: block;
}

.policy-aside strong {
    margin-bottom: 10px;
    color: var(--navy-800);
    font-size: 17px;
}

.policy-aside span {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.7;
}

.policy-aside a {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue-600);
    font-weight: 750;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.value-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.guide-steps .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.value-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.guide-steps .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.service-grid .reveal:nth-child(5),
.guide-steps .reveal:nth-child(4) {
    transition-delay: 0.08s;
}

.service-grid .reveal:nth-child(6) {
    transition-delay: 0.16s;
}

/* Tablet */
@media (max-width: 1100px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 50px;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding: 140px 0 90px;
    }

    .hero-index {
        display: block;
        max-width: 100%;
        margin: 0;
        padding: 24px 0;
    }

    .hero-index > p {
        font-size: 17px;
    }

    .hero-index li {
        font-size: 18px;
    }

    .hero-index li span {
        font-size: 17px;
    }

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

    .service-card,
    .service-card.service-featured {
        grid-column: auto;
    }

    .service-card:last-child {
        grid-column: span 2;
    }

    .audience-layout,
    .faq-layout {
        gap: 64px;
    }

    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 58px;
    }

    .guide-steps li:nth-child(2) .step-marker i {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 76px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: block;
    }

    .hero-inner {
        padding-top: 0;
    }

    .split-heading,
    .ceo-greeting,
    .location-panel,
    .audience-layout,
    .faq-layout,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .split-heading {
        gap: 28px;
    }

    .ceo-greeting {
        gap: 44px;
    }

    .ceo-portrait {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .location-panel {
        gap: 48px;
    }

    .location-sites {
        grid-template-columns: 1fr;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .policy-aside {
        position: static;
    }

    .split-heading > p,
    .services-heading > p {
        max-width: 620px;
    }

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

    .value-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-card:last-child {
        border-bottom: 0;
    }

    .card-number {
        margin-bottom: 38px;
    }

    .services-heading {
        align-items: start;
        flex-direction: column;
    }

    .audience-copy {
        position: static;
    }

    .statement {
        min-height: 640px;
    }

    .faq-layout {
        gap: 50px;
    }

    .contact-card {
        gap: 48px;
    }
}

/* Mobile */
@media (max-width: 640px) {

    .policy-hero {
        padding: 132px 0 68px;
    }

    .policy-hero h1 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .policy-hero > .content-width > p {
        font-size: 15px;
    }

    .policy-content {
        padding: 62px 0 90px;
    }

    .policy-summary,
    .policy-aside {
        padding: 22px;
    }

    .policy-section {
        padding: 32px 0;
    }

    :root {
        --page-gutter: 20px;
        --section-space: 88px;
        --radius-lg: 24px;
    }

    html {
        scroll-padding-top: 76px;
    }

    body {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .brand {
        font-size: 20px;
    }

    .header-brand {
        font-size: 22px;
        font-weight: 900;
    }

    .brand-mark {
        width: 27px;
        height: 27px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .eyebrow-light {
        font-size: 12px;
    }

    .section-heading h2,
    .audience-copy h2,
    .faq-heading h2 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.15;
    }

    .company-heading h2,
    .faq-heading h2 {
        max-width: 100%;
        font-size: clamp(29px, 8.4vw, 38px);
        letter-spacing: -0.035em;
        line-height: 1.25;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding: 118px 0 76px;
    }

    .hero-media video {
        object-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(3, 8, 37, 0.83), rgba(3, 8, 37, 0.4)),
            linear-gradient(0deg, rgba(3, 8, 37, 0.9), transparent 55%);
    }

    .hero-inner {
        display: block;
        padding-top: 0;
    }

    .hero-copy h1 {
        margin-bottom: 26px;
        font-size: clamp(47px, 15vw, 68px);
        line-height: 0.98;
    }

    .hero-copy h1 span {
        -webkit-text-stroke-width: 1px;
    }

    .hero-copy > p {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 1.7;
    }

    .desktop-only {
        display: none;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 360px;
    }

    .hero-index {
        margin-top: 38px;
        padding: 22px 0;
    }

    .hero-index > p {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .hero-index li {
        grid-template-columns: 42px 1fr;
        padding: 6px 0;
        font-size: 17px;
    }

    .hero-index li span {
        font-size: 16px;
    }

    .button {
        width: 100%;
        min-height: 56px;
    }

    .kakao-cta-primary,
    .kakao-cta-hero {
        min-width: 0;
        padding: 10px 12px;
    }

    .kakao-cta-label {
        font-size: 14px;
    }

    .kakao-cta-arrow {
        width: 34px;
        height: 34px;
    }

    .scroll-cue {
        display: none;
    }

    .value-card {
        padding: 34px 24px;
    }

    .ceo-greeting {
        margin-inline: -4px;
        padding: 20px;
        border-radius: 22px;
    }

    .ceo-message h2 {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .ceo-message > p:not(.ceo-signature) {
        font-size: 16px;
        line-height: 1.8;
    }

    .ceo-signature {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .value-card:hover {
        transform: none;
    }

    .card-number {
        margin-bottom: 28px;
        font-size: 16px;
    }

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

    .service-card,
    .service-card.service-featured,
    .service-card:last-child {
        grid-column: auto;
        min-height: 410px;
        padding: 28px;
    }

    .service-card-top svg {
        width: 62px;
        height: 62px;
    }

    .location-site-link svg {
        width: 22px;
        height: 22px;
    }

    .service-card-top > span,
    .audience-item > span,
    .step-marker span {
        font-size: 16px;
    }

    .service-card > .consulting-cta {
        font-size: 16px;
    }

    .service-card > .consulting-cta .cta-arrow {
        width: 44px;
        height: 44px;
    }

    .service-card:hover {
        transform: none;
    }

    .audience-layout {
        gap: 56px;
    }

    .location-panel {
        margin-top: 84px;
        padding-top: 76px;
    }

    .location-info h2 {
        margin-bottom: 28px;
    }

    .location-button {
        width: 100%;
    }

    .location-sites {
        gap: 16px;
    }

    .location-site-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 26px 22px;
    }

    .location-site-number {
        font-size: 16px;
    }

    .location-site-content address {
        min-height: 0;
        font-size: 16px;
    }

    .map-preview {
        min-height: 330px;
        border-radius: 22px;
    }

    .map-label {
        right: 16px;
        bottom: 16px;
        left: 16px;
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding: 16px;
    }

    .audience-item {
        grid-template-columns: 34px 1fr;
        min-height: 140px;
        gap: 12px;
        padding: 24px 0;
    }

    .audience-item:hover {
        padding-inline: 0;
        background: transparent;
    }

    .audience-item > i {
        display: none;
    }

    .audience-item h3 {
        font-size: 22px;
    }

    .audience-item p {
        font-size: 14px;
    }

    .statement {
        display: flex;
        align-items: center;
        min-height: 570px;
    }

    .statement h2 {
        font-size: clamp(45px, 13vw, 62px);
    }

    .statement-decoration {
        right: -45vw;
        width: 100vw;
    }

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

    .guide-steps li {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 18px;
        padding-right: 0;
        padding-bottom: 36px;
    }

    .step-marker {
        grid-row: span 2;
        align-items: center;
        flex-direction: column;
        height: 100%;
        margin-bottom: 0;
    }

    .step-marker span {
        width: 50px;
        height: 50px;
    }

    .step-marker i {
        width: 1px;
        height: 100%;
    }

    .guide-steps li:nth-child(2) .step-marker i {
        display: block;
    }

    .guide-steps li:last-child .step-marker i {
        display: none;
    }

    .guide-steps h3 {
        align-self: end;
        margin-bottom: 7px;
        font-size: 21px;
    }

    .guide-steps p {
        font-size: 14px;
    }

    .faq-list summary {
        min-height: 82px;
        font-size: 17px;
    }

    .faq-list details p {
        margin-right: 20px;
        font-size: 14px;
    }

    .contact-section {
        padding: 0;
        background: var(--navy-900);
    }

    .contact-card {
        padding: 80px 20px;
        border-radius: 0;
    }

    .contact-copy h2 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .contact-button {
        width: 100%;
    }

    .contact-checklist {
        padding: 24px;
    }

    .site-footer {
        padding-top: 70px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        padding-bottom: 60px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 40px 28px;
    }

    .footer-nav > div {
        flex: 1;
        min-width: 0;
    }

    .footer-bottom {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .service-card > .consulting-cta:hover .cta-arrow,
    .service-card > .consulting-cta:focus-visible .cta-arrow {
        animation: none;
        transform: none;
    }

    .kakao-cta::before {
        display: none;
    }

    .kakao-cta:hover .kakao-cta-arrow,
    .kakao-cta:focus-visible .kakao-cta-arrow {
        transform: none;
    }
}
