/* ========================================
   Lifullie Dance School - Main Stylesheet
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors - Orange & White Theme */
    --primary-color: #FF8C00;
    --primary-dark: #E67E00;
    --primary-light: #FFA500;
    --secondary-color: #FF6347;
    --accent-color: #FFA07A;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FFF8F0;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #777777;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    --gradient-warm: linear-gradient(135deg, #FF6347 0%, #FFA07A 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 140, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 140, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 140, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(255, 140, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--off-white);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -4px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link.cta-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    display: none;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0 1rem;
    border-radius: var(--radius-md);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    animation: bounce 2s ease infinite;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Concept Section
   ======================================== */
.concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-description {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.concept-text-large {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.concept-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.pillar-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.pillar-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pillar-highlight .pillar-icon {
    color: var(--white);
}

.pillar-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pillar-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.concept-message {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   Beginner Section
   ======================================== */
.beginner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.beginner-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.beginner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.beginner-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.beginner-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beginner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.beginner-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-box {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   LOCK DANCE Section
   ======================================== */
.lockdance-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
}

.lockdance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lockdance-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.lockdance-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lockdance-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.lockdance-description h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lockdance-description p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.lockdance-features {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.lockdance-features h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.lockdance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.lockdance-feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.lockdance-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lockdance-feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.lockdance-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.lockdance-pose {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.lockdance-pose-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lockdance-pose-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.lockdance-pose-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.lockdance-pose-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lockdance-why {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.lockdance-why h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.lockdance-reasons {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.lockdance-reasons li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.lockdance-reasons li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.lockdance-reasons i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.lockdance-reasons strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.lockdance-reasons p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.lockdance-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.lockdance-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .lockdance-intro {
        grid-template-columns: 1fr;
    }
    
    .lockdance-grid {
        grid-template-columns: 1fr;
    }
    
    .lockdance-pose {
        grid-template-columns: 1fr;
    }
    
    .lockdance-reasons li {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   About Section
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.instructor-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.instructor-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 1rem;
}

.instructor-genre {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.instructor-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.25rem;
    font-style: normal;
}

.instructor-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Class Section
   ======================================== */
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.class-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.class-card-featured {
    border: 3px solid var(--primary-color);
}

.class-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.class-badge-online {
    background: var(--gradient-warm);
}

.class-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.class-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.class-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.class-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.class-studios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.studio-item {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.studio-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.studio-name {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.studio-detail {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.status-open {
    background-color: #FF8C00;
    color: var(--white);
}

.status-coming {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #333333;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.class-online-plans {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--off-white);
    border-radius: var(--radius-md);
}

.plan-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ========================================
   Schedule Section
   ======================================== */
.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.schedule-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.schedule-card-new {
    border: 3px solid var(--secondary-color);
}

.new-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.schedule-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.info-label {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.studio-details {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.studio-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.studio-address {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.studio-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-tag i {
    color: var(--primary-color);
}

.trial-info {
    background: var(--gradient-warm);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.trial-info h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trial-date {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trial-price {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ========================================
   Price Section
   ======================================== */
.price-category {
    margin-bottom: var(--spacing-xl);
}

.price-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-category-title i {
    color: var(--primary-color);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.price-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card-trial {
    border: 3px solid var(--primary-color);
}

.price-card-recommended {
    border: 3px solid var(--primary-color);
}

.price-card-popular {
    border: 3px solid var(--secondary-color);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.price-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.5rem;
}

.price-per {
    color: var(--text-light);
    font-size: 1rem;
}

.price-addition {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.addition-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.addition-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
}

.studio-name {
    font-weight: 600;
    color: var(--text-dark);
}

.studio-price {
    color: var(--primary-color);
    font-weight: 600;
}

.studio-total {
    font-weight: 700;
    color: var(--text-dark);
}

.price-pack {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.pack-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pack-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pack-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: var(--radius-sm);
}

.pack-price {
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.price-features i {
    color: var(--primary-color);
    margin-top: 3px;
}

.price-special {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    margin-top: var(--spacing-lg);
}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-special h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.special-calc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.calc-symbol,
.calc-equal {
    font-size: 1.5rem;
    font-weight: 700;
}

.calc-regular {
    padding: 0.5rem;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.special-arrow {
    font-size: 2rem;
    margin: 1rem 0;
}

.special-price {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.special-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.special-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
}

.special-unit {
    font-size: 2rem;
}

.special-save {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.special-desc {
    margin-top: 1.5rem;
    opacity: 0.95;
}

.payment-info {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-lg);
}

.payment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.payment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-item p {
    line-height: 1.8;
    color: var(--text-light);
}

.note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ========================================
   Works Section
   ======================================== */
.works-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.works-tab {
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.works-tab:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.works-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.works-panel {
    display: none;
}

.works-panel.active {
    display: block;
}

.works-list {
    max-width: 800px;
    margin: 0 auto;
}

.work-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.work-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.work-date {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.work-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.work-details p {
    color: var(--text-light);
}

/* ========================================
   Instagram Reels Section
   ======================================== */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reel-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.reel-embed {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-media {
    max-width: 100% !important;
    width: 100% !important;
}

.reels-cta {
    text-align: center;
}

.reels-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========================================
   News Section
   ======================================== */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: grid;
    grid-template-columns: auto 120px 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    align-items: start;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-important {
    border-left: 5px solid var(--secondary-color);
}

.news-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.news-date {
    font-weight: 700;
    color: var(--primary-color);
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.news-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.news-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
}

.news-note p {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.news-note i {
    color: var(--primary-color);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.flow-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    text-align: center;
    flex: 1;
    max-width: 250px;
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid #FFE5CC;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.08);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.15);
    border-color: var(--primary-color);
}

.flow-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.flow-step p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.8rem;
    align-self: center;
    opacity: 0.6;
    margin: 0 -0.5rem;
}

.contact-notes {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-notes h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.contact-notes ul {
    list-style: none;
}

.contact-notes li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.contact-form-wrapper > div {
    width: 100%;
    max-width: 1000px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-alternative {
    text-align: center;
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-alternative h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    min-width: 150px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-method span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    font-size: 2rem;
}

.footer-logo .logo-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-tagline {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .class-grid,
    .schedule-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 999;
        padding-top: 80px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .concept-pillars {
        grid-template-columns: 1fr;
    }
    
    .beginner-grid {
        grid-template-columns: 1fr;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
    
    .work-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-step {
        padding: 1.5rem 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .sp-only {
        display: inline;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
}
