* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6B46C1;
    --primary-pink: #D53F8C;
    --light-purple: #805AD5;
    --dark-purple: #322659;
    --cosmic-blue: #2D3748;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-600: #718096;
    --gray-800: #2D3748;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 200px, #eee, transparent),
        radial-gradient(2px 2px at 420px 50px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 100px 180px, #fff, transparent),
        radial-gradient(2px 2px at 200px 250px, rgba(255,255,255,0.85), transparent),
        radial-gradient(1px 1px at 450px 100px, #eee, transparent),
        radial-gradient(2px 2px at 380px 280px, rgba(255,255,255,0.75), transparent);
    background-size: 500px 500px;
    animation: twinkle 3s ease-in-out infinite;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 150px, #fff, transparent),
        radial-gradient(2px 2px at 150px 50px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 250px 200px, #eee, transparent),
        radial-gradient(2px 2px at 350px 100px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 400px 250px, #fff, transparent),
        radial-gradient(2px 2px at 80px 280px, rgba(255,255,255,0.7), transparent);
    background-size: 450px 450px;
    animation: twinkle-alt 5s ease-in-out infinite;
}

.stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 120px 80px, rgba(168, 85, 247, 0.6), transparent),
        radial-gradient(2px 2px at 280px 180px, rgba(236, 72, 153, 0.5), transparent),
        radial-gradient(3px 3px at 380px 60px, rgba(168, 85, 247, 0.4), transparent),
        radial-gradient(2px 2px at 60px 220px, rgba(236, 72, 153, 0.6), transparent);
    background-size: 480px 480px;
    animation: twinkle-color 4s ease-in-out infinite;
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(138, 43, 226, 0.1) 50%, transparent 100%);
    animation: pulse-bg 6s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes twinkle-alt {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes twinkle-color {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    width: 100%;
    display: block;
    background: linear-gradient(135deg, #ff6ec7 0%, #d946ef 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.headline {
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 500px;
}

.subheadline strong {
    color: var(--primary-pink);
}

.social-proof {
    margin-bottom: 30px;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}

.proof-icon {
    font-size: 18px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(107, 70, 193, 0.5);
}

.cta-button.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 10px 40px rgba(107, 70, 193, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(213, 63, 140, 0.6); }
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

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

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

.quiz-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.logo-small {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    background: linear-gradient(135deg, #ff6ec7 0%, #d946ef 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 10%;
}

.progress-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    min-width: 40px;
}

.quiz-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.question-container {
    width: 100%;
}

.question {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.question.active {
    display: flex;
}

.question-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.question-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.quiz-input,
.quiz-select {
    width: 100%;
    max-width: 350px;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quiz-input:focus,
.quiz-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255,255,255,0.1);
}

.quiz-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.quiz-select option {
    background: var(--cosmic-blue);
    color: var(--white);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 350px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: var(--primary-purple);
    background: rgba(255,255,255,0.1);
}

.radio-option input {
    margin-right: 12px;
    accent-color: var(--primary-purple);
}

.radio-label {
    font-size: 16px;
}

.next-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.3);
    width: 100%;
    max-width: 350px;
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.4);
}

.skip-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.skip-btn:hover {
    color: rgba(255,255,255,0.9);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-screen.active {
    display: flex;
}

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

.cosmic-loader {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    animation: pulse-sun 2s ease-in-out infinite;
}

@keyframes pulse-sun {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

.orbit-2 {
    width: 130px;
    height: 130px;
    animation: rotate 8s linear infinite reverse;
}

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

.planet {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(107, 70, 193, 0.5);
}

.planet-2 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.loading-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fade-text 1s ease-in-out;
}

@keyframes fade-text {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.results-container {
    min-height: 100vh;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    padding: 20px 0;
}

.results-main {
    padding: 20px 0;
}

.results-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.names-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compatibility-score {
    text-align: center;
    margin-bottom: 30px;
}

.score-circle {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.score-number {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 24px;
    color: rgba(255,255,255,0.6);
}

.stars-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

.star {
    font-size: 20px;
    display: inline-block;
    line-height: 1;
}

.star.filled {
    animation: star-fill 0.5s ease forwards;
}

.star.empty {
    opacity: 0.4;
    font-size: 16px;
}

@keyframes star-fill {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.score-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.free-reading h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.free-reading {
    margin-bottom: 5px;
}

.reading-content {
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.reading-content p {
    margin-bottom: 16px;
}

.divider {
    text-align: center;
    padding: 20px 0 5px 0;
}

.divider-icon {
    font-size: 24px;
    color: var(--primary-purple);
    animation: pulse 2s ease-in-out infinite;
}

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

.upsell-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.upsell-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.upsell-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.upsell-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    animation: fadeInLeft 0.4s ease forwards;
}

.upsell-item::before {
    content: "✓";
    color: var(--primary-pink);
    margin-right: 10px;
    font-weight: bold;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing {
    margin-bottom: 20px;
}

.original-price {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-right: 15px;
}

.sale-price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.belief-line {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonials-section {
    margin: 15px 0;
    padding: 10px 20px;
}

.testimonials-title {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-message {
    max-width: 320px;
    margin: 0 auto;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 8px;
    max-width: 85%;
    position: relative;
}

.message-bubble.received {
    background: linear-gradient(135deg, #3b3b4f, #2d2d3f);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-left-radius: 4px;
    margin-right: auto;
}

.message-bubble.sent {
    background: linear-gradient(135deg, #6B46C1, #805AD5);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.message-bubble p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.message-time {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-pink);
    transform: scale(1.2);
}

.secondary-cta {
    margin: 20px auto;
    display: block;
}

.urgency-banner {
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(213, 63, 140, 0.2), rgba(107, 70, 193, 0.2));
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(213, 63, 140, 0.3);
    display: inline-block;
}

.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-card h1 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-card > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-details {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details p {
    margin-bottom: 15px;
    color: var(--white);
}

.success-details ul {
    list-style: none;
}

.success-details li {
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.success-details li::before {
    content: "→";
    color: var(--primary-pink);
    margin-right: 10px;
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .results-card,
    .upsell-section {
        padding: 20px;
    }
    
    .score-number {
        font-size: 48px;
    }
}

.full-screenshots-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.screenshots-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.screenshot-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.screenshot-card:nth-child(1) { animation-delay: 0.1s; }
.screenshot-card:nth-child(2) { animation-delay: 0.2s; }
.screenshot-card:nth-child(3) { animation-delay: 0.3s; }
.screenshot-card:nth-child(4) { animation-delay: 0.4s; }
.screenshot-card:nth-child(5) { animation-delay: 0.5s; }
.screenshot-card:nth-child(6) { animation-delay: 0.6s; }

.iphone-frame {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
}

.iphone-notch {
    width: 100px;
    height: 20px;
    background: #000;
    margin: 0 auto 10px;
    border-radius: 0 0 15px 15px;
}

.message-screenshot {
    background: #000;
    border-radius: 20px;
    padding: 15px;
    min-height: 400px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.contact-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.full-screenshots-section .message {
    max-width: 75%;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.full-screenshots-section .message.received {
    background: #2c2c2e;
    color: #fff;
    margin-right: auto;
}

.full-screenshots-section .message.sent {
    background: #0a84ff;
    color: #fff;
    margin-left: auto;
    text-align: right;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.social-proof-stats .stat {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.final-cta {
    display: block;
    margin: 0 auto 20px;
    max-width: 400px;
}

.final-trust-line {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-title {
        font-size: 1.5rem;
    }
    
    .social-proof-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-content h2 {
    color: #c084fc;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: #e9d5ff;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p, .legal-content li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content a {
    color: #c084fc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #e9d5ff;
}

.contact-info {
    background: rgba(192, 132, 252, 0.1);
    border-left: 4px solid #c084fc;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #c084fc;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.mini-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.mini-message:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.mini-bubble {
    background: #2c2c2e;
    color: #fff;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 0.85rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mini-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    display: block;
    text-align: right;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-grid-section {
    margin: 5px auto 20px;
    max-width: 900px;
    padding: 0 20px;
}

.testimonials-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

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

.mini-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.mini-message:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.mini-bubble {
    background: #2c2c2e;
    color: #fff;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 0.85rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mini-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    display: block;
    text-align: right;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === Social Proof Pills (Results Page) === */

.proof-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin: 22px 0 18px;
}

.proof-pill{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.proof-ico{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(168,85,247,0.2);
  border:1px solid rgba(168,85,247,0.35);
  font-size:16px;
}

.proof-top{
  font-weight:700;
  font-size:15px;
  color:#fff;
  line-height:1.1;
}

.proof-sub{
  font-size:12px;
  color:rgba(255,255,255,0.7);
  margin-top:2px;
}

@media(max-width:680px){
  .proof-row{
    grid-template-columns:1fr;
  }
}
/* === Reviews Carousel === */
.reviews-carousel-section {
  margin: 20px 0 10px;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 10px;
}

.rc-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.rc-track {
  display: flex;
  transition: transform 0.3s ease;
}

.rc-slide {
  flex: 0 0 100%;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
}

.rc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.rc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.rc-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.rc-dots .active {
  background: white;
}
.button-group {
    display: flex;
    gap: 10px;
}
.back-btn {
    background: rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
}