/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #10B981;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-gray: #f7fafc;
    --bg-light: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-image {
    height: 65px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

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

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf5 100%);
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge svg {
    flex-shrink: 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* App Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 110%;
    margin-left: 0;
}

.app-mockup-3phones {
    position: relative;
    animation: float 6s ease-in-out infinite;
    width: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.mockup-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Why Rivlo Section */
.why-rivlo {
    padding: 100px 0;
    background: white;
    border-bottom: 2px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--bg-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    text-align: center;
}

.impact-stat {
    padding: 1rem;
    color: white;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-stat p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-gray);
    border-bottom: 2px solid var(--border-color);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--bg-gray);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.before-card {
    border: 3px solid rgba(239, 68, 68, 0.3);
}

.after-card {
    border: 3px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(139, 92, 246, 0.03));
}

.comparison-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-before {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.label-after {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.comparison-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-icon.sad svg {
    color: #EF4444;
}

.comparison-icon.happy svg {
    color: #10B981;
}

.comparison-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

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

.comparison-list li:hover {
    padding-left: 0.5rem;
}

.comparison-list li.negative {
    color: var(--text-secondary);
    opacity: 0.8;
}

.comparison-list li.positive {
    color: var(--text-primary);
    font-weight: 500;
}

.list-icon {
    display: inline-block;
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.negative .list-icon {
    color: #EF4444;
}

.positive .list-icon {
    color: #10B981;
}

.comparison-stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.comparison-stat.bad {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-stat.good {
    background: rgba(16, 185, 129, 0.1);
}

.comparison-stat .stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.comparison-stat.bad .stat-value {
    color: #EF4444;
}

.comparison-stat.good .stat-value {
    color: #10B981;
}

.comparison-stat .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.divider-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Live Stats Section */
.live-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-primary), #2d3748);
    color: white;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF4444;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stats-header p {
    font-size: 1.125rem;
    opacity: 0.8;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-card-number .suffix {
    font-size: 2.5rem;
}

.stat-card-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.stat-card-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-card-trend.up {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.stat-card-trend svg {
    flex-shrink: 0;
}

.trusted-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 2px solid var(--primary);
    grid-column: span 2;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
    border-bottom: 2px solid var(--border-color);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 1rem;
}

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

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

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-gray);
}

.contact .section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.375rem;
    }
}

/* Desktop - 1024px to 1439px */
@media (max-width: 1439px) {
    .hero-image {
        width: 160%;
        margin-left: -15%;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }

    .hero-image {
        width: 140%;
        margin-left: -20%;
    }

    .feature-highlight {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        width: 60px;
    }
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-rivlo,
    .comparison-section,
    .live-stats {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .stat-card-number {
        font-size: 3rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .comparison-icon {
        font-size: 3rem;
    }
    
    .comparison-stat .stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-number {

        font-size: 2.5rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 50px;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-cta .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .hero-image {
        order: -1;
        width: 100%;
        margin-left: 0;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .app-mockup-3phones {
        width: 100%;
        max-width: 500px;
    }
    
    .mockup-image {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile Large - 576px */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }
    
    .badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .app-mockup-3phones {
        width: 100%;
        max-width: 400px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }

    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .trusted-logos {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

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

    .hero h1 {
        font-size: 1.625rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .hero-cta {
        gap: 0.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }
    
    .section-description {
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat {
        flex: 0 0 calc(50% - 0.375rem);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .app-mockup-3phones {
        max-width: 350px;
    }

    .trusted-logos {
        gap: 1rem;
    }
    
    .logo-item {
        font-size: 0.8125rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.9375rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.625rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }

    .contact .section-header h2 {
        font-size: 1.625rem;
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 70px 0 30px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.8125rem;
    }

    .hero-cta {
        gap: 0.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .stat {
        flex: 0 0 100%;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    .app-mockup-3phones {
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Fix horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}

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

.feature-card,
.pricing-card,
.testimonial-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}


