/* ============================================
   DRACINTA LANDING PAGE - MOBILE FIRST
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-50: #FFF0F5;
    --pink-100: #FFE4E9;
    --pink-200: #FFC0CB;
    --pink-300: #FFB6C1;
    --pink-400: #FF69B4;
    --pink-500: #FF1493;
    --pink-600: #DB7093;
    --pink-700: #C71585;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-600: #6B7280;
    --gray-700: #4B5563;
    --gray-800: #374151;
    --gray-900: #1F2937;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    padding: 14px 28px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--pink-500);
    padding: 12px 24px;
    font-size: 15px;
    border: 2px solid var(--pink-400);
}

.btn-secondary:hover {
    background: var(--pink-50);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
    width: 100%;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    }
    to {
        box-shadow: 0 4px 30px rgba(255, 20, 147, 0.7), 0 0 60px rgba(255, 20, 147, 0.3);
    }
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-200) 50%, var(--pink-300) 100%);
    padding: 40px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--pink-600);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--pink-500);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pink-400);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* --- Pain Points Section --- */
.pain-points {
    padding: 40px 0;
    background: var(--gray-50);
}

.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid #EF4444;
    box-shadow: var(--shadow-sm);
}

.pain-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.pain-text strong {
    color: var(--gray-900);
}

.pain-solution {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
    border-radius: var(--radius-lg);
}

.solution-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.highlight-inline {
    color: var(--pink-500);
    font-weight: 700;
}

/* --- How It Works --- */
.how-it-works {
    padding: 40px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--pink-50);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 12px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

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

.steps-cta-text {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.steps-cta .btn-primary {
    width: 100%;
}

/* --- Urgency Section --- */
.urgency {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFF1F2, #FFE4E6, #FECDD3);
}

.urgency-content {
    text-align: center;
}

.urgency-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.urgency-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pink-500);
}

.urgency-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.urgency-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.urgency-stat {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.urgency-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--pink-500);
    line-height: 1.2;
}

.urgency-stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* --- Emotional Hook --- */
.emotional-hook {
    padding: 48px 0;
    background: var(--white);
}

.emotional-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.emotional-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.emotional-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.emotional-text strong {
    color: var(--pink-500);
}

.emotional-text em {
    font-style: normal;
    color: var(--pink-600);
    font-weight: 600;
}

.emotional-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-500));
    margin: 24px auto;
    border-radius: 2px;
}

.emotional-subtext {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
}

/* --- FAQ Section --- */
.faq {
    padding: 40px 0;
    background: var(--pink-50);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--pink-100);
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --- CTA Trust --- */
.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.trust-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

/* --- Stats Section --- */
.stats {
    background: var(--white);
    padding: 24px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.stat-item {
    padding: 16px 8px;
    background: var(--pink-50);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--pink-500);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* --- Section Title --- */
.section-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.title-icon {
    color: var(--pink-400);
    margin-right: 4px;
}

/* --- Drama Collection --- */
.drama-collection {
    padding: 40px 0;
    background: var(--white);
}

.drama-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.drama-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.drama-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.drama-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #FF4757, #FF6B81);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.drama-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    padding: 10px 10px 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.drama-genre {
    font-size: 11px;
    color: var(--gray-600);
    padding: 0 10px 10px;
}

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

/* --- Features Section --- */
.features {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--pink-50) 0%, var(--white) 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--pink-500);
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
}

.feature-highlight {
    border: 2px solid var(--pink-400);
    background: linear-gradient(135deg, var(--pink-50), var(--white));
}

/* --- Pricing Section --- */
.pricing {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-50) 100%);
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-subtitle strong {
    color: var(--pink-500);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card-premium {
    border-color: var(--pink-400);
    background: linear-gradient(135deg, var(--pink-50), var(--white));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 14px;
    font-weight: 600;
    color: var(--pink-500);
}

.pricing-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-card-premium .pricing-amount {
    color: var(--pink-500);
}

.pricing-period {
    font-size: 12px;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.check-icon {
    color: #22C55E;
    font-weight: 700;
    font-size: 14px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    color: var(--pink-600);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
    transform: translateY(-2px);
}

.btn-popular {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-popular:hover {
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.btn-premium {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
    color: var(--white);
}

/* --- Referral Section --- */
.pricing-referral {
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.referral-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.referral-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pink-500);
}

.referral-content {
    text-align: center;
}

.referral-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.referral-text {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 8px;
}

.referral-text strong {
    color: var(--pink-600);
}

.referral-highlight {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink-500);
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.pricing-cta-copy {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pricing-cta-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.pricing-cta-text strong {
    color: var(--pink-500);
}

/* --- Testimonials --- */
.testimonials {
    padding: 40px 0;
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card {
    background: var(--pink-50);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--pink-100);
}

.stars {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
}

.author-role {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
}

/* --- Final CTA --- */
.final-cta {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500), var(--pink-700));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--pink-500);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
}

/* --- Footer --- */
.footer {
    padding: 24px 0;
    background: var(--gray-900);
    text-align: center;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--pink-400);
    margin-bottom: 6px;
}

.footer-text {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 11px;
    color: var(--gray-600);
    opacity: 0.7;
}

/* --- Floating CTA --- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.5s ease-out;
}

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

.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.6);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   TABLET (480px+)
   ============================================ */
@media (min-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 60px 0 100px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-large {
        width: auto;
    }

    .hero-wave svg {
        height: 80px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .drama-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .drama-title {
        font-size: 14px;
    }

    .drama-genre {
        font-size: 12px;
    }

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

    .feature-card {
        padding: 24px 16px;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .pain-points {
        padding: 48px 0;
    }

    .pain-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pain-item {
        flex: 1 1 calc(50% - 6px);
    }

    .how-it-works {
        padding: 48px 0;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .steps-cta .btn-primary {
        width: auto;
    }

    .urgency {
        padding: 48px 0;
    }

    .urgency-title {
        font-size: 26px;
    }

    .emotional-hook {
        padding: 56px 0;
    }

    .emotional-title {
        font-size: 28px;
    }

    .emotional-text {
        font-size: 16px;
    }

    .faq {
        padding: 48px 0;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .pricing {
        padding: 48px 0;
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 8px);
    }

    .pricing-referral {
        flex-direction: row;
        text-align: left;
    }

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

    .floating-cta {
        left: auto;
        right: 24px;
        bottom: 24px;
        width: auto;
    }
}

/* ============================================
   DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .hero {
        padding: 80px 0 120px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-wave svg {
        height: 100px;
    }

    .stats {
        padding: 32px 0;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .drama-collection {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .drama-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .features {
        padding: 60px 0;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        flex-direction: row;
    }

    .pricing-card {
        flex: 1;
    }

    .pricing-amount {
        font-size: 36px;
    }

    .pricing-referral {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .pain-points {
        padding: 60px 0;
    }

    .pain-item {
        flex: 1 1 calc(25% - 9px);
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        gap: 24px;
    }

    .urgency {
        padding: 60px 0;
    }

    .urgency-title {
        font-size: 30px;
    }

    .urgency-text {
        font-size: 16px;
    }

    .urgency-stats {
        max-width: 400px;
        margin: 0 auto;
    }

    .emotional-hook {
        padding: 64px 0;
    }

    .emotional-title {
        font-size: 32px;
    }

    .emotional-text {
        font-size: 17px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .final-cta {
        padding: 64px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .footer {
        padding: 32px 0;
    }
}

/* ============================================
   LARGE DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero {
        padding: 100px 0 140px;
    }

    .hero-title {
        font-size: 48px;
    }

    .drama-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .features-grid {
        gap: 24px;
    }

    .pain-grid {
        flex-direction: row;
    }

    .pain-item {
        flex: 1;
    }

    .urgency-stats {
        max-width: 500px;
    }

    .faq-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-amount {
        font-size: 40px;
    }

    .pricing-referral {
        padding: 32px;
    }

    .referral-title {
        font-size: 22px;
    }

    .referral-text {
        font-size: 15px;
    }
}

/* --- Body padding for floating CTA on mobile --- */
@media (max-width: 479px) {
    body {
        padding-bottom: 70px;
    }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- Focus States --- */
a:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 2px;
}
