/* ===================================
   온누리세종 퍼스펙티브스 - Stylesheet
   Brand: Navy #1A2456, Gold #C9A94E
   =================================== */

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

:root {
    --navy: #1A2456;
    --navy-light: #2E4A8E;
    --gold: #C9A94E;
    --gold-light: #E8C547;
    --bg-light: #F0F4F8;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(26,36,86,0.08);
    --shadow-md: 0 4px 20px rgba(26,36,86,0.12);
    --shadow-lg: 0 8px 40px rgba(26,36,86,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Pretendard Variable', 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container-narrow {
    max-width: 800px;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,36,86,0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,169,78,0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

.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);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 16px rgba(201,169,78,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,169,78,0.4);
}

.btn-outline {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-lg {
    font-size: 18px;
    padding: 16px 40px;
}

.btn-xl {
    font-size: 20px;
    padding: 20px 48px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D1633 0%, var(--navy) 40%, #2E4A8E 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201,169,78,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(13,22,51,0.5));
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 60px 0 80px;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(201,169,78,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gold-text {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* D-Day Counter */
.hero-counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    margin-bottom: 40px;
}

.counter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.counter-digits {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    min-width: 56px;
    text-align: center;
}

.counter-unit {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.counter-separator {
    font-size: 32px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    margin-top: -8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

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

.section-dark {
    background: linear-gradient(135deg, #0D1633, var(--navy));
    color: var(--white);
}

.section-accent {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.text-white {
    color: var(--white) !important;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== PERSPECTIVES GRID ===== */
.perspectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.perspective-card {
    background: var(--bg-white);
    border: 1px solid rgba(26,36,86,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.perspective-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,169,78,0.2);
}

.perspective-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.perspective-icon svg {
    width: 100%;
    height: 100%;
}

.perspective-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.perspective-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.perspective-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline-section {
    text-align: center;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light), var(--gold), var(--gold-light));
    border-radius: 2px;
    transform: translateY(-50%);
}

.timeline-group {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color);
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--color);
}

.timeline-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-weeks {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.timeline-label {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== WHY SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.why-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

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

.partners-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-card.exit-left {
    opacity: 0;
    transform: translateX(-40px);
}

.testimonial-quote {
    font-size: 60px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-detail {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(26,36,86,0.15);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26,36,86,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== INFO SECTION ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.info-sub {
    font-size: 13px;
    color: var(--text-gray);
}

/* Discount */
.discount-section {
    text-align: center;
    margin-bottom: 48px;
}

.discount-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
}

.discount-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.discount-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    transition: var(--transition);
}

.discount-card.highlight {
    border: 2px solid var(--gold);
    position: relative;
}

.discount-card.highlight::before {
    content: '인기';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.discount-badge {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.discount-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.discount-desc {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 16px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CTA FULL SECTION ===== */
.section-cta-full {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D1633, var(--navy));
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-applicant-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.cta-applicant-count strong {
    color: var(--gold);
    font-size: 18px;
}

.applicant-icon {
    color: var(--gold);
    display: flex;
}

.cta-progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    margin: 0 auto 32px;
    overflow: hidden;
}

.cta-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0F24;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list li,
.footer-list a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--gold);
}

.footer-sns-links {
    display: flex;
    gap: 12px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.sns-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ===== CHATBOT FAB ===== */
.chatbot-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201,169,78,0.4);
    transition: var(--transition);
}

.chatbot-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(201,169,78,0.5);
}

.chatbot-panel {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 340px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h4 {
    font-size: 14px;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.chatbot-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.chatbot-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.chatbot-message.bot {
    background: var(--bg-light);
    color: var(--text-dark);
}

.chatbot-message.user {
    background: var(--navy);
    color: var(--white);
    margin-left: 40px;
}

.chatbot-presets {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbot-preset-btn {
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1px solid rgba(26,36,86,0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.chatbot-preset-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ===== NOTIFICATION TOAST ===== */
.notification-toast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    color: var(--text-dark);
}

.notification-icon {
    color: var(--gold);
    display: flex;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .perspectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
    }

    .nav-cta {
        font-size: 18px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .counter-number {
        font-size: 28px;
        min-width: 40px;
    }

    .counter-separator {
        font-size: 24px;
    }

    .hero-counter {
        padding: 20px 24px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .perspectives-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .perspective-card {
        padding: 28px 24px;
    }

    .timeline {
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }

    .timeline-track {
        top: 0;
        bottom: 0;
        left: 10px;
        right: auto;
        width: 4px;
        height: auto;
        transform: none;
        background: linear-gradient(180deg, var(--navy), var(--navy-light), var(--gold), var(--gold-light));
    }

    .timeline-group {
        flex-direction: row;
        gap: 16px;
    }

    .timeline-info {
        align-items: flex-start;
    }

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

    .stats-bar {
        gap: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

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

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .discount-grid {
        flex-direction: column;
        align-items: center;
    }

    .discount-card {
        width: 100%;
        max-width: 300px;
    }

    .cta-title {
        font-size: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .chatbot-panel {
        width: calc(100vw - 48px);
        right: -12px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-lg {
        font-size: 16px;
        padding: 14px 28px;
    }

    .btn-xl {
        font-size: 18px;
        padding: 16px 36px;
    }
}
