/* ===== landing-header-hero.css ===== */
/* 헤더, 네비게이션, 히어로 섹션 */

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 72px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}

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

.action-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(99, 102, 241, 0.15);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px;
    margin-bottom: 40px;
    justify-content: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ===== Hero Visual & Card ===== */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.hero-card-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 32px;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.hero-message-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.hero-message-box strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 8px;
}

.hero-message-box .msg-content {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.5;
}
