/* =========================================
   OSTYLIST - Feminine Beauty Landing Page CSS
   Inspired by soft pink, sky blue, elegant beauty aesthetics
   ========================================= */

/* CSS Custom Properties */
:root {
    /* Colors - Pink + Sky Blue Beauty Palette */
    --blush-pink: #f8e1e8;
    --soft-pink: #fce4ec;
    --rose-pink: #f48fb1;
    --hot-pink: #ec407a;
    --dusty-rose: #e8a0b5;
    --rose-gold: #e8c4c4;

    /* Sky Blue Accents */
    --sky-blue: #81d4fa;
    --sky-blue-light: #b3e5fc;
    --sky-blue-dark: #4fc3f7;
    --aqua: #80deea;

    --cream: #fff9f5;
    --pearl: #fdf8f5;
    --warm-white: #fffbf8;
    --soft-gray: #9e8b8b;
    --text-dark: #4a3f3f;
    --text-light: #7a6b6b;

    /* Gradients - Pink to Sky Blue */
    --gradient-pink: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
    --gradient-rose: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    --gradient-sky: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 50%, #81d4fa 100%);
    --gradient-holographic: linear-gradient(135deg,
            rgba(255, 182, 193, 0.4) 0%,
            rgba(129, 212, 250, 0.4) 25%,
            rgba(225, 190, 231, 0.3) 50%,
            rgba(128, 222, 234, 0.4) 75%,
            rgba(255, 182, 193, 0.4) 100%);
    --gradient-button-primary: linear-gradient(135deg, #f48fb1 0%, #ec407a 100%);
    --gradient-button-secondary: linear-gradient(135deg, #81d4fa 0%, #4fc3f7 100%);
    --gradient-button-pink: linear-gradient(135deg, #f8bbd9 0%, #f48fb1 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(244, 143, 177, 0.3) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 40px rgba(244, 143, 177, 0.15);
    --shadow-lg: 0 25px 60px rgba(244, 143, 177, 0.2);
    --shadow-glow: 0 0 40px rgba(244, 143, 177, 0.3);
    --shadow-sky: 0 10px 40px rgba(129, 212, 250, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-rose);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 20% 20%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 30%, rgba(176, 224, 230, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 80%, rgba(221, 160, 221, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #d4a574 0%, #c9a962 50%, #a08050 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink-text {
    color: var(--rose-pink);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-button-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: white;
}

.btn-pink {
    background: var(--gradient-button-pink);
    color: white;
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.3);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 143, 177, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rose-pink);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative Elements */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a962'%3E%3Cpath d='M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 1;
    }
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(253, 242, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(212, 165, 165, 0.1);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 36px;
    color: var(--deep-brown);
    letter-spacing: 1px;
}

.logo-text span {
    font-family: var(--font-heading);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-pink);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--rose-pink);
}

.nav-cta {
    padding: 12px 28px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 70% 70%, rgba(176, 224, 230, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 30%, rgba(255, 218, 185, 0.3) 0%, transparent 50%);
}

/* Holographic shimmer effect */
.holographic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 182, 193, 0.1) 25%,
            rgba(176, 224, 230, 0.1) 50%,
            rgba(221, 160, 221, 0.1) 75%,
            transparent 100%);
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 20px;
    animation: floatGentle 8s ease-in-out infinite;
    opacity: 0.5;
}

.float-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.float-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 35%;
    left: 5%;
    animation-delay: 3s;
}

.float-4 {
    top: 55%;
    right: 8%;
    animation-delay: 4.5s;
}

.float-5 {
    bottom: 15%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.4);
    border-radius: 50px;
    font-size: 13px;
    color: var(--rose-pink);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--deep-brown);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
}

.before-after-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Glowing Ring Frame */
.image-card {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.image-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8bbd9, #e1bee7, #b2dfdb, #ffe0b2, #f8bbd9);
    z-index: -1;
    animation: rotateGradient 4s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        inset 0 0 30px rgba(244, 143, 177, 0.3),
        0 0 60px rgba(244, 143, 177, 0.2);
}

.image-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 4px solid white;
}

.image-card.after img {
    width: 220px;
    height: 220px;
}

.image-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 143, 177, 0.3);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ai-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 14px;
    background: var(--gradient-button-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-soft);
}

.transform-arrow {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 143, 177, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.transform-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--rose-pink);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--rose-pink);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* =========================================
   PROBLEMS SECTION
   ========================================= */
.problems {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

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

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    background: var(--gradient-pink);
}

.solution-card .card-icon {
    background: var(--gradient-button-pink);
}

.result-card .card-icon {
    background: var(--gradient-button-primary);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 500;
}

.problem-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.solution-card {
    border-color: rgba(244, 143, 177, 0.3);
    background: linear-gradient(180deg, rgba(252, 228, 236, 0.8) 0%, var(--glass-bg) 100%);
}

/* =========================================
   DEMO SECTION
   ========================================= */
.demo {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(253, 248, 245, 0.8) 50%, transparent 100%);
}

.demo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.demo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    overflow: hidden;
    max-width: 340px;
    transition: var(--transition-smooth);
}

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

.demo-card.highlight {
    border: 2px solid var(--rose-pink);
    box-shadow: 0 0 60px rgba(244, 143, 177, 0.15);
}

.demo-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.demo-overlay.success {
    background: var(--gradient-button-primary);
    border: none;
}

.demo-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.demo-overlay.success .demo-price {
    color: white;
}

.demo-content {
    padding: 28px;
}

.demo-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.before-label {
    background: rgba(244, 143, 177, 0.15);
    color: var(--rose-pink);
}

.after-label {
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold);
}

.demo-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.demo-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.demo-content strong {
    color: var(--text-dark);
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.arrow-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--rose-pink), transparent);
}

.arrow-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-button-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2.5s infinite;
    box-shadow: var(--shadow-glow);
}

.arrow-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 143, 177, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(244, 143, 177, 0);
    }
}

.arrow-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-pink);
    letter-spacing: 0.5px;
}

.demo-footer {
    margin-top: 60px;
    text-align: center;
}

.cost-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.cost-icon {
    font-size: 28px;
}

.cost-text {
    font-size: 15px;
    color: var(--text-light);
}

.cost-text strong {
    color: var(--rose-pink);
    font-weight: 600;
}

/* =========================================
   CALCULATOR SECTION
   ========================================= */
.calculator {
    background: linear-gradient(180deg, transparent 0%, rgba(252, 228, 236, 0.3) 50%, transparent 100%);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 50px;
}

.calc-input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.label-icon {
    font-size: 22px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calc-slider {
    flex: 1;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--soft-pink), var(--rose-pink));
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gradient-button-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    border: 3px solid white;
    transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-value {
    min-width: 70px;
    padding: 10px 18px;
    background: var(--cream);
    border: 1px solid rgba(244, 143, 177, 0.2);
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-dark);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card {
    background: var(--cream);
    border-radius: 25px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(244, 143, 177, 0.15);
}

.result-card.highlight {
    background: var(--gradient-button-pink);
    grid-column: span 2;
    border: none;
}

.result-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.result-card.highlight .result-label {
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
}

.result-card.highlight .result-value {
    color: white;
    font-size: 48px;
}

.roi-badge {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 20px;
    margin-top: 10px;
}

.roi-icon {
    font-size: 26px;
}

.roi-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244, 143, 177, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink);
    border-radius: 50%;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(253, 248, 245, 0.7) 50%, transparent 100%);
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border: 2px solid var(--rose-pink);
    position: relative;
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(244, 143, 177, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-button-pink);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 15px 15px;
}

.pricing-header {
    padding: 36px 24px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(244, 143, 177, 0.1);
}

.plan-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--soft-pink);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    color: var(--rose-pink);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 500;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-old {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    background: var(--gradient-button-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 13px;
    color: var(--text-light);
}

.pricing-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}

.plan-features .check {
    color: var(--rose-pink);
    font-weight: 700;
    font-size: 16px;
}

.pricing-footer {
    padding: 16px 24px;
    background: var(--soft-pink);
    text-align: center;
}

.per-image {
    font-size: 12px;
    color: var(--text-light);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
    padding: 28px 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    text-align: center;
}

.note-icon {
    font-size: 36px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 600px;
}

.pricing-note strong {
    color: var(--text-dark);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(252, 228, 236, 0.3) 50%, transparent 100%);
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 36px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244, 143, 177, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-pink);
    box-shadow: 0 0 20px rgba(244, 143, 177, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--soft-pink);
    border-radius: 15px;
}

.testimonial-result .result-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-result .result-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--rose-pink);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(244, 143, 177, 0.3);
}

.faq-item.active {
    border-color: var(--rose-pink);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--rose-pink);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--rose-pink);
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(252, 228, 236, 0.4), transparent);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 18px;
    font-weight: 400;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--cream);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(244, 143, 177, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    color: var(--rose-pink);
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--text-dark);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-badge {
    font-size: 13px;
    color: var(--text-light);
}

.payment-icon {
    height: 22px;
    opacity: 0.6;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .before-after-wrapper {
        justify-content: center;
    }

    .problems-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .demo-showcase {
        flex-direction: column;
    }

    .demo-arrow {
        flex-direction: row;
    }

    .arrow-line {
        width: 50px;
        height: 2px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(244, 143, 177, 0.1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .calc-results {
        grid-template-columns: 1fr;
    }

    .result-card.highlight {
        grid-column: span 1;
    }

    .roi-badge {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat::after {
        display: none;
    }

    .before-after-wrapper {
        flex-direction: column;
    }

    .image-card img {
        width: 150px;
        height: 150px;
    }

    .image-card.after img {
        width: 180px;
        height: 180px;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    .calculator-card {
        padding: 28px;
        border-radius: 28px;
    }

    .pricing-note {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        font-size: 28px;
    }
}

/* =========================================
   PARTICLES BACKGROUND
   ========================================= */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* =========================================
   FLOATING BEAUTY PARTICLES
   ========================================= */
.beauty-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.beauty-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0.4;
    animation: beautyFloat 20s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(244, 143, 177, 0.3));
}

.particle-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    top: 10%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.particle-3 {
    top: 20%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.particle-4 {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.particle-5 {
    top: 35%;
    left: 3%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.particle-6 {
    top: 40%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 23s;
}

.particle-7 {
    top: 55%;
    left: 8%;
    animation-delay: 2.5s;
    animation-duration: 27s;
}

.particle-8 {
    top: 60%;
    right: 12%;
    animation-delay: 4.5s;
    animation-duration: 21s;
}

.particle-9 {
    top: 75%;
    left: 12%;
    animation-delay: 1.5s;
    animation-duration: 29s;
}

.particle-10 {
    top: 80%;
    right: 8%;
    animation-delay: 3.5s;
    animation-duration: 25s;
}

.particle-11 {
    top: 90%;
    left: 20%;
    animation-delay: 0.5s;
    animation-duration: 24s;
}

.particle-12 {
    top: 85%;
    right: 20%;
    animation-delay: 6s;
    animation-duration: 26s;
}

@keyframes beautyFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-30vh) translateX(20px) rotate(45deg) scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-60vh) translateX(-10px) rotate(90deg) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-30vh) translateX(15px) rotate(135deg) scale(1.05);
        opacity: 0.55;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(180deg) scale(1);
        opacity: 0.4;
    }
}

/* =========================================
   AMBIENT LIGHTS
   ========================================= */
.ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: ambientMove 15s ease-in-out infinite;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.6) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 224, 230, 0.5) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation-delay: 5s;
}

.light-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(221, 160, 221, 0.5) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes ambientMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

/* =========================================
   APP INTERFACE SECTION
   ========================================= */
.app-interface {
    background: linear-gradient(180deg, transparent 0%, rgba(252, 228, 236, 0.4) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.app-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 143, 177, 0.5), transparent);
}

.app-interface-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-interface-content {
    padding-right: 20px;
}

.app-interface-content .section-badge {
    margin-bottom: 20px;
}

.app-interface-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.app-interface-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--rose-pink);
    margin-bottom: 20px;
}

.app-interface-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-interface-features {
    list-style: none;
    margin-bottom: 36px;
}

.app-interface-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(244, 143, 177, 0.1);
}

.app-interface-features li:last-child {
    border-bottom: none;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-button-pink);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* App Mockup Visual */
.app-interface-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.app-mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.25) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

.app-mockup-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(248, 187, 217, 0.6),
            rgba(225, 190, 231, 0.5),
            rgba(178, 223, 219, 0.4),
            rgba(255, 224, 178, 0.5),
            rgba(248, 187, 217, 0.6));
    padding: 6px;
    animation: ringRotate 10s linear infinite;
}

.app-mockup-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--cream);
    border-radius: 50%;
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.app-mockup-image {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid white;
    box-shadow:
        0 0 60px rgba(244, 143, 177, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.1);
}

.app-mockup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-mockup-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
    padding: 10px 20px;
    background: var(--gradient-button-primary);
    border-radius: 25px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.app-mockup-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    z-index: 3;
}

.mockup-btn {
    padding: 14px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 143, 177, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mockup-btn:hover {
    border-color: var(--rose-pink);
    background: rgba(252, 228, 236, 0.8);
}

.mockup-btn.gold {
    background: var(--gradient-button-primary);
    border: none;
    color: white;
}

.mockup-btn.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

/* App Interface Responsive */
@media (max-width: 900px) {
    .app-interface-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .app-interface-content {
        padding-right: 0;
    }

    .app-interface-content .section-title {
        text-align: center;
    }

    .app-interface-features li {
        justify-content: center;
    }

    .app-interface-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .app-mockup-image {
        width: 220px;
        height: 220px;
    }

    .app-mockup-ring {
        width: 260px;
        height: 260px;
    }

    .app-mockup-glow {
        width: 350px;
        height: 350px;
    }

    .app-mockup-buttons {
        flex-direction: column;
    }

    .app-interface-subtitle {
        font-size: 20px;
    }
}

/* Hide beauty particles on mobile for performance */
@media (max-width: 768px) {
    .beauty-particles {
        display: none;
    }

    .ambient-lights {
        opacity: 0.5;
    }
}

/* =========================================
   HERO BEFORE/AFTER SHOWCASE
   ========================================= */
.before-after-showcase {
    position: relative;
}

.before-after-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(244, 143, 177, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.ba-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    overflow: hidden;
}

.ba-before-img,
.ba-after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before-img {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-after-img {
    z-index: 0;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), white, rgba(255, 255, 255, 0.3));
}

.ba-handle-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-button-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.5);
    border: 3px solid white;
    cursor: ew-resize;
    pointer-events: auto;
}

.ba-handle-circle svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.ba-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.ba-label {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-label.before-l {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    backdrop-filter: blur(10px);
}

.ba-label.after-l {
    background: var(--gradient-button-primary);
    color: white;
}

.ba-ai-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    background: var(--gradient-button-pink);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(244, 143, 177, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

/* =========================================
   APP PANEL (AI Analysis + Treatment Table)
   ========================================= */
.app-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 30px;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.app-panel-header {
    margin-bottom: 24px;
}

.app-panel-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(244, 143, 177, 0.2);
}

.app-panel-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.app-panel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 18px;
    background: var(--gradient-button-primary);
    border-radius: 25px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.app-panel-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.panel-btn {
    flex: 1;
    padding: 14px 20px;
    background: var(--soft-pink);
    border: 2px solid rgba(244, 143, 177, 0.3);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.panel-btn:hover {
    border-color: var(--rose-pink);
    background: rgba(252, 228, 236, 0.9);
    transform: translateY(-2px);
}

.panel-btn.gold {
    background: var(--gradient-button-primary);
    border: none;
    color: white;
}

.panel-btn.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
}

/* Style Grid Preview */
.style-grid-preview {
    margin-top: 30px;
    text-align: center;
}

.style-grid-preview img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.style-grid-preview img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(244, 143, 177, 0.3);
}

.style-grid-caption {
    margin-top: 16px;
    font-size: 14px;
    color: var(--rose-pink);
    font-weight: 500;
}

/* AI Analysis Section */
.app-panel-analysis {
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.5) 0%, rgba(225, 190, 231, 0.3) 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(244, 143, 177, 0.2);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.analysis-icon {
    font-size: 24px;
}

.analysis-header h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.analysis-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.analysis-text em {
    color: var(--rose-pink);
    font-style: italic;
}

/* Treatment Table Section */
.app-panel-treatments {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(244, 143, 177, 0.15);
}

.treatments-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--soft-pink);
}

.treatments-icon {
    font-size: 24px;
}

.treatments-header h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.treatments-table {
    width: 100%;
    border-collapse: collapse;
}

.treatments-table th {
    text-align: left;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(244, 143, 177, 0.15);
}

.treatments-table th:last-child {
    text-align: right;
}

.treatments-table td {
    padding: 14px 8px;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(244, 143, 177, 0.1);
}

.treatments-table tbody tr {
    transition: var(--transition-smooth);
}

.treatments-table tbody tr:hover {
    background: rgba(252, 228, 236, 0.3);
}

.treatment-icon {
    margin-right: 8px;
}

.treatments-table .price {
    text-align: right;
    font-weight: 600;
    color: var(--rose-pink);
}

.treatments-table tfoot td {
    padding-top: 16px;
    border-bottom: none;
    border-top: 2px solid var(--rose-pink);
}

.treatments-table .price.total {
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--rose-pink);
}

/* Materials Table */
.app-panel-materials {
    background: linear-gradient(135deg, rgba(129, 212, 250, 0.1) 0%, rgba(128, 222, 234, 0.08) 100%);
    border-radius: 20px;
    padding: 20px;
    margin-top: 16px;
    border: 1px solid rgba(129, 212, 250, 0.2);
}

.materials-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(129, 212, 250, 0.3);
}

.materials-icon {
    font-size: 24px;
}

.materials-header h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.materials-table {
    width: 100%;
    border-collapse: collapse;
}

.materials-table th {
    text-align: left;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sky-blue-dark);
    border-bottom: 1px solid rgba(129, 212, 250, 0.2);
}

.materials-table td {
    padding: 12px 8px;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(129, 212, 250, 0.1);
}

.materials-table tbody tr {
    transition: var(--transition-smooth);
}

.materials-table tbody tr:hover {
    background: rgba(129, 212, 250, 0.1);
}

.materials-table tbody tr:last-child td {
    border-bottom: none;
}

.material-icon {
    margin-right: 8px;
}

/* Responsive for new components */
@media (max-width: 900px) {
    .ba-image-wrapper {
        width: 350px;
        height: 440px;
    }

    .app-panel {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ba-image-wrapper {
        width: 280px;
        height: 360px;
    }

    .ba-handle-circle {
        width: 40px;
        height: 40px;
    }

    .ba-handle-circle svg {
        width: 18px;
        height: 18px;
    }

    .app-panel {
        padding: 20px;
    }

    .app-panel-buttons {
        flex-direction: column;
    }

    .app-panel-image img {
        height: 200px;
    }

    .treatments-table td {
        padding: 10px 6px;
        font-size: 13px;
    }

    /* Mobilde İşlem Listesi tablosu sola yaslı */
    .app-panel-treatments {
        text-align: left;
    }

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

    .treatments-table td:first-child {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .treatments-table th,
    .treatments-table td {
        text-align: left;
        padding-left: 8px;
    }

    .treatments-table th:last-child,
    .treatments-table td.price {
        text-align: right;
        padding-right: 8px;
    }

    .treatment-icon {
        flex-shrink: 0;
    }
}

/* =========================================
   GRADIENT SHIMMER BACKGROUND
   ========================================= */
.gradient-shimmer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.shimmer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: shimmerFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.5) 0%, rgba(236, 64, 122, 0.2) 50%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 212, 250, 0.5) 0%, rgba(79, 195, 247, 0.2) 50%, transparent 70%);
    top: 20%;
    right: -15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 190, 231, 0.5) 0%, rgba(206, 147, 216, 0.2) 50%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.orb-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(128, 222, 234, 0.4) 0%, rgba(77, 208, 225, 0.2) 50%, transparent 70%);
    bottom: -10%;
    right: 20%;
    animation-delay: 15s;
    animation-duration: 28s;
}

@keyframes shimmerFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.5;
    }

    75% {
        transform: translate(15px, 10px) scale(1.05);
        opacity: 0.65;
    }
}

/* =========================================
   GOLD DUST PARTICLES
   ========================================= */
.gold-dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gold-dust {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #fff 100%);
    border-radius: 50%;
    opacity: 0;
    animation: goldDustFloat 15s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}

.dust-1 {
    left: 5%;
    animation-delay: 0s;
}

.dust-2 {
    left: 15%;
    animation-delay: 1s;
}

.dust-3 {
    left: 25%;
    animation-delay: 2s;
}

.dust-4 {
    left: 35%;
    animation-delay: 3s;
}

.dust-5 {
    left: 45%;
    animation-delay: 4s;
}

.dust-6 {
    left: 55%;
    animation-delay: 5s;
}

.dust-7 {
    left: 65%;
    animation-delay: 6s;
}

.dust-8 {
    left: 75%;
    animation-delay: 7s;
}

.dust-9 {
    left: 85%;
    animation-delay: 8s;
}

.dust-10 {
    left: 95%;
    animation-delay: 9s;
}

.dust-11 {
    left: 10%;
    animation-delay: 10s;
}

.dust-12 {
    left: 30%;
    animation-delay: 11s;
}

.dust-13 {
    left: 50%;
    animation-delay: 12s;
}

.dust-14 {
    left: 70%;
    animation-delay: 13s;
}

.dust-15 {
    left: 90%;
    animation-delay: 14s;
}

@keyframes goldDustFloat {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: translateX(10px) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-15px) scale(0.8);
    }

    90% {
        opacity: 0.4;
        transform: translateX(5px) scale(0.6);
    }

    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(0) scale(0.3);
    }
}

/* =========================================
   NAV AUTH BUTTONS
   ========================================= */
.nav-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--sky-blue);
    border-radius: 30px;
    color: var(--sky-blue-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-outline-auth:hover {
    background: var(--sky-blue-light);
    border-color: var(--sky-blue-dark);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-outline-auth svg {
    stroke: currentColor;
}

.btn-primary-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-button-primary);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.35);
    transition: var(--transition-smooth);
}

.btn-primary-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 64, 122, 0.4);
}

.btn-primary-auth svg {
    stroke: white;
}

/* Hide auth buttons on mobile, show in mobile menu */
@media (max-width: 768px) {
    .nav-auth-buttons {
        display: none;
    }
}

/* Update gradient text for new palette */
.gradient-text {
    background: linear-gradient(135deg, var(--rose-pink) 0%, var(--hot-pink) 50%, var(--sky-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hide gold dust on mobile for performance */
@media (max-width: 768px) {
    .gold-dust-container {
        display: none;
    }

    .gradient-shimmer-bg .shimmer-orb {
        filter: blur(150px);
        opacity: 0.4;
    }
}

/* =========================================
   COMPARISON TABLE SECTION - Feminine Theme
   ========================================= */
.comparison {
    background: linear-gradient(180deg, transparent 0%, rgba(252, 228, 236, 0.5) 50%, transparent 100%);
    padding: 100px 0;
    position: relative;
}

.comparison .section-header {
    margin-bottom: 50px;
}

.emoji-icon {
    font-size: 1.1em;
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    overflow-x: visible;
    overflow-y: visible;
    border-radius: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    padding: 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(244, 143, 177, 0.15) 0%, rgba(129, 212, 250, 0.1) 100%);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    border-bottom: 2px solid rgba(244, 143, 177, 0.2);
}

.comparison-table th .col-icon {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.criteria-col {
    width: 15%;
}

.free-col {
    width: 30%;
    color: var(--text-light) !important;
}

.ostyler-col {
    width: 35%;
    color: var(--rose-pink) !important;
}

.benefit-col {
    width: 20%;
    color: var(--sky-blue-dark) !important;
}

/* Table Body */
.comparison-table tbody tr {
    border-bottom: 1px solid rgba(244, 143, 177, 0.1);
    transition: var(--transition-smooth);
}

.comparison-table tbody tr:hover {
    background: rgba(252, 228, 236, 0.4);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
    vertical-align: top;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

.criteria-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.criteria-icon {
    font-size: 26px;
}

.criteria-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.free-cell {
    background: rgba(255, 200, 200, 0.1);
}

.free-cell strong {
    color: #d32f2f;
}

.ostyler-cell {
    background: rgba(129, 212, 250, 0.08);
}

.ostyler-cell strong {
    color: var(--sky-blue-dark);
}

.ostyler-cell em {
    color: var(--rose-pink);
    font-style: normal;
    font-weight: 600;
}

.benefit-cell {
    text-align: center;
    vertical-align: middle;
}

.benefit-tag {
    display: inline-block;
    padding: 10px 16px;
    background: var(--gradient-button-primary);
    border: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
}

/* Comparison CTA */
.comparison-cta {
    margin-top: 50px;
    text-align: center;
}

.cta-text {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

.comparison-cta .btn-primary {
    background: var(--gradient-button-primary);
    box-shadow: 0 10px 40px rgba(244, 143, 177, 0.4);
}

/* Mobile Responsive for Comparison Table */
@media (max-width: 900px) {
    .comparison-table-wrapper {
        margin: 0 -12px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 80px 0;
    }

    .comparison-table {
        min-width: 100%;
        display: block;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: block;
    }

    .comparison-table tbody tr {
        display: block;
        margin-bottom: 16px;
        border-radius: 20px;
        background: var(--glass-bg);
        border: 1px solid rgba(244, 143, 177, 0.15);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }

    .comparison-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .comparison-table td {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(244, 143, 177, 0.08);
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .criteria-cell {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(244, 143, 177, 0.15) 0%, rgba(129, 212, 250, 0.1) 100%);
        border-radius: 16px 16px 0 0;
        margin: -16px -20px 0;
        padding: 16px 20px;
    }

    .criteria-icon {
        font-size: 24px;
    }

    .free-cell::before {
        content: "❌ Ücretsiz Uygulamalar:";
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #d32f2f;
        margin-bottom: 8px;
    }

    .ostyler-cell::before {
        content: "✅ Ostyler (Salon OS):";
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--sky-blue-dark);
        margin-bottom: 8px;
    }

    .benefit-cell {
        background: linear-gradient(135deg, rgba(244, 143, 177, 0.08) 0%, rgba(129, 212, 250, 0.05) 100%);
        text-align: left;
        border-radius: 0 0 16px 16px;
        margin: 0 -20px -16px;
        padding: 16px 20px;
    }

    .benefit-cell::before {
        content: "💰 Size Kazancı:";
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--rose-pink);
        margin-bottom: 8px;
    }

    .cta-text {
        font-size: 15px;
        padding: 0 16px;
    }
}

/* Logo Gradient Text Enhancement */
.logo-text.gradient-text {
    font-family: var(--font-accent);
    font-size: 36px;
    background: linear-gradient(135deg, var(--rose-pink) 0%, var(--hot-pink) 40%, var(--sky-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(244, 143, 177, 0.3));
}

@media (max-width: 480px) {
    .logo-text.gradient-text {
        font-size: 28px;
    }
}

/* =========================================
   VIRAL VIDEO STUDIO SECTION
   ========================================= */
.viral-studio {
    background: linear-gradient(180deg, transparent 0%, rgba(129, 212, 250, 0.08) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.viral-studio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(129, 212, 250, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.viral-studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.viral-badge {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.25) 0%, rgba(13, 71, 161, 0.15) 100%);
    border-color: rgba(79, 195, 247, 0.6);
    color: #0d47a1;
    font-weight: 600;
}

.viral-studio-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.viral-studio-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.viral-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.viral-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(129, 212, 250, 0.2);
}

.viral-features-list li:last-child {
    border-bottom: none;
}

.viral-features-list .feature-check {
    font-size: 18px;
    flex-shrink: 0;
}

.viral-cta-btn {
    background: linear-gradient(135deg, var(--sky-blue-dark) 0%, var(--sky-blue) 100%);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.35);
}

.viral-cta-btn:hover {
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.5);
    transform: translateY(-3px);
}

/* Phone Mockup */
.viral-studio-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.viral-video-showcase {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 473px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 60px;
    padding: 20px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 25px 50px rgba(79, 195, 247, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
}

.viral-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-mockup:hover .video-play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: var(--sky-blue-dark);
    margin-left: 4px;
}

.viral-stats-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px 0 8px;
}

.viral-stat {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.viral-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(79, 195, 247, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* =========================================
   CREDIT INFO BOX
   ========================================= */
.credit-info-box {
    background: linear-gradient(135deg, rgba(129, 212, 250, 0.15) 0%, rgba(244, 143, 177, 0.1) 100%);
    border: 2px solid rgba(129, 212, 250, 0.3);
    border-radius: 24px;
    padding: 32px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.credit-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue) 0%, var(--rose-pink) 100%);
}

.credit-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.credit-icon {
    font-size: 28px;
}

.credit-info-header h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.credit-info-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.credit-usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credit-usage-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.usage-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.usage-text {
    font-size: 14px;
    color: var(--text-dark);
    flex: 1;
}

.usage-credits {
    font-size: 16px;
    font-weight: 600;
    color: var(--sky-blue-dark);
    white-space: nowrap;
}

/* =========================================
   AI VIDEO COMPARISON SECTION
   ========================================= */
.ai-video-comparison {
    background: linear-gradient(180deg, rgba(129, 212, 250, 0.05) 0%, transparent 50%, rgba(244, 143, 177, 0.05) 100%);
}

.video-comparison-table {
    /* Inherits all styles from .comparison-table - no additional styles needed */
    margin-top: 0;
}

/* =========================================
   RESPONSIVE - VIRAL VIDEO SECTION
   ========================================= */
@media (max-width: 992px) {
    .viral-studio-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .viral-studio-visual {
        order: -1;
    }

    .phone-mockup {
        width: 406px;
    }
}

@media (max-width: 768px) {
    .credit-info-box {
        padding: 24px;
    }

    .credit-usage-grid {
        grid-template-columns: 1fr;
    }

    .credit-usage-item {
        padding: 16px 20px;
    }

    .credit-info-header h3 {
        font-size: 20px;
    }

    .phone-mockup {
        width: 372px;
    }

    .viral-stats-bar {
        gap: 16px;
    }

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

@media (max-width: 480px) {
    .credit-usage-item {
        flex-wrap: wrap;
    }

    .usage-credits {
        width: 100%;
        margin-top: 8px;
        text-align: right;
    }

    .phone-mockup {
        width: 338px;
        border-radius: 52px;
        padding: 16px;
    }

    .phone-screen {
        border-radius: 22px;
    }
}