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

:root {
    --primary: #0a1628;
    --primary-mid: #162d50;
    --primary-light: #1e4d8c;
    --accent: #c8a04e;
    --accent-light: #e8c96d;
    --accent-rose: #d4556b;
    --teal: #2ec4b6;
    --dark: #060d1a;
    --gray: #2c3e50;
    --gray-light: #5a6d7e;
    --light: #f4f6f9;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --gradient-gold: linear-gradient(135deg, #c8a04e 0%, #e8c96d 50%, #c8a04e 100%);
    --gradient-hero: linear-gradient(160deg, #040810 0%, #0a1628 30%, #162d50 70%, #1e3a5f 100%);
    --gradient-dark: linear-gradient(180deg, #060d1a 0%, #0a1628 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 32px rgba(200,160,78,0.2);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', -apple-system, sans-serif;
    color: #111111;
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(153,0,40,0.97); backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(120,0,30,0.4);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(130,0,30,1);
    box-shadow: 0 4px 30px rgba(100,0,20,0.3);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.logo {
    font-size: 1.15rem; font-weight: 800; color: #ffe600;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -0.02em;
}
.logo span {
    font-size: 0.7rem; font-weight: 500; color: #ffe600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 2px 8px; border: 1px solid rgba(255,255,255,0.35); border-radius: 4px;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
    padding: 8px 13px; border-radius: 10px; font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.85); transition: var(--transition); position: relative;
}
.nav-menu a:hover { color: #ffffff; background: rgba(255,255,255,0.15); }
.nav-menu a.active { color: #ffffff; font-weight: 700; }
.nav-menu a.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #ffffff;
}
.nav-cta {
    background: #ffffff !important; color: #c73050 !important;
    padding: 9px 22px !important; border-radius: 10px !important;
    font-weight: 600 !important; letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(10,22,40,0.2);
}
.nav-cta:hover {
    background: #ffe0e6 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3) !important;
}
.mobile-menu-btn {
    display: none; background: none; border: 1px solid #e0e0e0;
    font-size: 1.2rem; cursor: pointer; width: 42px; height: 42px;
    border-radius: 10px; transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--light); }

/* ===== Hero ===== */
.hero {
    padding: 120px 0 60px;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(200,160,78,0.08) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
    content: ''; position: absolute; bottom: -50%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,196,182,0.06) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 100px;
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent-light);
    margin-bottom: 28px;
}
.hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-size: 2.8rem; font-weight: 900; line-height: 1.25;
    margin-bottom: 16px; letter-spacing: -0.03em;
}
.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.9);
    margin-bottom: 24px; max-width: 560px; line-height: 1.6;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 24px; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
    transition: var(--transition); cursor: pointer; border: none;
    letter-spacing: 0.02em; position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
    background: var(--gradient-gold); color: var(--primary);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,160,78,0.35);
}
.btn-secondary {
    background: var(--glass); color: rgba(255,255,255,0.9);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ===== Sections ===== */
.section { padding: 48px 0; }
.section-alt { background: var(--light); }

/* 섹션 배경색 바리에이션 */
.section-bg-rose { background: linear-gradient(135deg, #fff0f3 0%, #fce4ec 100%); }
.section-bg-sky { background: linear-gradient(135deg, #e8f4fd 0%, #dbeefe 100%); }
.section-bg-mint { background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%); }
.section-bg-lavender { background: linear-gradient(135deg, #f3e8ff 0%, #ede4ff 100%); }
.section-bg-peach { background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%); }
.section-bg-lemon { background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%); }
.section-bg-gold { background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 100%); }
.section-bg-ice { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.section-bg-blush { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); }
.section-bg-sage { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); }
.section-dark {
    background: var(--gradient-dark); color: var(--white);
    position: relative; overflow: hidden;
}
.section-dark::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%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");
}
.section-header { text-align: center; margin-bottom: 32px; }
.section-badge {
    display: inline-block; padding: 6px 18px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
    color: var(--accent); background: rgba(200,160,78,0.08);
    border: 1px solid rgba(200,160,78,0.15);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: 1.8rem; font-weight: 900; margin-bottom: 10px;
    line-height: 1.3; letter-spacing: -0.03em;
    color: var(--primary);
}
.section-dark .section-title { color: var(--white); }
.section-desc {
    color: var(--gray); font-size: 1.05rem; max-width: 560px;
    margin: 0 auto; font-weight: 300;
}

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--white); border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow-card); transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04); position: relative;
}
.card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(145deg, rgba(200,160,78,0.03), transparent);
    opacity: 0; transition: var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(10,22,40,0.06), rgba(10,22,40,0.02));
    color: var(--primary); position: relative;
}
.card-title {
    font-size: 1.05rem; font-weight: 800; margin-bottom: 6px;
    letter-spacing: -0.01em; color: var(--primary);
}
.card-text { color: var(--gray); font-size: 0.85rem; line-height: 1.5; font-weight: 400; }

/* ===== Stats ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-box {
    text-align: center; padding: 28px 16px;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
}
.stat-box:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.stat-box:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.stat-box::after {
    content: ''; position: absolute; top: 50%; right: 0;
    width: 1px; height: 40%; transform: translateY(-50%);
    background: linear-gradient(transparent, rgba(0,0,0,0.06), transparent);
}
.stat-box:last-child::after { display: none; }
.stat-number {
    font-size: 2rem; font-weight: 900; margin-bottom: 4px;
    letter-spacing: -0.03em;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--gray); font-weight: 500; letter-spacing: 0.02em; }

/* ===== Timeline ===== */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
    content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary-light), var(--teal));
}
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; left: -40px; top: 6px; width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(200,160,78,0.15), var(--shadow);
}
.timeline-content {
    background: var(--white); padding: 20px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}
.timeline-phase {
    font-size: 0.72rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 6px;
}
.timeline-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.timeline-text { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }

/* ===== Table ===== */
.table-wrap {
    overflow-x: auto; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.04);
}
table { width: 100%; border-collapse: collapse; background: var(--white); }
th {
    background: var(--primary); color: var(--white);
    padding: 16px 24px; text-align: left; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.03em;
}
th:first-child { border-radius: var(--radius-lg) 0 0 0; }
th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
td {
    padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem; color: #222;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200,160,78,0.02); }

/* ===== Program Cards ===== */
.program-card {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-card); transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.program-card:hover { box-shadow: var(--shadow-lg); }
.program-header {
    padding: 20px 24px; color: var(--white); position: relative;
    overflow: hidden;
}
.program-header::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 200px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08));
}
.program-header h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.program-header p { font-size: 0.9rem; opacity: 1; font-weight: 400; }
.program-body { padding: 20px 24px; }
.program-body ul { list-style: none; }
.program-body li {
    padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.93rem; color: #222; display: flex; align-items: flex-start; gap: 10px;
}
.program-body li:last-child { border-bottom: none; }
.program-body li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: 10px;
}

.bg-blue { background: linear-gradient(135deg, #0a1628 0%, #1e4d8c 100%); }
.bg-red { background: linear-gradient(135deg, #8b1a2b 0%, #d4556b 100%); }
.bg-green { background: linear-gradient(135deg, #1a6b4a 0%, #2ec4b6 100%); }
.bg-orange { background: linear-gradient(135deg, #8b5e1a 0%, #c8a04e 100%); }
.bg-purple { background: linear-gradient(135deg, #3d1a6b 0%, #7c4dff 100%); }
.bg-teal { background: linear-gradient(135deg, #0d4e4a 0%, #2ec4b6 100%); }

/* ===== Revenue / Financial ===== */
.revenue-card {
    background: var(--white); border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.04);
    border-left: 4px solid var(--accent); transition: var(--transition);
}
.revenue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.revenue-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray); margin-bottom: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.revenue-amount {
    font-size: 1.8rem; font-weight: 900; letter-spacing: -0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-bar-group { display: flex; flex-direction: column; gap: 20px; }
.chart-bar-item label { font-size: 0.85rem; color: var(--gray); margin-bottom: 6px; display: block; font-weight: 500; }
.chart-bar { height: 32px; border-radius: 16px; background: var(--light); overflow: hidden; }
.chart-bar-fill {
    height: 100%; border-radius: 16px; display: flex; align-items: center;
    padding-left: 14px; color: var(--white); font-size: 0.8rem; font-weight: 700;
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.03em;
}

/* ===== Contact Form ===== */
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px;
    color: var(--primary); letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid #e2e6ec; border-radius: 12px;
    font-size: 0.93rem; font-family: inherit; transition: var(--transition);
    background: var(--light);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); background: var(--white);
    box-shadow: 0 0 0 4px rgba(200,160,78,0.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--gradient-dark); color: rgba(255,255,255,0.85);
    padding: 48px 0 28px; position: relative;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,160,78,0.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-brand {
    font-size: 1.15rem; font-weight: 800; color: var(--white);
    margin-bottom: 16px; letter-spacing: -0.01em;
}
.footer-desc { font-size: 0.9rem; line-height: 1.8; }
.footer h4 {
    color: var(--accent-light); font-size: 0.8rem; margin-bottom: 20px;
    letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
    text-align: center; font-size: 0.82rem; letter-spacing: 0.03em;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-box:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
    .stat-box:nth-child(2)::after { display: none; }
    .stat-box:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-menu.active {
        display: flex; flex-direction: column; position: absolute;
        top: 76px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 20px; box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .hero { padding: 100px 0 40px; }
    .hero-title { font-size: 1.8rem; }
    .section { padding: 32px 0; }
    .section-title { font-size: 1.4rem; }
    .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-box:first-child { border-radius: var(--radius-lg) 0 0 0; }
    .stat-box:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
    .stat-box:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
    .stat-box:last-child { border-radius: 0 0 var(--radius-lg) 0; }
    .flow-steps { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
    .container { padding: 0 14px; }
}

/* ===== Org Chart ===== */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.org-level { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.org-box {
    padding: 12px 20px; border-radius: var(--radius); text-align: center;
    font-weight: 600; font-size: 0.9rem; min-width: 150px;
    transition: var(--transition);
}
.org-box:hover { transform: translateY(-3px); }
.org-ceo {
    background: var(--gradient-gold); color: var(--primary);
    font-size: 1rem; font-weight: 800;
    box-shadow: var(--shadow-gold);
}
.org-director {
    background: var(--primary); color: var(--white);
    box-shadow: 0 4px 16px rgba(10,22,40,0.15);
}
.org-team {
    background: var(--white); color: var(--primary);
    border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow);
}
.org-connector {
    width: 2px; height: 28px; margin: 0 auto;
    background: linear-gradient(var(--accent), var(--primary));
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(200,160,78,0.04), rgba(200,160,78,0.08));
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px; margin: 14px 0;
    transition: var(--transition);
}
.highlight-box:hover { transform: translateX(4px); }
.highlight-box h4 { color: var(--primary); margin-bottom: 8px; font-weight: 800; font-size: 1rem; }

/* ===== Flow Diagram ===== */
.flow-steps { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; }
.flow-step {
    background: var(--white); border-radius: var(--radius); padding: 16px 14px;
    text-align: center; box-shadow: var(--shadow-card); min-width: 150px; flex: 1;
    border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.flow-step .step-num {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--gradient-gold); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800; margin-bottom: 12px;
}
.flow-step h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--primary); font-weight: 700; }
.flow-step p { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
.flow-arrow {
    font-size: 1.2rem; color: var(--accent); padding: 0 6px;
    font-weight: 400; opacity: 0.85;
}

/* ===== Decorative line ===== */
.gold-line {
    width: 60px; height: 3px; border-radius: 2px;
    background: var(--gradient-gold); margin: 0 auto 20px;
}

/* ===== Particle Grid (hero background) ===== */
.hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(200,160,78,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,160,78,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center; padding: 48px 0;
    background: var(--gradient-dark); color: var(--white);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,160,78,0.08) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.cta-section p {
    color: rgba(255,255,255,0.85); margin-bottom: 20px;
    font-size: 1.05rem; font-weight: 300;
}
