/* Root Variables */
:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --dark: #1A1A2E;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    --fire-gradient: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    --fashion-gradient: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fire-emoji {
    font-size: 1.8rem;
    animation: flame 2s ease-in-out infinite;
}

@keyframes flame {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(0.95) rotate(5deg); }
}

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-small {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 140px;  /* Much more padding to prevent overlap with sections below */
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 40px;  /* More space before title to push content down */
    margin-top: 35px;  /* Increased top margin for better balance */
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Input Container */
.input-container {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.url-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.url-input:focus {
    outline: none;
    box-shadow: var(--shadow-hover);
}

.roast-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.roast-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: #FF5252;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: rgba(255,255,255,0.9);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
    background: var(--light);
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0;
}

.testimonial {
    min-width: 300px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark);
}

.testimonial span {
    color: var(--primary);
    font-weight: 600;
}

/* Roast Results */
.roast-results {
    padding: 60px 0;
    background: var(--light);
    min-height: 100vh;
}

.results-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.results-header h2 {
    font-size: 2rem;
    color: var(--dark);
}

/* Enhanced Results Header with Inline Metrics */
.results-header-enhanced {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.results-header-enhanced h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.metrics-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex: 1;
    justify-content: center;
}

.category-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    flex: 1;
    min-width: 0;
    max-width: 200px;
}

.category-inline .category-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-details h4 {
    margin: 0 0 6px 0;
    font-size: 0.65rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-details .score-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.category-details .score-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.score-level {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.trash-score-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    padding: 0 16px;
    border-radius: 8px;
    min-width: 90px;
    flex-shrink: 0;
}

.trash-score-badge .score-label {
    font-size: 0.65rem;
    opacity: 0.95;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.trash-score-badge .score-value {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.roast-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--fire-gradient);
    padding: 15px 25px;
    border-radius: 15px;
    color: var(--white);
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 900;
}

/* Category Cards - Old styles removed, see sidebar layout below */

/* Share Section */
.share-section {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.share-section:hover {
    opacity: 1;
}

.share-section p {
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.share-btn.twitter:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.05);
}

.share-btn.linkedin:hover {
    border-color: #0077B5;
    color: #0077B5;
    background: rgba(0, 119, 181, 0.05);
}

.share-btn.copy:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

.share-btn:hover {
    transform: translateY(-2px);
}

/* Upgrade Section */
.upgrade-section {
    margin: 40px 0;
}

.upgrade-card {
    background: var(--gradient);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.upgrade-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.upgrade-card p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.upgrade-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.upgrade-card li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.roast-content {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    min-height: 200px;
    margin-bottom: 30px;
}

.category-card-mini {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.category-card-mini:hover {
    transform: translateX(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.category-card-mini .category-icon {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.category-card-mini h4 {
    margin: 3px 0 6px 0;
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
}

.category-card-mini .score-bar {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.category-card-mini .score-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.category-card-mini p {
    font-size: 0.65rem;
    color: #666;
    line-height: 1.15;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upgrade-btn {
    background: var(--white);
    color: var(--dark);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.another-btn {
    display: block;
    margin: 30px auto 0;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.another-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Examples Section */
.examples {
    padding: 80px 0;
    background: var(--white);
}

.examples h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.example-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.site-type {
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.roast-score-mini {
    font-weight: 700;
    color: var(--primary);
}

.example-roast {
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.reviews-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

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

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.review-card.featured-review {
    grid-column: span 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.review-impact {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.impact-label {
    font-size: 0.85rem;
    opacity: 0.95;
    color: white;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.featured-review .stars {
    color: #FFE55F;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.featured-review .review-text {
    color: white;
    font-size: 1.15rem;
}

.review-text strong {
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-review .review-text strong {
    background: rgba(255,255,255,0.95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.featured-review .reviewer-info {
    border-top-color: rgba(255,255,255,0.2);
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.featured-review .reviewer-name {
    color: white;
}

.reviewer-business {
    font-size: 0.9rem;
    color: #666;
}

.featured-review .reviewer-business {
    color: rgba(255,255,255,0.85);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.trust-label {
    color: #666;
    font-size: 0.95rem;
}

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

.review-cta p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-cta-button {
    background: var(--gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.review-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* New Hero Enhancements */
.highlight-number {
    color: #ffffff;  /* Changed to white for better contrast against purple */
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);  /* Add subtle shadow for depth */
}

.outcome-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Live Preview */
.live-preview {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

.preview-issues {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.issue-item {
    padding: 8px 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    animation: fadeIn 0.5s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Activity Ticker */
.activity-ticker-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.activity-ticker {
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    font-size: 0.95rem;
    color: #4b5563;
    padding: 5px 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 30px;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.bento-small {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.bento-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.bento-medium {
    grid-column: span 2;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Browser Mockup for Bento */
.browser-mockup {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.browser-bar {
    background: #f3f4f6;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-dots::before {
    content: '● ● ●';
    color: #9ca3af;
    font-size: 0.8rem;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #6b7280;
}

.roast-animation {
    height: 200px;
    position: relative;
    background: #f9fafb;
}

.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(200px); }
}

.issue-popup {
    position: absolute;
    animation: popIn 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}

.issue-alert {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #ef4444;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.bento-label {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Stat Card Animation */
.stat-animation {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 600;
    color: #667eea;
    margin-left: 5px;
}

/* Speed Comparison */
.speed-comparison {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.speed-item {
    text-align: center;
}

.speed-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.our-speed .speed-value {
    color: #10b981;
}

.their-speed .speed-value {
    color: #ef4444;
    text-decoration: line-through;
}

.speed-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
}

.speed-vs {
    font-weight: 600;
    color: #9ca3af;
}

/* Testimonial Card in Bento */
.rotating-testimonial {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
}

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

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* CTA Card in Bento */
.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.bento-cta {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bento-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

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

.cta-micro {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Objection Handler */
.objection-handler {
    padding: 80px 0;
    background: #f9fafb;
}

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

.objection-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.objection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.objection-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.objection-card h4 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.objection-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.objection-stat {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.objection-cta {
    background: none;
    border: none;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.objection-cta:hover {
    color: #764ba2;
    transform: translateX(3px);
}

/* Premium Sections */
.premium-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: 'PREMIUM';
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.premium-section h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.premium-section p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.premium-list {
    list-style: none;
    padding: 0;
    counter-reset: item;
}

.premium-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    line-height: 1.7;
    counter-increment: item;
}

.premium-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.executive-summary {
    background: linear-gradient(135deg, #fef3c7, #fef9e7);
    border-color: #f59e0b;
}

.critical-issues {
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    border-color: #ef4444;
}

.quick-wins {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    border-color: #10b981;
}

.competitor-analysis {
    background: linear-gradient(135deg, #ddd6fe, #f3f4f6);
    border-color: #8b5cf6;
}

.revenue-impact {
    background: linear-gradient(135deg, #cffafe, #ecfeff);
    border-color: #06b6d4;
}

.strategic-roadmap {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-color: #ec4899;
}

.hidden-opportunities {
    background: linear-gradient(135deg, #f0fdf4, #f7fee7);
    border-color: #84cc16;
}

.ab-tests {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-color: #7c3aed;
}

.technical-debt {
    background: linear-gradient(135deg, #f1f5f9, #f8fafc);
    border-color: #64748b;
}

.tool-recommendations {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border-color: #fb923c;
}

.tier-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.tier-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tier-badge.free {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #4b5563;
    border: 1px solid #d1d5db;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-large {
        grid-column: span 3;
        grid-row: span 1;
    }
    
    .bento-medium {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a:not(.cta-small) {
        display: none; /* Hide non-essential nav items */
    }
    
    .cta-small {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 15px 40px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    /* Upload Area Mobile */
    .upload-container {
        padding: 0 10px;
        margin: 20px auto;
    }
    
    .upload-area {
        min-height: 200px;
        padding: 20px;
    }
    
    .upload-prompt {
        padding: 30px 20px;
    }
    
    .upload-prompt i {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    
    .upload-prompt h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .upload-prompt p {
        font-size: 0.9rem;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .trust-badges span {
        padding: 8px 12px;
        flex: 1 1 auto;
        min-width: 120px;
        text-align: center;
    }
    
    /* Outcome Metrics Mobile */
    .outcome-metrics {
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 10px;
        gap: 10px;
    }
    
    .metric {
        padding: 10px 5px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    /* Example Buttons Mobile */
    .example-fits {
        padding: 0 10px;
    }
    
    .example-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .example-btn {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    /* Rating Button Mobile */
    .rate-button {
        width: 90%;
        padding: 16px;
        font-size: 1.1rem;
        margin: 20px auto;
    }
    
    /* Activity Ticker Mobile */
    .activity-ticker-section {
        display: none; /* Hide ticker on mobile */
    }
    
    /* Grid Layouts Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .objection-grid {
        grid-template-columns: 1fr;
    }
    
    /* How It Works Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Social Proof Mobile */
    .testimonial-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial {
        min-width: 100%;
        padding: 20px;
    }
}

/* Responsive for Enhanced Header */
@media (max-width: 1024px) {
    .results-header-enhanced {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .results-header-enhanced h2 {
        font-size: 1.6rem;
    }
    
    .metrics-row {
        order: 3;
        width: 100%;
    }
    
    .category-inline {
        max-width: none;
    }
    
    .trash-score-badge {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .results-header-enhanced {
        padding: 15px;
    }
    
    .results-header-enhanced h2 {
        font-size: 1.4rem;
    }
    
    .category-inline {
        padding: 10px;
        gap: 8px;
    }
    
    .category-inline .category-icon {
        font-size: 1.2rem;
    }
    
    .category-details h4 {
        font-size: 0.6rem;
        margin-bottom: 4px;
    }
    
    .category-details .score-bar {
        height: 3px;
    }
    
    .trash-score-badge {
        padding: 0 12px;
        min-width: 70px;
    }
    
    .trash-score-badge .score-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens (phones) */
    .hero {
        padding: 70px 10px 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
    }
    
    .gradient-text {
        display: block; /* Break gradient text to new line */
        margin-top: 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .highlight-number {
        font-weight: 700;
        color: var(--white);
    }
    
    /* Upload area for small phones */
    .upload-area {
        min-height: 180px;
        border-width: 2px;
    }
    
    .upload-prompt {
        padding: 25px 15px;
    }
    
    .upload-prompt h3 {
        font-size: 1rem;
    }
    
    .upload-prompt p {
        font-size: 0.85rem;
    }
    
    .file-types {
        font-size: 0.75rem;
    }
    
    /* Example buttons 2x2 grid on small phones */
    .example-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .example-btn {
        padding: 8px 5px;
        font-size: 0.8rem;
    }
    
    /* Metrics on phones */
    .outcome-metrics {
        padding: 15px 5px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    /* Trust badges stacked */
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badges span {
        min-width: auto;
        width: 100%;
    }
    
    /* Results section mobile */
    .metrics-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-inline {
        max-width: none;
        width: 100%;
    }
    
    .overall-score-badge {
        padding: 12px 20px;
    }
    
    .score-value {
        font-size: 2rem;
    }
    
    /* Upgrade section mobile */
    .upgrade-card {
        padding: 20px 15px;
    }
    
    .upgrade-card h3 {
        font-size: 1.2rem;
    }
    
    .upgrade-card ul {
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    .upgrade-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Share buttons mobile */
    .share-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card.featured-review {
        grid-column: span 1;
    }
    
    .review-impact {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
}

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

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.pricing-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark);
}

.price {
    margin: 20px 0 10px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

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

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-description {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 0 20px;
    min-height: 40px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card ul li {
    padding: 12px 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card ul li strong {
    color: #1f2937;
    font-weight: 600;
}

.price-card ul li.disabled {
    color: #9ca3af;
    opacity: 0.6;
}

.price-card li {
    padding: 10px 0;
    color: #666;
}

.price-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-btn:hover,
.price-btn.primary {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.guarantee-badge {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.guarantee-badge i {
    margin-right: 5px;
}

.pricing-comparison {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-comparison p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffffff !important;  /* Pure white for maximum contrast */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);  /* Shadow for better readability */
    -webkit-text-fill-color: #ffffff !important;  /* Override gradient text */
    background: none !important;  /* Remove gradient background */
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);  /* Almost white for better contrast */
    font-weight: 500;  /* Slightly bolder for readability */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);  /* Subtle shadow */
}

/* Tier Badges and Upgrade Prompts */
.tier-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse-glow 2s infinite;
}

.tier-badge.free {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.tier-badge.free a {
    color: #667eea;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.tier-badge.free a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.upgrade-prompt {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border: 2px solid #667eea30;
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.upgrade-prompt strong {
    color: #667eea;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.upgrade-prompt a {
    color: #764ba2;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #764ba2;
    transition: all 0.3s ease;
}

.upgrade-prompt a:hover {
    color: #667eea;
    border-color: #667eea;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
    }
}

/* AI Roast Sections */
.ai-roast {
    position: relative;
}

.roast-summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.roast-section {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.roast-section h3 {
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 1.1rem;
}

.roast-section p {
    color: #4b5563;
    line-height: 1.7;
}

.roast-section.backhanded {
    background: #fef3c7;
    border-color: #fbbf24;
    font-style: italic;
}

/* Premium Teaser Section */
.premium-teaser-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 20px;
    border: 2px solid #667eea;
    position: relative;
    overflow: hidden;
}

.premium-teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.teaser-header {
    text-align: center;
    margin-bottom: 30px;
}

.teaser-header h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.issue-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item strong {
    font-size: 2.5rem;
    color: #feca57;
    display: block;
    margin-bottom: 5px;
}

.locked-insights {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.locked-insights h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.insight-list {
    display: grid;
    gap: 15px;
}

.locked-insight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.locked-insight:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.lock-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.insight-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    filter: blur(0.5px);
}

.premium-cta-section {
    text-align: center;
    margin-top: 40px;
}

.premium-cta-section h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.premium-cta-section p {
    color: #94a3b8;
    margin-bottom: 25px;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    padding: 12px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #4caf50;
    font-size: 0.95rem;
}

.email-capture-form {
    max-width: 500px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.email-capture-form h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.email-capture-form p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.premium-cta-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.premium-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.premium-cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.guarantee i {
    color: #4caf50;
    margin-right: 5px;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message h4 {
    color: #4caf50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message p {
    color: #e2e8f0;
    margin-bottom: 10px;
}

.success-message .small {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #999;
    margin-top: 10px;
    font-weight: 400;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--dark);
}

.modal-content h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

.modal-content p {
    margin-bottom: 25px;
    color: #666;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.pay-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.payment-note {
    text-align: center;
    margin-top: 20px;
    color: #999;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

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

.faq-cta p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Cookie Banner */
/* Cookie banner removed
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #FF5252;
    transform: scale(1.05);
}
*/

/* Sample Report Preview */
.sample-report-preview {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.report-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.report-section h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.report-section ul {
    list-style: none;
    padding: 0;
}

.report-section li {
    padding: 8px 0;
    color: #666;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Error States */
.error-message {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 10px 0;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .input-container {
        flex-direction: column;
    }
    
    .roast-button {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a:not(.cta-small) {
        display: none;
    }
    
    .roast-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}
/* AI Roast Styles */
.ai-roast {
    padding: 20px;
    line-height: 1.8;
}

.roast-summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.roast-section {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.roast-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.roast-section h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.roast-section p {
    color: var(--text-light);
    margin: 0;
}

.roast-section.backhanded {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border-left: 4px solid #fdcb6e;
    font-style: italic;
}

/* Upload Container Styles */
.upload-container {
    max-width: 600px;
    margin: 30px auto;
}

.upload-area {
    position: relative;
    background: white;
    border: 3px dashed #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.upload-area.drag-over {
    border-color: var(--primary);
    background: rgba(255, 107, 107, 0.05);
}

.upload-prompt {
    cursor: pointer;
    padding: 20px;
}

.upload-prompt h3 {
    margin: 10px 0;
    color: var(--dark);
}

.upload-prompt p {
    color: #6b7280;
    margin: 10px 0;
}

/* Mobile/Desktop Upload Styles */
.desktop-upload {
    display: block;
}

.mobile-upload {
    display: none;
}

.mobile-upload-buttons {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    justify-content: center;
}

.mobile-upload-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 180px;
    justify-content: center;
}

.mobile-upload-btn:hover {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

.mobile-upload-btn i {
    font-size: 1.2rem;
}

.camera-btn {
    background: var(--gradient);
    color: white;
    border: none;
}

.camera-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.gallery-btn {
    background: white;
    color: var(--dark);
}

@media (max-width: 768px) {
    .desktop-upload {
        display: none;
    }
    
    .mobile-upload {
        display: block;
    }
    
    .upload-prompt {
        padding: 30px 15px;
    }
    
    .mobile-upload h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .mobile-upload-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }
    
    .mobile-upload-btn {
        max-width: 100%;
        padding: 16px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .mobile-upload-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .mobile-upload-btn i {
        font-size: 1.1rem;
    }
}

.file-types {
    font-size: 0.9rem;
    color: #9ca3af;
}

.preview-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit: contain;
}

.reset-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.reset-btn:hover {
    background: rgba(255, 0, 0, 0.7);
}

.rate-button {
    background: var(--fashion-gradient);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.rate-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Example Fits Styles */
.example-fits {
    margin-top: 30px;
    text-align: center;
}

.example-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.example-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.example-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 107, 0.1);
}

/* Rating Results Fashion Updates */
.rating-results {
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.overall-score-badge {
    background: var(--fashion-gradient);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
}

.overall-score-badge .score-value {
    font-size: 3rem;
    font-weight: 900;
}

.rating-analysis {
    padding: 20px;
}

.analysis-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.analysis-section h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.shopping-links {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.premium-teaser {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.tier-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tier-badge.premium {
    background: var(--fashion-gradient);
    color: white;
}

.tier-badge.free {
    background: #e5e7eb;
    color: #6b7280;
}
