/* Modern Info SaaS Style - Clean & High Converting */

:root {
    --primary: #d43030;
    /* Main Action Color - Preserved from original for brand consistency */
    --primary-hover: #b92b2b;
    --dark: #1e293b;
    /* Text Color */
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gold: #f59e0b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-highlight {
    background: rgba(212, 48, 48, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.hidden {
    display: none;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* VSL Container */
.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    position: relative;
    aspect-ratio: 16/9;
}

.vsl-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Button */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 14px 0 rgba(212, 48, 48, 0.39);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 48, 48, 0.23);
}

.btn-sub {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
    display: block;
}

/* Social Proof Bar */
.social-proof {
    background: #f1f5f9;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Features / Info SaaS Section */
.features-section {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Comparison / "Us vs Them" */
.comparison-section {
    background: white;
    padding: 80px 0;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
}

.cell-check {
    color: #16a34a;
    font-weight: bold;
}

.cell-x {
    color: #dc2626;
    font-weight: bold;
}

/* Testimonials */
.reviews-section {
    padding: 80px 0;
    background: #fafafa;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Accordion */
.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    background: white;
    overflow: hidden;
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
    padding: 20px;
    max-height: 500px;
    /* Arbitrary large height */
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.8rem;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PREMIUM VISUAL ENHANCEMENTS
   ======================================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* Animated Gradient Background for Hero */
.hero {
    background: linear-gradient(-45deg, #ffffff, #fff5f5, #f8fafc, #fef2f2);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Animation for Feature Cards */
.feature-card {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -2s;
}

.feature-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Glow Effect on CTA */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Pulse Animation for Urgency */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Premium Shadow for Cards */
.premium-shadow {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Badge Styles */
.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

/* Fancy Border Gradient */
.border-gradient {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary), #ff6b6b) border-box;
    border-radius: var(--radius);
}

/* Testimonial Card Enhancement */
.review-card {
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(212, 48, 48, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Comparison Table Enhancement */
.comparison-table tr:hover {
    background: #f8fafc;
}

/* FAQ Enhancement */
.accordion-header {
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f1f5f9;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Loading Skeleton Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .feature-card {
        animation: none;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 16px 30px;
    }
}