/* ============================================
   CROSS PR - VANILLA HTML/CSS/JS
   Modern Tech-Forward B2B SaaS Landing Page
   ============================================ */

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

:root {
    /* Colors - Exact React colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --foreground: #0f172a;
    --background: #ffffff;
    --secondary: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --red-50: #fef2f2;
    --red-500: #ef4444;
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --blue-50: #eff6ff;
    --blue-500: #3b82f6;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Geist', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-unit: 1rem;
    --section-py: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-display-lg {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-display-md {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.text-display-sm {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4;
}

.text-body-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-body-md {
    font-size: 1rem;
    line-height: 1.6;
}

.text-body-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.5);
}

.btn-primary:active {
    transform: scale(0.95);
}

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

.btn-header {
    display: none;
}

.btn-mobile {
    width: 100%;
    margin-top: 1rem;
}

.btn-pricing {
    width: calc(100% - 4rem);
    margin: 2rem;
    margin-top: 0;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo-btn:hover {
    opacity: 0.8;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--muted-foreground);
    transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.2rem;
    background: var(--foreground);
    border-radius: 0.1rem;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0.6rem);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-0.6rem);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

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

.mobile-nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--muted-foreground);
    transition: var(--transition);
    text-align: left;
}

.mobile-nav-link:hover {
    color: var(--foreground);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--foreground);
    color: white;
    padding: 1.5rem;
    z-index: 40;
    display: flex;
    justify-content: center;
    animation: slideUp 0.3s ease;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-mobile {
    display: block;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 1rem;
    filter: blur(3rem);
}

.optimized-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
}

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

.hero-text {
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
}

.feature-item span {
    font-size: 1rem;
    line-height: 1.5;
}

/* Counters */
.counters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.counter-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.counter-primary {
    background: rgba(0, 102, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.2);
}

.counter-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
}

.counter-accent {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.counter-accent:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.counter-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.counter-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.counter-accent .counter-value {
    color: var(--accent);
}

.counter-subtext {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.hero-image-desktop {
    display: none;
}

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

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

.pain-points {
    padding: 6rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.comparison-title {
    font-size: 1.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-emoji {
    font-size: 1.75rem;
}

.problem-card {
    padding: 1.5rem;
    border-left: 4px solid var(--red-500);
    background: var(--red-50);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.solution-card {
    padding: 1.5rem;
    border-left: 4px solid var(--green-500);
    background: var(--green-50);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.problem-card h4,
.solution-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.problem-card p,
.solution-card p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.problem-icon,
.solution-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(255, 107, 53, 0.05));
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
}

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

.step-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */

.advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(255, 107, 53, 0.05));
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.advantage-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(0, 102, 255, 0.05), rgba(255, 107, 53, 0.05));
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* Main Pricing Card */
.main-pricing-card {
    background: white;
    border-radius: 1rem;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card-header {
    background: linear-gradient(135deg, #0066FF 0%, #0066FF 50%, #FF6B35 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.pricing-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card-title {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pricing-card-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-feature-row h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.pricing-feature-row p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.info-box {
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.info-box-green {
    background: var(--green-50);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.info-box-blue {
    background: var(--blue-50);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-box-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.info-box-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.referral-bonus {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    margin: 0 2rem 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.referral-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.referral-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.referral-note {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison {
    padding: 6rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: var(--secondary);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

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

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary);
    font-weight: 600;
}

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

.comparison-cta-text {
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 6rem 0;
    background: rgba(0, 102, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

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

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-category {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

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

.stat-label {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    background: var(--foreground);
    color: white;
    padding: 6rem 0;
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-badge {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-img {
    height: 4rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

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

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonials-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .btn-header {
        display: inline-block;
    }

    .menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hero-mobile {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-desktop {
        display: block;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: slideUp 0.6s ease 0.1s both;
}

.advantage-card {
    animation: slideUp 0.6s ease;
}

.step-card {
    animation: slideUp 0.6s ease;
}

.testimonial-card {
    animation: slideUp 0.6s ease;
}

/* Pulse animation for buttons */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
