/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
    color: #CCCCCC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:root {
    /* Colors */
    --black: #000000;
    --dark-grey: #1A1A1A;
    --medium-grey: #333333;
    --light-grey: #CCCCCC;
    --white: #FFFFFF;
    --silver: #C0C0C0;
    --silver-dark: #999999;
    --accent-red: #FF3B30;
    --accent-orange: #FF9500;
    --accent-gold: #D4AF37;
    
    /* Gradients */
    --gradient-silver: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 50%, #E8E8E8 100%);
    --gradient-red-orange: linear-gradient(90deg, #FF3B30 0%, #FF9500 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.8;
}

strong {
    font-weight: 600;
    color: var(--white);
}

/* ===================================
   NAVIGATION HEADER
   =================================== */
.main-header {
    position: fixed;
    top: 50px; /* Below promo banner */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9998;
    transition: var(--transition);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.header-nav a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav .nav-cta {
    padding: 0.5rem 1.25rem;
    background: var(--gradient-silver);
    color: var(--black);
    border-radius: 20px;
    font-weight: 700;
}

.header-nav .nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

/* ===================================
   PROMO BANNER (STICKY)
   =================================== */
.promo-banner {
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    background: var(--gradient-red-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: pulse 2s ease-in-out infinite;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.promo-text strong {
    font-weight: 900;
}

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

/* ===================================
   HERO SECTION - APPLE STYLE
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
    padding-top: 110px; /* Promo(50px) + Nav(60px) */
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 110px); /* 헤더 높이 제외 */
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--black); /* 검은 배경 추가 */
}

.stylist-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.88) contrast(1.05) saturate(0.9);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.75) 10%,
        rgba(0, 0, 0, 0.45) 30%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.05) 90%,
        transparent 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    padding: 80px 80px;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.top-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--silver);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.hero-microcopy {
    font-size: 0.95rem;
    color: var(--silver-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.info-item {
    font-size: 0.875rem;
    color: var(--silver-dark);
    font-weight: 500;
}

.separator {
    color: var(--medium-grey);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-silver);
    border-radius: 2px;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-silver);
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.3);
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(192, 192, 192, 0.5);
}

.btn-hero {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 0 60px rgba(192, 192, 192, 0.4);
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid var(--silver);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gradient-silver);
    color: var(--black);
    border-color: transparent;
}

.btn-secondary-hero {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.btn-final {
    width: 300px;
    padding: 1.5rem 3rem;
}

.btn-plan {
    width: 100%;
    margin-top: 1.5rem;
}

.btn-subscription {
    width: 100%;
    max-width: 600px;
    padding: 1.5rem 3rem;
}

.btn-kakao {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.kakao-icon {
    font-size: 1.5rem;
}

.kakao-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--silver);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-header,
.section-header-center,
.section-header-left {
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
}

.section-title,
.section-title-medium,
.section-title-large,
.section-title-xlarge {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title-medium {
    font-size: 3rem;
}

.section-title-large {
    font-size: 3.5rem;
}

.section-title-xlarge {
    font-size: 4rem;
}

.highlight,
.highlight-silver {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-accent {
    color: var(--accent-orange);
}

.section-subtitle,
.section-subtitle-left {
    font-size: 1.125rem;
    color: var(--light-grey);
    line-height: 1.8;
    max-width: 800px;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

.text-accent {
    color: var(--silver);
    font-weight: 600;
}

.text-muted {
    color: var(--silver-dark);
    font-size: 0.9rem;
}

.section-label-special {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF9500 0%, #FF3B30 100%);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.4);
}

.highlight-free {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #FF9500 0%, #FF3B30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   GLASS MORPHISM CARDS
   =================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.glass-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 192, 192, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===================================
   SECTION 1: PROBLEM DEFINITION
   =================================== */
.problem-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
}

.visual-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    padding: 4rem;
    text-align: center;
}

.large-text {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--light-grey);
}

.large-text strong {
    font-size: 1.75rem;
    color: var(--white);
}

/* ===================================
   FREE EVENT SECTION
   =================================== */
.free-event-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 50%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.free-event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.event-step {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    border: 2px solid rgba(255, 149, 0, 0.2);
}

.event-step:hover {
    border-color: rgba(255, 149, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 149, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #FF9500 0%, #FF3B30 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 20px;
    letter-spacing: 1px;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.event-step h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.event-step p {
    font-size: 1rem;
    color: var(--light-grey);
    line-height: 1.8;
}

.event-value-box {
    text-align: center;
    margin-top: 4rem;
}

.value-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 149, 0, 0.05);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 30px;
}

.value-text {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--white);
    margin-bottom: 2rem;
}

.btn-event {
    margin: 2rem 0;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.event-notice {
    font-size: 1rem;
    color: var(--silver);
    margin-top: 1.5rem;
}

.free-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2) 0%, rgba(255, 59, 48, 0.2) 100%);
    border: 2px solid rgba(255, 149, 0, 0.5);
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 1rem;
    color: var(--white);
}

.event-period-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 20px;
}

.event-period-notice p {
    font-size: 1.125rem;
    color: var(--white);
}

/* ===================================
   SECTION 1: PROBLEM DEFINITION
   =================================== */
.decision-section {
    padding: 120px 0;
    background: var(--black);
}

.scenario-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scenario-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.scenario-card h4 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.scenario-card p {
    font-size: 1rem;
    color: var(--light-grey);
    line-height: 1.7;
}

/* ===================================
   SECTION 3: EXECUTION FATIGUE
   =================================== */
.fatigue-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
}

.content-layout-center {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mockup-container {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 350px;
    background: #2C2C2E;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: #1C1C1E;
    border-radius: 30px;
    overflow: hidden;
}

.kakao-header {
    background: #FEE500;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kakao-back,
.kakao-menu {
    font-size: 1.25rem;
    color: #3C1E1E;
}

.kakao-title {
    font-size: 1rem;
    font-weight: 700;
    color: #3C1E1E;
}

.kakao-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 400px;
}

.kakao-message {
    padding: 1rem;
    border-radius: 15px;
    max-width: 85%;
}

.kakao-message.manager {
    background: #F5F5F5;
    color: #000000;
    align-self: flex-start;
}

.kakao-message.user {
    background: #FEE500;
    color: #3C1E1E;
    align-self: flex-end;
}

.kakao-message p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.kakao-message p:last-child {
    margin-bottom: 0;
}

.kakao-outfit-preview {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.outfit-item {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.5rem;
}

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

.pain-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-icon {
    font-size: 2.5rem;
}

.pain-card h4 {
    font-size: 1.25rem;
    color: var(--white);
}

.pain-card p {
    font-size: 1rem;
    color: var(--light-grey);
}

.solution-message {
    text-align: center;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.message-text {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--light-grey);
}

/* ===================================
   SECTION 4: SOLUTION BRIDGE
   =================================== */
.solution-section {
    padding: 120px 0;
    background: var(--black);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.solution-card {
    text-align: center;
    padding: 3rem 2rem;
}

.solution-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.solution-detail {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--light-grey);
}

.final-message {
    text-align: center;
}

.final-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 3rem;
}

/* ===================================
   PRICING SECTION - STEP 1
   =================================== */
.pricing-section-step1 {
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
}

.promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-red-orange);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0 2rem 0;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.pricing-card {
    position: relative;
    padding: 2.5rem;
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--accent-gold);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.plan-discount-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-red);
}

.vip-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-silver);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-original {
    font-size: 1.25rem;
    color: var(--silver-dark);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.875rem;
    color: var(--accent-red);
    font-weight: 600;
    margin: 0.5rem 0;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-top: 0.5rem;
}

.price-current.highlight {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-current-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--light-grey);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-silver);
    color: var(--black);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.check-icon-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    color: var(--black);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.divider-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 6rem 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--silver) 50%, transparent 100%);
}

.divider-text {
    font-size: 1.125rem;
    color: var(--silver);
    font-weight: 600;
    white-space: nowrap;
}

/* ===================================
   PRICING SECTION - STEP 2
   =================================== */
.pricing-section-step2 {
    padding: 100px 0;
    background: var(--black);
}

.promo-pill-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gradient-red-orange);
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 0 2rem 0;
}

.promo-icon-large {
    font-size: 1.5rem;
}

.pulse-large {
    animation: pulse 2s ease-in-out infinite;
}

.subscription-requirement {
    font-size: 1rem;
    color: var(--silver-dark);
    margin-top: 1rem;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 3rem;
}

.subscription-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.subscription-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.subscription-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sub-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-label {
    font-size: 1rem;
    color: var(--silver-dark);
}

.sub-original {
    font-size: 1.25rem;
    color: var(--silver-dark);
    text-decoration: line-through;
}

.sub-discount-badge-large {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 20px;
}

.sub-savings {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.sub-price-current {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.sub-currency {
    font-size: 1.5rem;
    color: var(--silver);
}

.sub-amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-daily {
    font-size: 1.125rem;
    color: var(--light-grey);
}

.sub-annual-savings {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.benefits-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h5 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--light-grey);
    line-height: 1.5;
}

.subscription-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-trust {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--silver-dark);
}

.trust-item {
    display: flex;
    align-items: center;
}

.subscription-urgency {
    font-size: 1rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    cursor: pointer;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h4 {
    font-size: 1.25rem;
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--silver);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 1rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--light-grey);
    line-height: 1.8;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: 120px 0;
    background: var(--black);
    text-align: center;
}

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

.final-cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 3rem;
}

.urgency-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.urgency-icon {
    font-size: 1.5rem;
}

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

.urgency-number {
    font-size: 1.25rem;
    font-weight: 900;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-counter {
    animation: numberFlicker 3s ease-in-out infinite;
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 4rem 0 2rem 0;
    background: var(--dark-grey);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--silver-dark);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--silver);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--silver-dark);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--silver-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1200px) {
    .container,
    .container-wide {
        padding: 0 40px;
    }
    
    .header-content {
        padding: 1rem 40px;
    }
    
    .hero-content-wrapper {
        padding: 60px 40px;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .section-title-large {
        font-size: 3rem;
    }
    
    .section-title-xlarge {
        font-size: 3.5rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scenario-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .free-event-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscription-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-header {
        top: 50px;
    }
    
    .header-content {
        padding: 0.75rem 20px;
    }
    
    .header-nav {
        gap: 1rem;
    }
    
    .header-nav a {
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .promo-text {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .promo-banner {
        padding: 12px 10px;
    }
    
    .hero-section {
        min-height: calc(100vh - 110px);
        padding-top: 110px;
    }
    
    .hero-container {
        min-height: calc(100vh - 110px);
    }
    
    .hero-content-wrapper {
        padding: 40px 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .free-event-badge {
        padding: 0.85rem 1.5rem;
    }
    
    .badge-text {
        font-size: 0.875rem;
    }
    
    .hero-microcopy {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        width: 100%;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1.375rem 2rem;
        font-size: 1.125rem;
        min-height: 60px;
    }
    
    .btn-secondary-hero {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
        min-height: 56px;
    }
    
    .cta-info {
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .info-item {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .image-overlay {
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    .stylist-main-img {
        filter: brightness(0.82) contrast(1.08) saturate(0.85);
    }
    
    .section-title,
    .section-title-medium {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 1.5rem;
    }
    
    .section-title-large {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .section-title-xlarge {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .container,
    .container-wide {
        padding: 0 20px;
    }
    
    .free-event-section {
        padding: 60px 0;
    }
    
    .problem-section,
    .decision-section,
    .fatigue-section,
    .solution-section {
        padding: 60px 0;
    }
    
    .pricing-section-step1,
    .pricing-section-step2 {
        padding: 60px 0;
    }
    
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .section-subtitle,
    .section-subtitle-left {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .large-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .large-text strong {
        font-size: 1.15rem;
    }
    
    .scenario-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .scenario-card {
        padding: 1.75rem 1.5rem;
    }
    
    .scenario-card h4 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .scenario-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .scenario-icon {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 100%;
        max-width: 320px;
        margin: 2rem auto;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .subscription-headline {
        font-size: 1.65rem;
        line-height: 1.35;
        margin-bottom: 1.5rem;
    }
    
    .subscription-card {
        padding: 2rem 1.5rem;
    }
    
    .sub-amount {
        font-size: 2.75rem;
    }
    
    .benefits-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .final-cta-headline {
        font-size: 1.85rem;
        line-height: 1.35;
        margin-bottom: 2rem;
    }
    
    .urgency-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .urgency-text {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .plan-price .price-amount {
        font-size: 2.5rem;
    }
    
    .plan-features li {
        font-size: 0.95rem;
        padding: 0.65rem 0;
    }
    
    .faq-question h4 {
        font-size: 1.05rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links,
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-nav {
        gap: 0.65rem;
    }
    
    .header-nav a {
        font-size: 0.8rem;
    }
    
    .promo-banner {
        padding: 10px 15px;
    }
    
    .promo-text {
        font-size: 11px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .section-title-large {
        font-size: 1.85rem;
    }
    
    .section-title-xlarge {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 1.125rem 1.75rem;
        font-size: 1rem;
        min-height: 54px;
    }
    
    .btn-hero {
        padding: 1.25rem 1.75rem;
        font-size: 1.05rem;
        min-height: 58px;
    }
    
    .btn-secondary-hero {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .btn-subscription {
        padding: 1.25rem 1.75rem;
        font-size: 1rem;
        min-height: 56px;
    }
    
    .container,
    .container-wide {
        padding: 0 16px;
    }
    
    .hero-section {
        padding-top: 110px;
        min-height: calc(100vh - 110px);
    }
    
    .hero-container {
        min-height: calc(100vh - 110px);
    }
    
    .hero-content-wrapper {
        padding: 30px 16px;
    }
    
    .free-event-section {
        padding: 50px 0;
    }
    
    .problem-section,
    .decision-section,
    .fatigue-section,
    .solution-section {
        padding: 50px 0;
    }
    
    .pricing-section-step1,
    .pricing-section-step2 {
        padding: 50px 0;
    }
    
    .faq-section,
    .final-cta-section {
        padding: 50px 0;
    }
    
    .scenario-card,
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    
    .subscription-card {
        padding: 1.75rem 1.25rem;
    }
    
    .scenario-icon {
        font-size: 2.25rem;
    }
    
    .phone-mockup {
        max-width: 300px;
    }
    
    .subscription-headline {
        font-size: 1.5rem;
    }
    
    .sub-amount {
        font-size: 2.5rem;
    }
    
    .final-cta-headline {
        font-size: 1.65rem;
    }
}
