@charset "utf-8";

:root {
    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-200: #c7d2fe;
    --indigo-300: #a5b4fc;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --indigo-900: #312e81;
    --indigo-950: #1e1b4b;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --green-600: #16a34a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --red-500: #ef4444;
}

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 75, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--indigo-600);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--indigo-100);
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 500;
}

.hero-location svg {
    color: var(--indigo-300);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Stats Section */
.stats-section {
    margin-top: -64px;
    position: relative;
    z-index: 20;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--indigo-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--indigo-600);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-800);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-500);
    margin-top: 4px;
}

.stat-sub {
    font-size: 10px;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-top: 4px;
}

/* Why Section */
.why-section {
    margin-bottom: 80px;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-bar {
    width: 80px;
    height: 4px;
    background: var(--indigo-600);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-img {
    height: 192px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-content {
    padding: 24px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tag-indigo { color: var(--indigo-600); }
.tag-green { color: var(--green-600); }
.tag-amber { color: var(--amber-600); }

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--indigo-900);
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefits-img {
    position: relative;
    min-height: 400px;
}

.benefits-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.benefits-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(49, 46, 129, 0.5), transparent);
}

.benefits-content {
    padding: 48px;
    color: #fff;
}

.benefits-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--red-500);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.benefits-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.benefits-content > p {
    color: var(--indigo-200);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 12px;
    font-weight: 500;
}

.benefits-list svg {
    color: var(--indigo-300);
    flex-shrink: 0;
}

/* Community Section */
.community-section {
    margin-bottom: 80px;
}

.community-section h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.community-section h2 svg {
    color: var(--indigo-600);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.community-item {
    text-align: center;
}

.community-icon {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s;
    cursor: default;
    padding: 20px;
}

.community-item:hover .community-icon {
    background: var(--indigo-600);
    color: #fff;
    box-shadow: 0 20px 40px -12px rgba(79, 70, 229, 0.4);
}

.community-item span {
    font-size: 14px;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    background: var(--slate-900);
    border-radius: 40px;
    padding: 64px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.contact-bg-circle {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    filter: blur(60px);
}

.contact-bg-circle.left {
    top: 0;
    left: 0;
    background: rgba(99, 102, 241, 0.1);
    transform: translate(-50%, -50%);
}

.contact-bg-circle.right {
    bottom: 0;
    right: 0;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(50%, 50%);
}

.contact-inner {
    position: relative;
    z-index: 10;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 24px;
}

.contact-section > .contact-inner > p {
    color: var(--slate-400);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    color: var(--slate-900);
    padding: 24px 32px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
    margin-bottom: 24px;
}

.contact-phone:hover {
    transform: scale(1.05);
}

.contact-phone:active {
    transform: scale(0.95);
}

.phone-icon {
    background: var(--indigo-100);
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s;
}

.contact-phone:hover .phone-icon {
    background: var(--indigo-600);
    color: #fff;
}

.phone-info {
    text-align: left;
}

.phone-label {
    display: block;
    font-size: 11px;
    color: var(--indigo-600);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.phone-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
}

.contact-gift {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 16px 24px;
    border-radius: 16px;
}

.gift-icon {
    background: var(--amber-500);
    padding: 8px;
    border-radius: 8px;
}

.gift-icon svg {
    color: #fff;
}

.contact-gift span {
    color: var(--amber-500);
    font-weight: 700;
}

/* Footer */
.site-footer {
    padding: 48px 24px;
    border-top: 1px solid var(--slate-200);
    text-align: center;
    background: #fff;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 16px;
}

.footer-contact {
    margin-bottom: 24px;
}

.footer-contact p {
    font-size: 15px;
    color: var(--slate-600);
    margin-bottom: 4px;
}

.footer-contact strong {
    color: var(--indigo-600);
    font-weight: 700;
}

.footer-partners {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 16px;
}

.footer-notice {
    font-size: 11px;
    color: var(--slate-400);
    line-height: 1.8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--indigo-600), var(--indigo-900));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 0;
}

.sticky-cta svg {
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-section {
        grid-template-columns: 1fr;
    }
    
    .benefits-img {
        min-height: 300px;
    }
    
    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-location {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .stats-section {
        margin-top: -48px;
        margin-bottom: 48px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .why-section, .community-section {
        margin-bottom: 48px;
    }
    
    .benefits-content {
        padding: 32px 24px;
    }
    
    .benefits-content h2 {
        font-size: 28px;
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .contact-section {
        padding: 40px 24px;
        border-radius: 24px;
        margin-bottom: 48px;
    }
    
    .contact-section h2 {
        font-size: 28px;
    }
    
    .contact-phone {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .phone-info {
        text-align: center;
    }
    
    .phone-number {
        font-size: 26px;
    }
    
    .contact-gift {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .contact-gift span {
        font-size: 14px;
    }
    
    .footer-partners {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 12px;
        border-radius: 16px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .benefits-img {
        min-height: 200px;
    }
    
    .benefits-list li {
        padding: 12px;
        font-size: 14px;
    }
    
    .community-icon {
        border-radius: 16px;
        padding: 16px;
    }
    
    .community-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .community-item span {
        font-size: 12px;
    }
}
