:root {
    --primary:        #135a20;
    --primary-hover:  #0e4518;
    --accent:         #329850;
    --accent-hover:   #26753d;

    --brand-olive:    #5a7030;
    --brand-gold:     #e8db8e;
    --brand-dark:     #051b0a;
    --brand-deep:     #135a20;
    --brand-accent:   #0fa47a;
    --brand-glow:     #e6fff0;

    --bg-main:        #06090b;
    --bg-dark:        #000000;
    --bg-card:        #0d1114;
    --bg-input:       #11171a;
    --text-main:      #ffffff;
    --text-muted:     #a0aec0;
    --border-color:   #24323a;

    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto,
                   'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo',
                   'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    width: 100%;

    overflow-x: clip;

    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 15, 18, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-en { color: var(--text-main); }
.logo-ko { color: var(--primary); }

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 17px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-olive);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--brand-gold);
}

.header-spacer {
    height: 75px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-glow {
    position: relative;
    box-shadow: 0 10px 25px rgba(19, 90, 32, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 15px 35px rgba(19, 90, 32, 0.6);
    transform: translateY(-2px);
}

.section {
    padding: 130px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    word-break: keep-all;
    text-wrap: balance;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.section-full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.image-placeholder {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 40px;
    text-align: center;
    min-height: 200px;
}

.image-placeholder svg {
    margin-bottom: 12px;
    opacity: 0.5;
}

.hero-premium {
    position: relative;
    background: #0b0f12;
    padding: 130px 20px 270px;
    min-height: 100vh;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ambient-light {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(19, 90, 32, 0.15) 0%, rgba(11, 15, 18, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: float-light 10s infinite alternate ease-in-out;
}

.hero-ambient-light.light-2 {
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(50, 152, 80, 0.08) 0%, rgba(11, 15, 18, 0) 70%);
    animation: float-light 12s infinite alternate-reverse ease-in-out;
}

@keyframes float-light {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 35px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-badge:hover {
    border-color: var(--accent);
    background-color: rgba(50, 152, 80, 0.1);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

.badge-text {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(50, 152, 80, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(50, 152, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(50, 152, 80, 0); }
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.7;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    word-break: keep-all;
}

.hero-title span {
    display: inline-block;
}

.hero-desc {
    font-size: 21px;
    color: var(--text-muted);
    margin-bottom: 50px;
    word-break: keep-all;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.brand-shine-text {
    background: linear-gradient(90deg, rgb(90, 112, 48) 0%, rgb(232, 219, 142) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    font-weight: 800;
}

.scroll-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

.scroll-text {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

.metrics-section {
    border-top: 1px solid var(--border-color);
}

.metrics-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.metric-card-premium {
    position: relative;
    background: linear-gradient(180deg, rgba(20, 26, 31, 0.6) 0%, rgba(13, 17, 20, 0.9) 100%);
    border: 1px solid rgba(36, 50, 58, 0.5);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: left;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.metric-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(50, 152, 80, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(50, 152, 80, 0.05);
}

.metric-card-premium:hover::before {
    opacity: 1;
}

.metric-num-wrap {
    display: flex;
    align-items: baseline;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
}

.metric-card-premium .counter {
    color: var(--accent);
    font-weight: 800;
}

.metric-suffix {
    font-size: 22px;
    font-weight: 700;
    margin-left: 2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-divider {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 22px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.metric-card-premium:hover .metric-divider {
    width: 60px;
    background-color: var(--accent);
}

.metric-label-premium h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.metric-label-premium p {
    font-size: 13px;
    color: var(--text-muted);
}

.award-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.award-cinematic-bg {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #051c16 0%, #111a1e 50%, #0c261b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.award-overlay-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 112, 48, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.award-content-premium {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.award-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.award-title-premium {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 25px;
    word-break: keep-all;
    letter-spacing: -1px;
}

.award-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(232, 219, 142, 0.05);
    border: 1px solid rgba(232, 219, 142, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    margin-bottom: 35px;
}

.badge-crown {
    font-size: 22px;
}

.badge-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-gold) !important;
    letter-spacing: -0.5px;
}

.award-notice-premium {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    line-height: 1.5;
}

.award-banner-section {
    position: relative;
    z-index: 2;
    padding: 0;
    background-color: var(--bg-main) !important;
}

.award-sticky-wrapper {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
}

.story-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.story-card-premium {
    background-color: #003d2b;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-card-premium:hover {
    transform: translateY(-8px);
    background-color: #004d37;
}

.story-content-wrap {
    flex: 1;
    padding-right: 20px;
}

.story-badge-light {
    color: #a8c7be;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.story-text-main {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.story-image-wrap {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.story-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-badge {
    background-color: var(--primary-deep);
    color: var(--primary);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 15px;
}

.story-body    { padding: 30px; }
.story-title   { font-size: 20px; font-weight: 700; margin-bottom: 15px; line-height: 1.4; }
.story-meta    { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

.story-detail-block {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.story-detail-block strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.story-detail-block p {
    font-size: 14px;
    color: var(--text-muted);
}

.story-quote {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-left: 2px solid var(--primary);
    font-style: italic;
    font-size: 14px;
    margin-top: 20px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.youtube-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.youtube-card:hover {
    transform: translateY(-4px);
}

.video-thumb-mock {
    aspect-ratio: 16/9;
    background-color: #1a2227;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.play-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 2px;
}

.video-info  { padding: 15px; }

.video-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    margin-bottom: 8px;
}

.video-stats {
    font-size: 12px;
    color: var(--text-muted);
}

.news-list { margin-top: 30px; }

.news-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-main h4 { font-size: 16px; margin-bottom: 6px; color: var(--text-main); }
.news-main p  { font-size: 13px; color: var(--text-muted); }

.news-site {
    font-size: 12px;
    background-color: var(--bg-input);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--primary);
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.board-table th,
.board-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.board-table th {
    background-color: var(--bg-card);
    font-weight: 500;
    font-size: 15px;
}

.board-table td { font-size: 14px; }

.board-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.badge-status {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 3px;
}

.badge-status.complete {
    background-color: rgba(15, 164, 122, 0.2);
    color: var(--primary);
}

.profile-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.profile-img-mock {
    background-color: #1a2227;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.profile-details h3  { font-size: 24px; margin-bottom: 15px; }
.profile-details ul  { margin-top: 15px; }

.profile-details li {
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

.profile-details li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.consultation-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    color: var(--text-main);
    border-radius: 4px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input { accent-color: var(--primary); }

.form-notice {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

.main-footer {
    background-color: #06090b;
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 30px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    word-break: keep-all;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-col-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.floating-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(5, 34, 27, 0.96);
    border-top: 1px solid rgba(15, 164, 122, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-banner.show { bottom: 0; }

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
}

.banner-text {
    font-size: 27px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.banner-btn {
    background-color: var(--brand-gold) !important;
    color: #05221b;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    box-sizing: border-box;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.25);
}

.banner-btn:hover {
    background-color: var(--brand-olive) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.about-premium-bg {
    position: relative;
    background-color: var(--bg-main);
}

.about-premium-bg .section,
.about-premium-bg .container {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 30px;
    word-break: keep-all;
}

.about-text-lg {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.8;
    word-break: keep-all;
}

.watermark-logo {
    position: absolute;
    top: 120vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: url('../img/logo_color.png') no-repeat center/contain;
    opacity: 0.30;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.1s ease-out;
}

.business-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.biz-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.biz-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 90, 32, 0.25);
    border-color: rgba(50, 152, 80, 0.6);
    z-index: 10;
}

.biz-card:nth-child(1) { transition-delay: 0.1s; }
.biz-card:nth-child(2) { transition-delay: 0.3s; }
.biz-card:nth-child(3) { transition-delay: 0.5s; }

.biz-card-title {
    background-color: var(--primary);
    color: #ffffff;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.biz-card-desc {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.biz-card-desc p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.biz-card-desc p:last-child { margin-bottom: 0; }

.biz-card.fade-up {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.biz-card.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.vision-section {
    padding-top: 160px;
    padding-bottom: 250px;
    border-top: 1px solid #24323a;
}

.vision-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: flex-start;
}

.vision-sticky-left {
    position: sticky;
    top: 30vh;
}

.vision-sticky-left h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -1px;
    word-break: keep-all;
}

.vision-scroll-right {
    display: flex;
    flex-direction: column;
    gap: 200px;
    padding-top: 10vh;
    padding-bottom: 60vh;
}

.vision-item h4 {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-item h4::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 2px;
}

.vision-item p {
    font-size: 16px;
    color: var(--text-muted);
    padding-left: 16px;
}

.vision-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.spotlight-track {
    display: flex;
    flex-direction: column;
    gap: 40vh;
    padding-top: 20vh;
    padding-bottom: 50vh;
}

.spotlight-item {
    opacity: 0.15;
    filter: blur(10px);
    transform: scale(0.9) translateY(40px);
    transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.spotlight-item.active {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1) translateY(0);
}

.spotlight-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
}

.spotlight-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
    word-break: keep-all;
    letter-spacing: -1px;
}

.spotlight-desc {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    word-break: keep-all;
}

.vision-scroll-right .vision-item {
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.12;
    transform: translateX(40px) scale(0.92);
}

.vision-scroll-right .vision-item.active {
    opacity: 1;
    transform: translateX(0) scale(1.06);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.scale-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-up-stagger {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpStagger 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpStagger {
    to { opacity: 1; transform: translateY(0); }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (max-width: 992px) {
    .youtube-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid-premium {
        grid-template-columns: 1fr;
    }

    .story-text-main {
        font-size: 22px;
    }

    .story-image-wrap {
        width: 100px;
        height: 100px;
    }

    .vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-sticky-left {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .vision-sticky-left h2 {
        font-size: 32px;
    }

    .vision-scroll-right {
        padding-top: 0;
        padding-bottom: 0;
        gap: 50px;
    }

    .vision-scroll-right .vision-item {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    .vision-item h4 { font-size: 22px; }
    .vision-item p  { font-size: 15px; }

    .metrics-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .award-cinematic-bg {
        padding: 50px 40px;
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }

    .nav-menu.open { display: block; }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .menu-toggle { display: flex; }

    .hero-premium {
        padding: 130px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.45;
    }

    .hero-ambient-light {
        width: 300px;
        height: 300px;
        filter: blur(50px);
    }

    .scroll-indicator { display: none; }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .metrics-grid-premium {
        grid-template-columns: 1fr;
    }

    .metric-card-premium { padding: 35px 25px; }

    .awards-grid,
    .story-grid,
    .profile-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .award-cinematic-bg {
        padding: 50px 30px;
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }

    .award-content-premium {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .award-title-premium { font-size: 28px; }
    .award-badge-premium { padding: 10px 18px; }

    .biz-card { grid-template-columns: 1fr; }
    .biz-card-title { padding: 25px; font-size: 20px !important; }
    .biz-card-desc  { padding: 25px; }
    .biz-card-desc p { font-size: 17px; }
    .biz-card-desc .biz-card-strong { color: var(--brand-gold); font-size: 18px !important;}

    .about-hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .about-text-lg {
        font-size: 17px;
        line-height: 1.6;
    }

    .about-text-lg.about-hero-sub {
        font-size: 20px !important;
    }

    .about-section-heading {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .watermark-logo {
        top: 130vh;
        width: 500px;
        height: 500px;
        opacity: 0.70 !important;
    }

    .section-title.edu-title {
        font-size: 32px;
}

    .spotlight-title { font-size: 32px; }
    .spotlight-desc  { font-size: 20px; }
    .spotlight-track { gap: 25vh; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-links { margin-top: -10px; }

    .banner-content {
        justify-content: space-between;
        gap: 15px;
        padding: 13px 20px;
    }

    .banner-text { font-size: 17px; }
    .banner-btn  { font-size: 15px; padding: 7px 16px; }

    .edu-intro-main {
        font-size: 20px !important;
    }
    .edu-intro-main br {
        display: none !important;
    }
    .edu-intro-accent {
        font-size: 26px !important;
    }

}

.section-label {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.section-label--center { text-align: center; }

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 40px;
}

.section-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title--left {
    margin-bottom: 0;
    text-align: left;
}

.section-more-link {
    color: var(--accent);
    font-size: 14px;
}

.section--border-top {
    border-top: 1px solid var(--border-color);
}

.section--pb-lg {
    padding-bottom: 100px;
}

.about-hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.about-hero-inner {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.about-hero-sub {
    font-weight: 500;
    margin-bottom: 60px;
}

.about-text-lg.about-hero-sub {
    font-size: 22px;
    color: var(--text-main);
}

.about-divider {
    width: 2px;
    height: 60px;
    background-color: var(--brand-olive);
    margin: 0 auto 50px;
}

.about-block-gap { margin-bottom: 60px; }

.about-result-text {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-spacer {
    height: 120vh;
    position: relative;
    z-index: 0;
}

.about-business-section {
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-section-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-img-section {
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.image-placeholder--tall {
    min-height: 400px;
    background-color: #0b0f12;
    border: 2px dashed var(--border-color);
}

.image-placeholder-label {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 15px;
}

.biz-card-strong {
    font-weight: 700;
    color: var(--brand-gold) !important;
}

.edu-hero-section { padding: 100px 10px; }

.edu-title {
    font-size: 48px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.edu-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.8;
}

.edu-intro-main {
    font-size: 22px;
    margin-bottom: 40px;
    word-break: keep-all;
    color: #ffffff;
}

.edu-intro-accent {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-gold);
    padding-top: 30px;
    word-break: keep-all;
}

.edu-recommend-section {
    background-color: var(--bg-card);
    padding: 100px 10px;
}

.edu-recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.edu-recommend-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: border-color 0.3s ease;
}

.edu-recommend-card:hover {
    border-color: var(--accent);
}

.edu-recommend-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.edu-recommend-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

.profile-role {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-logo-wrap {
    display: flex;
    align-items: center;
    gap: 11px;
}

.banner-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.award-badge-premium--white {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.badge-title--white { color: #ffffff; }

.subpage-header {
    padding-top: 140px !important;
}

@media (max-width: 768px) {
    .subpage-header {
        padding-top: 100px !important;
    }
}

.page-title-big { font-size: 48px; text-align: center; margin-bottom: 30px; line-height: 1.3; font-weight: 700; word-break: keep-all; text-wrap: balance;}
.page-desc-center { text-align: center; font-size: 22px; color: var(--text-muted); line-height: 1.8; margin-bottom: 60px; word-break: keep-all; }

@media (max-width: 768px) {

    .page-title-big {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }

    .page-desc-center {
        font-size: 18px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 12px !important;
        word-break: keep-all;
    }

    .page-desc-center br {
        display: none !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .contact-title {
        font-size: 20px !important;
    }

}

.br-pc { display: block; }
@media (max-width: 768px) {
    .br-pc { display: none !important; }
}

.br-mobile { display: none; }
@media (max-width: 768px) {
    .br-mobile { display: block !important; }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(11, 15, 18, 0.55) 0%,
        rgba(11, 15, 18, 0.45) 45%,
        rgba(11, 15, 18, 0.88) 100%);
}

.hero-premium .hero-content { z-index: 2; }
.hero-premium .scroll-indicator { z-index: 2; }

.about-cinematic {
    position: relative;
    height: 233vh;
}

.about-cinematic-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-main);
}

.about-cinematic-bg {
    position: absolute;
    inset: -3%;
    /* background-size: cover;
    background-position: 35% center; */
    background-size: auto 65%;
    background-repeat: no-repeat;
    background-position: 35% center;
    transform: scale(1);
    will-change: transform;
    z-index: 0;
}

.about-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 11, 0.55);
    z-index: 1;
    will-change: background;
}

.about-cinematic-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    will-change: transform, opacity;
}

.about-cinematic-content .about-hero-inner {
    margin-left: auto;
    margin-right: auto;
}

.about-cinematic-content .about-text-lg:not(.about-hero-sub) {
    color: #d2d9e1;
}

.about-business-section {
    margin-top: -40vh;
    z-index: 5;
}

@media (max-width: 768px) {
    .about-cinematic { height: 211vh; }
    .about-business-section { margin-top: -33vh; }
}