/* ===========================
   BEACH Corp. - Main Stylesheet
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #6C3FD1;
    --primary-light: #8B6FE0;
    --primary-dark: #5228B0;
    --primary-bg: #F4F0FF;
    --orange: #E8861A;
    --orange-light: #FFF4E8;
    --green: #2D9C5A;
    --green-light: #EAFAF0;
    --red: #D94A4A;
    --red-light: #FFF0F0;
    --dark: #1A1A2E;
    --text: #333340;
    --text-light: #6B6B80;
    --text-muted: #9999AA;
    --border: #E8E8F0;
    --bg: #FFFFFF;
    --bg-gray: #F7F7FB;
    --bg-dark: #16162A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    transition: all var(--transition); gap: 8px;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(108,63,209,0.3); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 24px rgba(108,63,209,0.4); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===========================
   UTILITY BAR
   =========================== */
.util-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--dark) 100%);
    height: 40px; transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.util-bar.hidden { transform: translateY(-100%); }
.util-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.util-welcome { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 400; letter-spacing: 0.3px; }
.util-right { display: flex; align-items: center; gap: 16px; }
.util-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); padding: 5px 16px;
    border-radius: 6px; cursor: pointer; transition: all var(--transition);
    font-family: inherit; font-weight: 500;
}
.util-btn:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.util-btn svg { opacity: 0.85; }

/* ===========================
   LOGIN MODAL
   =========================== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: white; border-radius: var(--radius-md); padding: 48px 40px;
    width: 100%; max-width: 420px; position: relative;
    box-shadow: var(--shadow-lg); transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
    position: absolute; top: 16px; right: 16px; color: var(--text-muted);
    cursor: pointer; transition: color var(--transition); background: none; border: none;
}
.modal-close:hover { color: var(--dark); }

.modal-header { text-align: center; margin-bottom: 32px; }
.modal-logo {
    height: 40px; width: auto; margin: 0 auto 16px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(60%) saturate(3000%) hue-rotate(250deg);
}
.modal-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.modal-header p { font-size: 0.88rem; color: var(--text-muted); }

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.modal-form-group input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--text);
    transition: border-color var(--transition); background: var(--bg-gray);
}
.modal-form-group input::placeholder { color: var(--text-muted); }
.modal-form-group input:focus { outline: none; border-color: var(--primary); background: white; }

.modal-form-options {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.82rem;
}
.modal-checkbox {
    display: flex; align-items: center; gap: 6px; color: var(--text-light); cursor: pointer;
}
.modal-checkbox input { width: 16px; height: 16px; accent-color: var(--primary); }
.modal-link { color: var(--text-muted); transition: color var(--transition); }
.modal-link:hover { color: var(--primary); }

.modal-footer {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
    text-align: center;
}
.modal-footer p { font-size: 0.8rem; color: var(--text-muted); }
.modal-footer a { color: var(--primary); font-weight: 500; }

/* ===========================
   HEADER
   =========================== */
#header {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent; transition: all var(--transition); height: var(--header-h);
}
#header.util-hidden { top: 0; }
#header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; filter: brightness(0) saturate(100%) invert(24%) sepia(60%) saturate(3000%) hue-rotate(250deg); }

.gnb ul { display: flex; align-items: center; gap: 4px; }
.gnb a { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: var(--text); border-radius: 8px; transition: all var(--transition); }
.gnb a:hover { color: var(--primary); background: var(--primary-bg); }

.btn-contact-nav {
    background: var(--primary) !important; color: #fff !important;
    padding: 8px 20px !important; border-radius: 50px !important;
    font-weight: 600 !important; margin-left: 8px;
}
.btn-contact-nav:hover { background: var(--primary-dark) !important; }

/* --- Dropdown Menu --- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-arrow { transition: transform var(--transition); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 180px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.25s ease; z-index: 1100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
    display: block; padding: 10px 20px; font-size: 0.85rem; font-weight: 400;
    color: var(--text); white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: var(--primary-bg); color: var(--primary);
}

/* --- Mobile Dropdown --- */
.mobile-has-dropdown { width: 100%; text-align: center; }
.mobile-dropdown {
    display: none; padding: 4px 0;
}
.mobile-has-dropdown.active .mobile-dropdown { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mobile-dropdown a { font-size: 1.1rem !important; font-weight: 400 !important; color: var(--text-light) !important; padding: 8px 20px !important; }
.mobile-dropdown a:hover { color: var(--primary) !important; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1100; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav a { font-size: 1.5rem; font-weight: 600; color: var(--dark); padding: 12px 24px; border-radius: 12px; transition: all var(--transition); }
.mobile-nav a:hover { color: var(--primary); background: var(--primary-bg); }

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding-top: calc(var(--header-h) + 40px); overflow: hidden;
    background: linear-gradient(135deg, #F8F6FF 0%, #FFFFFF 50%, #F0EDFF 100%);
}
.hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(108,63,209,0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(232,134,26,0.04) 0%, transparent 50%);
}
.hero-content {
    position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-sub { font-size: 0.95rem; font-weight: 600; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.3; color: var(--dark); margin-bottom: 24px; }
.hero-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.9; }
.hero-desc strong { color: var(--dark); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual with real image */
.hero-visual { position: relative; }
.hero-image-wrap {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-image-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(22,22,42,0.4) 100%);
}
.hero-img { width: 100%; height: 400px; object-fit: cover; }

.hero-stat-card {
    position: absolute; bottom: -40px; left: 24px; right: 24px;
    background: white; border-radius: var(--radius-md); padding: 28px 24px;
    box-shadow: var(--shadow-lg); z-index: 2;
}
.hero-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--orange)); border-radius: 4px 4px 0 0;
}
.hero-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat-unit { font-size: 1rem; font-weight: 700; color: var(--primary); }
.hero-stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--primary); animation: scrollDown 2s ease infinite; }
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* ===========================
   TRUST BANNER
   =========================== */
.trust-banner { background: var(--primary); padding: 48px 0; text-align: center; }
.trust-text { color: rgba(255,255,255,0.9); font-size: 1.3rem; font-weight: 400; }
.trust-text strong { color: #fff; font-weight: 700; }

/* ===========================
   SECTIONS (common)
   =========================== */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; }

/* ===========================
   ABOUT
   =========================== */
.section-about { background: var(--bg-gray); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.about-company-name { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.about-desc { font-size: 1rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.8; }
.about-table { width: 100%; border-collapse: collapse; }
.about-table tr { border-bottom: 1px solid var(--border); }
.about-table th, .about-table td { padding: 14px 0; text-align: left; font-size: 0.9rem; }
.about-table th { font-weight: 600; color: var(--dark); width: 110px; white-space: nowrap; }
.about-table td { color: var(--text-light); }

.ceo-message-card {
    background: white; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md); position: relative;
}
.ceo-bg-image {
    width: 100%; height: 180px; background-size: cover; background-position: center;
    position: relative;
}
.ceo-bg-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(108,63,209,0.15) 0%, rgba(22,22,42,0.3) 100%);
}
.ceo-message-content { padding: 32px; position: relative; }
.ceo-message-content::before { display: none; }
.ceo-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.ceo-message-card h4 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.ceo-message-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.8; }
.ceo-sign { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-muted); }
.ceo-sign strong { font-size: 1.1rem; color: var(--dark); }

/* ===========================
   WHY BEACH
   =========================== */
.section-why { background: white; }

/* Before/After */
.before-after { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 80px; }
.ba-card { background: var(--bg-gray); border-radius: var(--radius-md); padding: 40px 32px; text-align: center; flex: 1; max-width: 360px; }
.ba-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; color: var(--text-muted); }
.ba-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 16px; }
.ba-brand { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: #B0B0C0; color: white; font-weight: 700; font-size: 0.85rem; }
.ba-brand-active { background: var(--green); box-shadow: 0 4px 16px rgba(45,156,90,0.3); }
.ba-icon-warning { width: 48px; height: 48px; }
.ba-icon-comm { width: 56px; height: 56px; }
.ba-stores { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.ba-stores span { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #D4C5A0; color: white; font-size: 0.7rem; font-weight: 600; }
.ba-beach-logo { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); padding: 12px 20px; border-radius: 12px; box-shadow: 0 4px 16px rgba(108,63,209,0.3); }
.ba-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.ba-card p { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.ba-arrow-center { flex-shrink: 0; }
.ba-arrow-img { width: 48px; height: 48px; opacity: 0.5; }

/* Benefits with real icons */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-card {
    background: var(--bg-gray); border-radius: var(--radius-md); padding: 36px 28px;
    transition: all var(--transition); border: 1px solid transparent;
}
.benefit-card:hover { background: white; border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-icon { margin-bottom: 20px; }
.benefit-icon-img { width: 56px; height: 56px; object-fit: contain; }
.benefit-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.benefit-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===========================
   OPERATIONS
   =========================== */
.section-operations { background: var(--bg-gray); }
.ops-intro { text-align: center; font-size: 1.02rem; color: var(--text-light); line-height: 1.8; margin-bottom: 48px; max-width: 900px; margin-left: auto; margin-right: auto; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 80px; }
.service-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card-header { padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
.service-purple { background: var(--primary-bg); }
.service-green { background: var(--green-light); }
.service-orange { background: var(--orange-light); }
.service-red { background: var(--red-light); }
.service-num { font-size: 0.8rem; font-weight: 800; color: var(--text-muted); }
.service-card-header h3 { font-size: 1.15rem; font-weight: 700; }
.service-purple h3 { color: var(--primary-dark); }
.service-green h3 { color: var(--green); }
.service-orange h3 { color: var(--orange); }
.service-red h3 { color: var(--red); }
.service-list { padding: 20px 28px 28px; }
.service-list li { padding: 8px 0 8px 20px; position: relative; font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; border-radius: 50%; background: var(--border); }

/* Op Highlights with real screenshots */
.op-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.op-highlight { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.op-highlight:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.op-highlight-visual { width: 100%; height: 200px; overflow: hidden; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; }
.op-img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.op-highlight h4 { font-size: 1.15rem; font-weight: 700; color: var(--dark); padding: 20px 24px 8px; }
.op-highlight p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; padding: 0 24px 24px; }

/* ===========================
   RESULTS
   =========================== */
.section-results { background: white; position: relative; overflow: hidden; }
.section-results-bg {
    position: absolute; top: 0; right: 0; width: 40%; height: 400px;
    background-size: cover; background-position: center; opacity: 0.08;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}
.results-content { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.results-text { text-align: center; margin-bottom: 40px; }
.results-text p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.8; }

.results-banner {
    background: var(--primary-bg); border-left: 4px solid var(--primary);
    padding: 24px 32px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 48px; text-align: center;
}
.results-banner p { font-size: 1rem; color: var(--text); margin-bottom: 4px; }

.results-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.chart-card { background: var(--bg-gray); border-radius: var(--radius-md); padding: 32px; }
.chart-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 24px; }
.chart-bars { display: flex; justify-content: center; gap: 40px; height: 200px; align-items: flex-end; padding-bottom: 32px; }
.chart-group { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.chart-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; order: 1; }
.chart-bar-set { display: flex; gap: 6px; align-items: flex-end; height: 160px; }
.chart-bar { width: 28px; border-radius: 4px 4px 0 0; transition: height 1s ease; }
.bar-beach { background: var(--primary); }
.bar-a { background: #90D4A0; }
.bar-b { background: var(--orange); }
.bar-other { background: #90D4A0; }
.chart-legend { display: flex; justify-content: center; gap: 24px; padding-top: 16px; }
.chart-legend span { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.chart-legend span::before { content: ''; display: block; width: 12px; height: 12px; border-radius: 3px; }
.legend-beach::before { background: var(--primary); }
.legend-a::before { background: #90D4A0; }
.legend-b::before { background: var(--orange); }
.legend-other::before { background: #90D4A0; }

.results-closing { text-align: center; font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.chart-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ===========================
   GOALS & PROCESS
   =========================== */
.section-goals { background: var(--bg-gray); }

.goals-kpi { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 64px; }
.kpi-card { background: white; border-radius: var(--radius-md); padding: 36px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.kpi-highlight { background: var(--primary); }
.kpi-value { display: block; font-size: 3rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 12px; }
.kpi-highlight .kpi-label { color: rgba(255,255,255,0.8); }
.kpi-value-text { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.kpi-label { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* Timeline */
.timeline-goals { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 80px; justify-content: center; }
.timeline-card { background: white; border-radius: var(--radius-md); padding: 32px; flex: 1; max-width: 300px; box-shadow: var(--shadow-sm); }
.timeline-period { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.timeline-duration { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--primary-bg); }
.timeline-card ul li { padding: 6px 0 6px 16px; position: relative; font-size: 0.9rem; color: var(--text-light); }
.timeline-card ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.timeline-arrow { padding-top: 48px; flex-shrink: 0; }
.timeline-arrow-img { width: 32px; height: 32px; opacity: 0.4; }

/* Collaboration Process with real icons */
.collab-process { text-align: center; }
.collab-process h3 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.collab-sub { font-size: 1rem; color: var(--text-light); margin-bottom: 48px; }
.process-steps { display: flex; align-items: flex-start; gap: 8px; justify-content: center; flex-wrap: wrap; }
.process-step {
    background: white; border-radius: var(--radius-md); padding: 24px 16px; width: 150px;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-icon { width: 48px; height: 48px; margin: 0 auto 12px; }
.step-icon img { width: 100%; height: 100%; object-fit: contain; }
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.78rem; color: var(--text-light); line-height: 1.7; }
.process-connector { display: flex; align-items: center; margin-top: 50px; flex-shrink: 0; }
.connector-arrow { width: 24px; height: 24px; opacity: 0.3; }

/* ===========================
   PARTNERS
   =========================== */
.section-partners { background: white; }
.partners-grid {
    display: grid; grid-template-columns: repeat(7,1fr); gap: 20px;
    align-items: center;
}
.partner-logo-card {
    background: var(--bg-gray); border-radius: var(--radius-sm); padding: 20px 16px;
    display: flex; align-items: center; justify-content: center; min-height: 80px;
    transition: all var(--transition);
}
.partner-logo-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.partner-logo-card img {
    max-height: 48px; max-width: 100%; object-fit: contain;
    filter: grayscale(100%); opacity: 0.6; transition: all var(--transition);
}
.partner-logo-card:hover img { filter: grayscale(0%); opacity: 1; }

/* ===========================
   CONTACT
   =========================== */
.section-contact { background: var(--bg-dark); padding: 100px 0; position: relative; overflow: hidden; }
.section-contact-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0.06;
}
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.contact-logo { margin-bottom: 24px; }
.contact-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.contact-info .section-label { color: var(--primary-light); }
.contact-info h2 { font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 12px; }
.contact-info > p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; color: rgba(255,255,255,0.4); }
.contact-item div span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item div strong { font-size: 1rem; color: white; font-weight: 600; }

.contact-form-wrap {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
    color: white; font-size: 0.95rem; transition: all var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }
.form-check label { margin-bottom: 0 !important; font-size: 0.85rem; color: rgba(255,255,255,0.5); cursor: pointer; }

/* ===========================
   FOOTER
   =========================== */
#footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-brand p { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-bottom: 4px; }

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: white; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(108,63,209,0.3); opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all var(--transition); z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ===========================
   PAGE BANNER
   =========================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #3A1A80 100%);
    padding: 56px 0 48px;
    padding-top: calc(56px + var(--header-h) + 40px);
    text-align: center; color: white;
    position: relative; overflow: hidden;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-title { font-size: 2rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px; }
.page-banner-sub { font-size: 0.85rem; opacity: 0.55; letter-spacing: 3px; text-transform: uppercase; font-weight: 300; }

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb { background: #fff; padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border); font-size: 0.7rem; }
.breadcrumb-current { color: var(--primary); font-weight: 600; }

/* ===========================
   PAGE LAYOUT (SIDEBAR + CONTENT)
   =========================== */
.page-content { padding: 48px 0 80px; background: var(--bg-gray); min-height: 60vh; }
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.page-sidebar { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.sidebar-title {
    font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.3px;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.sidebar-nav {
    display: flex; flex-direction: column; background: #fff;
    border: 1px solid var(--border); border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.sidebar-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; font-size: 0.93rem; color: var(--text);
    border-bottom: 1px solid var(--border); transition: all var(--transition);
    font-weight: 500;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link::after { content: '+'; color: var(--text-muted); font-size: 1rem; font-weight: 300; }
.sidebar-link:hover { color: var(--primary); background: var(--primary-bg); }
.sidebar-link.active {
    color: #fff; font-weight: 600; background: var(--primary);
}
.sidebar-link.active::after { content: ''; }
.page-main {
    min-height: 500px; background: #fff; border-radius: var(--radius-md);
    padding: 40px 48px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===========================
   QUICKLINKS (Landing page)
   =========================== */
.section-quicklinks { padding: 100px 0; }
.quicklinks-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.quicklink-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 32px 24px; text-align: center; transition: all var(--transition);
    display: block;
}
.quicklink-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quicklink-icon {
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
}
.quicklink-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.quicklink-card p { font-size: 0.85rem; color: var(--text-light); }
.quicklinks-cta { text-align: center; margin-top: 48px; display: flex; gap: 16px; justify-content: center; }

/* Tab panel title */
.tab-panel-title {
    font-size: 1.6rem; font-weight: 700; color: var(--dark);
    padding-bottom: 20px; margin-bottom: 32px; border-bottom: 2px solid var(--border);
}

/* Active nav for multi-page */
.gnb > ul > li > a.nav-active { color: var(--primary) !important; }

/* Full-width page (no sidebar) */
.page-full { padding: 48px 0 80px; background: var(--bg-gray); min-height: 60vh; }

/* ===========================
   GREETING
   =========================== */
.section-greeting { background: var(--bg-gray); }
.greeting-content {
    display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start;
}
.greeting-ceo-photo { position: sticky; top: 140px; }
.greeting-photo-wrap {
    width: 280px; height: 360px; border-radius: var(--radius-md);
    background-size: cover; background-position: center top;
    box-shadow: var(--shadow-md);
}
.greeting-message h3 {
    font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; line-height: 1.4;
}
.greeting-message p { margin-bottom: 16px; color: var(--text); line-height: 1.9; }
.greeting-sign {
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 4px;
}
.greeting-sign span { font-size: 0.9rem; color: var(--text-light); }
.greeting-sign strong { font-size: 1.3rem; color: var(--dark); }

/* ===========================
   HISTORY
   =========================== */
.section-history { background: var(--bg-gray); }
.history-timeline {
    position: relative; max-width: 700px; margin: 0 auto;
    padding-left: 40px;
}
.history-timeline::before {
    content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
    width: 2px; background: var(--primary-light);
}
.history-item {
    position: relative; margin-bottom: 40px; padding-left: 32px;
}
.history-item::before {
    content: ''; position: absolute; left: -28px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--primary); border: 3px solid var(--primary-bg);
}
.history-year {
    font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px;
}
.history-content ul { list-style: none; }
.history-content li {
    padding: 4px 0; color: var(--text); position: relative; padding-left: 16px;
}
.history-content li::before {
    content: '—'; position: absolute; left: 0; color: var(--text-muted);
}

/* ===========================
   ORGANIZATION
   =========================== */
/* org-chart */
.org-chart {
    max-width: 820px; margin: 0 auto; position: relative;
}
.org-level { display: flex; justify-content: center; position: relative; }
.org-box {
    background: #fff; border: 2px solid #ddd; border-radius: 14px;
    padding: 18px 32px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* CEO */
.org-ceo {
    border-color: var(--primary); background: var(--primary-bg);
    padding: 22px 48px; min-width: 200px;
}
.org-ceo strong { font-size: 1.4rem; color: var(--primary); }
.org-ceo span { display: block; font-size: 0.95rem; color: var(--text-light); margin-top: 6px; }

/* Advisors - 대표이사 아래 오른쪽 */
.org-level-advisor {
    position: absolute; top: 0; right: 60px;
    display: flex; align-items: center; height: 100%;
}
.org-advisor-line {
    width: 40px; height: 2px; background: #ddd;
}
.org-advisor-group {
    display: flex; flex-direction: column; gap: 10px;
}
.org-advisor {
    padding: 10px 28px; font-size: 0.9rem; border-radius: 10px;
}

/* 대표 → 사업부 수직선 */
.org-vline {
    width: 2px; height: 40px; background: #ddd; margin: 0 auto;
}
/* 수평 연결선 */
.org-hline {
    height: 2px; background: #ddd;
    margin: 0 auto; width: 66%;
}

/* 사업부 레벨 */
.org-level-dept {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; padding: 0 20px;
}
.org-branch {
    display: flex; flex-direction: column; align-items: center;
}
.org-branch-vline {
    width: 2px; height: 32px; background: #ddd;
}

/* 사업부 박스 */
.org-dept {
    background: #222; border-color: #222; color: #fff;
    padding: 18px 24px; min-width: 160px; font-weight: 700; font-size: 1.05rem;
}

/* 하위 팀 */
.org-sub {
    display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
    position: relative; padding-top: 16px;
}
.org-sub::before {
    content: ''; position: absolute; top: 0; left: 50%;
    width: 2px; height: 16px; background: #ddd;
}
.org-team {
    padding: 14px 28px; font-size: 0.92rem; border-radius: 12px;
}

/* 모바일 */
@media (max-width: 768px) {
    .org-level-advisor { position: static; justify-content: center; margin-top: 16px; }
    .org-advisor-line { width: 0; height: 0; }
    .org-advisor-group { flex-direction: row; }
    .org-level-dept { grid-template-columns: 1fr; gap: 20px; }
    .org-hline { width: 90%; }
}

/* ===========================
   SERVICES (서비스 소개)
   =========================== */
.section-services { background: var(--bg); }
.svc-block { margin-bottom: 48px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.svc-header { padding: 32px 40px; color: #fff; position: relative; }
.svc-header h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.svc-header p { font-size: 0.95rem; opacity: 0.9; line-height: 1.6; }
.svc-badge {
    display: inline-block; background: rgba(255,255,255,0.25); color: #fff;
    font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px;
    margin-bottom: 12px; letter-spacing: 1px;
}
.svc-purple { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.svc-green { background: linear-gradient(135deg, var(--green), #3DBB6E); }
.svc-orange { background: linear-gradient(135deg, var(--orange), #F5A04C); }
.svc-red { background: linear-gradient(135deg, var(--red), #E87070); }

.svc-process {
    display: flex; align-items: flex-start; justify-content: center;
    padding: 40px 32px; gap: 8px; flex-wrap: wrap;
}
.svc-step {
    flex: 1; min-width: 140px; max-width: 200px; text-align: center;
    padding: 16px 12px;
}
.svc-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary-bg); color: var(--primary);
    font-weight: 800; font-size: 0.85rem; margin-bottom: 12px;
}
.svc-step h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.svc-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.svc-connector {
    display: flex; align-items: center; padding-top: 24px; color: var(--text-muted);
}

/* ===========================
   RECRUIT (채용정보)
   =========================== */
.section-recruit { background: var(--bg-gray); }
.recruit-content { display: flex; justify-content: center; }
.recruit-card {
    background: #fff; border-radius: var(--radius-md); padding: 48px;
    text-align: center; max-width: 560px; width: 100%;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.recruit-icon { margin-bottom: 20px; }
.recruit-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.recruit-card p { color: var(--text-light); margin-bottom: 24px; line-height: 1.8; }
.recruit-card .btn { display: inline-block; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.6rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 540px; margin: 0 auto; }
    .hero-stat-card { bottom: -32px; left: 16px; right: 16px; }
    .hero-stat-grid { grid-template-columns: repeat(4,1fr); }

    .about-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .quicklinks-grid { grid-template-columns: repeat(2,1fr); }
    .goals-kpi { grid-template-columns: repeat(2,1fr); }
    .results-charts { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(4,1fr); }
    .greeting-content { grid-template-columns: 1fr; justify-items: center; }
    .greeting-ceo-photo { position: static; }
    .org-departments { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }
    .util-welcome { display: none; }
    .util-bar { height: 32px; }
    .util-btn { font-size: 0.7rem; padding: 3px 10px; }
    .page-layout { grid-template-columns: 1fr; gap: 0; }
    .page-sidebar { position: static; margin-bottom: 32px; }
    .sidebar-nav { flex-direction: row; overflow-x: auto; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
    .sidebar-link { white-space: nowrap; padding: 12px 16px; font-size: 0.85rem; border-bottom: none; border-right: 1px solid var(--border); }
    .sidebar-link::after { display: none; }
    .sidebar-link:last-child { border-right: none; }
    .page-banner { padding-top: calc(48px + var(--header-h) + 32px); padding-bottom: 36px; }
    .page-banner-title { font-size: 1.5rem; }
    .page-main { padding: 24px 20px; }
    #header { top: 32px; }
    .hero { padding-top: calc(var(--header-h) + 32px) !important; }
    .gnb { display: none; }
    .mobile-menu-btn { display: flex; }
    .section { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-content { padding: 40px 24px 80px; }
    .hero-stat-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .hero-stat-num { font-size: 1.8rem; }
    .hero-scroll { display: none; }
    .trust-text { font-size: 1rem; }
    .before-after { flex-direction: column; gap: 16px; }
    .ba-card { max-width: 100%; }
    .ba-arrow-center { transform: rotate(90deg); }
    .benefits-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .op-highlights { grid-template-columns: 1fr; }
    .goals-kpi { grid-template-columns: 1fr; }
    .timeline-goals { flex-direction: column; align-items: center; }
    .timeline-card { max-width: 100%; width: 100%; }
    .timeline-arrow { transform: rotate(90deg); padding-top: 0; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { transform: rotate(90deg); margin-top: 0; }
    .process-step { width: 100%; max-width: 300px; }
    .svc-process { flex-direction: column; align-items: center; }
    .svc-connector { transform: rotate(90deg); padding-top: 0; }
    .svc-step { max-width: 300px; width: 100%; }
    .org-departments { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .org-departments::before { display: none; }
    .greeting-content { grid-template-columns: 1fr; }
    .greeting-photo-wrap { width: 200px; height: 260px; margin: 0 auto; }
    .partners-grid { grid-template-columns: repeat(3,1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .hero-stat-card { padding: 20px 16px; }
    .hero-stat-num { font-size: 1.5rem; }
    .chart-bars { gap: 20px; }
    .chart-bar { width: 20px; }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    .partner-logo-card { padding: 16px 12px; min-height: 64px; }
    .partner-logo-card img { max-height: 36px; }
}
