/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 헤더 스타일 */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 히어로 섹션 */
.hero {
    padding: 120px 0 80px;
    background: transparent;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: left;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}



/* 문제점 섹션 */
.problems {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}



/* 무료 이벤트 섹션 */
.free-event {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.free-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.event-banner {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.free-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content h2 {
    font-size: 3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-highlight {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.event-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: #fbbf24;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-large i {
    font-size: 1.1rem;
}

/* 비즈니스 닥터 처방 섹션 */
.business-doctor {
    padding: 80px 0;
    background: #f8fafc;
}

.prescription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prescription-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prescription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prescription-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.prescription-icon i {
    font-size: 2rem;
    color: white;
}

.prescription-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.prescription-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* 제작 과정 섹션 */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* 랜딩페이지 특징 섹션 */
.landing-features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-content {
    display: block;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #1f2937;
}

.features-text h3:first-child {
    margin-top: 0;
}

.features-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-text ul {
    list-style: none;
    padding: 0;
}

.features-text li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-text li:before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}



/* 제작 사례 섹션 스타일 */
.portfolio-cases {
    padding: 5rem 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .screenshot-content {
    animation: pulse 2s ease-in-out infinite;
}

.service-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.perfume-bottle:hover {
    animation: pulse 1s ease-in-out infinite;
}

.trial-btn:hover {
    animation: pulse 1s ease-in-out infinite;
}

.inquiry-btn:hover {
    animation: pulse 1s ease-in-out infinite;
}

.portfolio-screenshot {
    background: white;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.screenshot-header {
    background: #f1f5f9;
    padding: 8px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.screenshot-content {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: white;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .case-image {
    transform: scale(1.05);
}

/* 실제 이미지 스타일 */
.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
    border-radius: 0 0 8px 8px;
}

.portfolio-item:hover .case-image {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1rem;
    text-align: center;
    background: white;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #1f2937;
}

.portfolio-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #6b7280;
}

/* 호스팅 섹션 스타일 */
.hosting-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    margin-top: 2rem;
    text-align: center;
}

.hosting-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hosting-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn-hosting {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hosting:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-hosting i {
    font-size: 1.2rem;
}

/* 성공 사례 섹션 */
.success-cases {
    padding: 80px 0;
    background: #f8fafc;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-visual {
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 차트 컨테이너 */
.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 100%;
    padding: 20px 0;
}

.bar {
    width: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bar-1 { height: 30%; }
.bar-2 { height: 45%; }
.bar-3 { height: 60%; }
.bar-4 { height: 75%; }
.bar-5 { height: 85%; }
.bar-6 { height: 95%; }

.line-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line-svg {
    width: 100%;
    height: 100%;
}

/* 지도 컨테이너 */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-blob {
    width: 80%;
    height: 80%;
    background: #d1fae5;
    border-radius: 50% 30% 70% 40% / 60% 40% 60% 40%;
    margin: 0 auto;
    position: relative;
    top: 10%;
}

.map-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.dot-2 { top: 35%; left: 25%; animation-delay: 0.3s; }
.dot-3 { top: 50%; left: 35%; animation-delay: 0.6s; }
.dot-4 { top: 65%; left: 45%; animation-delay: 0.9s; }
.dot-5 { top: 30%; left: 55%; animation-delay: 1.2s; }
.dot-6 { top: 45%; left: 65%; animation-delay: 1.5s; }
.dot-7 { top: 60%; left: 75%; animation-delay: 1.8s; }
.dot-8 { top: 75%; left: 85%; animation-delay: 2.1s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* 워크스페이스 컨테이너 */
.workspace-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
}

.laptop {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
    background: #9ca3af;
    border-radius: 5px;
    border: 2px solid #6b7280;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #1f2937;
    border-radius: 3px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.code-line {
    height: 2px;
    background: #10b981;
    border-radius: 1px;
}

.code-line:nth-child(1) { width: 80%; }
.code-line:nth-child(2) { width: 60%; }
.code-line:nth-child(3) { width: 90%; }
.code-line:nth-child(4) { width: 70%; }

.monitor {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 50px;
    background: #374151;
    border-radius: 5px;
    border: 2px solid #6b7280;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    border-radius: 3px;
    margin: 2px;
}

.phone {
    position: absolute;
    bottom: 30px;
    left: 90px;
    width: 15px;
    height: 25px;
    background: #1f2937;
    border-radius: 3px;
}

.headphones {
    position: absolute;
    bottom: 35px;
    left: 110px;
    width: 20px;
    height: 15px;
    background: #1f2937;
    border-radius: 10px;
}

.plant {
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 12px;
    height: 20px;
    background: #10b981;
    border-radius: 6px;
}

.lamp {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 8px;
    height: 25px;
    background: #fbbf24;
    border-radius: 4px;
}

.success-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.success-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.success-highlight {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* 통계 섹션 */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 문의 섹션 */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 푸터 */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .screenshot-content {
        height: 250px;
    }
    
    .event-content h2 {
        font-size: 2.2rem;
    }
    
    .event-highlight {
        font-size: 1.3rem;
    }
    
    .event-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hosting-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hosting-section h3 {
        font-size: 1.3rem;
    }
    
    .btn-hosting {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 2rem 1rem 0;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .prescription-grid,
    .process-steps,
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .event-content h2 {
        font-size: 1.8rem;
    }
    
    .event-highlight {
        font-size: 1.1rem;
    }
    
    .event-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .feature-item {
        padding: 0.6rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .screenshot-content {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.prescription-card,
.step {
    animation: fadeInUp 0.6s ease forwards;
}

.prescription-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prescription-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* 스크롤 스무스 */
html {
    scroll-behavior: smooth;
}
