/* ========================================
   Remate.social Landing Page Styles
   Design: Glassmorphism + Flat + Motion
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #DBEAFE;
    --secondary: #7C3AED;
    --secondary-hover: #6D28D9;
    --cta: #F97316;
    --cta-hover: #EA580C;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Neutrals */
    --bg: #F8FAFC;
    --bg-dark: #0F172A;
    --surface: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-desktop {
    display: none;
    gap: var(--space-xl);
}

.nav-desktop a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--text);
}

.header-cta {
    display: none;
    gap: var(--space-sm);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-top: 1px solid var(--border);
}

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

.nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: var(--space-sm) 0;
}

@media (min-width: 768px) {
    .header {
        top: var(--space-lg);
        left: var(--space-xl);
        right: var(--space-xl);
    }

    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

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

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

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

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-light), rgba(124, 58, 237, 0.2));
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), var(--primary-light));
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
}

.hero-badge svg {
    color: var(--warning);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.platform-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.platform-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.platform-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.platform-icon svg {
    width: 20px;
    height: 20px;
}

.more-platforms {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual / Dashboard Mock */
.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.dashboard-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotateX(5deg);
    transition: transform var(--transition-slow);
}

.dashboard-mock:hover {
    transform: rotateX(0deg);
}

.mock-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.mock-dots span:first-child {
    background: #EF4444;
}

.mock-dots span:nth-child(2) {
    background: #F59E0B;
}

.mock-dots span:last-child {
    background: #10B981;
}

.mock-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mock-content {
    display: flex;
    min-height: 300px;
}

.mock-sidebar {
    width: 200px;
    padding: var(--space-md);
    background: var(--bg);
    border-right: 1px solid var(--border);
    display: none;
}

@media (min-width: 768px) {
    .mock-sidebar {
        display: block;
    }
}

.mock-nav-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    cursor: pointer;
    transition: var(--transition);
}

.mock-nav-item:hover {
    background: var(--surface);
}

.mock-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

.mock-main {
    flex: 1;
    padding: var(--space-lg);
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.review-card.pending {
    border-left: 4px solid var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stars {
    color: var(--warning);
    font-size: 1rem;
}

.stars.negative {
    color: var(--danger);
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.review-source {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.ai-reply {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.ai-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.ai-reply p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.review-actions {
    display: flex;
    gap: var(--space-sm);
}

.btn-action {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-action.approve {
    background: var(--success);
    color: white;
}

.btn-action.approve:hover {
    background: #059669;
}

.btn-action.edit {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-action.edit:hover {
    background: var(--bg);
}

/* ========================================
   Social Proof Bar
   ======================================== */
.social-proof {
    padding: var(--space-2xl) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .proof-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.stat-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: var(--space-xs);
    transition: var(--transition);
}

.stat:hover .stat-icon-badge {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
    border-color: var(--primary-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--space-4xl) 0;
}

.feature-block {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

@media (min-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr 1fr;
    }

    .feature-block.reverse .feature-content {
        order: 2;
    }

    .feature-block.reverse .feature-visual {
        order: 1;
    }
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.feature-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary);
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--cta);
}

.feature-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.feature-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-md);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text);
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

/* Time Comparison Visual */
.time-comparison {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.time-card {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.time-card.before {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.time-card.after {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.time-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.time-card.before .time-label {
    color: var(--danger);
}

.time-card.after .time-label {
    color: var(--success);
}

.time-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.time-desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.time-arrow {
    color: var(--success);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

/* Voice Demo Visual */
.voice-demo {
    width: 100%;
    max-width: 400px;
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.voice-setting {
    margin-bottom: var(--space-lg);
}

.voice-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.voice-slider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-light);
}

.slider-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.voice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--primary);
}

.tag.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.voice-output {
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px dashed rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
}

.output-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.voice-output p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Alert Demo Visual */
.alert-demo {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    max-width: 350px;
}

.alert-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: slide-in 0.5s ease forwards;
}

.alert-card:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.7;
}

@keyframes slide-in {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
}

.alert-icon.urgent {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    animation: urgent-pulse 1.5s ease-in-out infinite;
}

@keyframes urgent-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.alert-content {
    flex: 1;
}

.alert-title {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
}

.alert-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Shield Demo Visual */
.shield-demo {
    width: 100%;
    max-width: 400px;
}

.negative-review {
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.neg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.negative-review p {
    font-size: 0.9375rem;
    color: var(--text);
    font-style: italic;
}

.ai-response {
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
}

.response-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.ai-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.tone-badge {
    font-size: 0.6875rem;
    padding: 0.125rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
}

.ai-response>p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.approval-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(239, 68, 68, 0.05);
    border: 1px dashed rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--danger);
}

/* ========================================
   Bento Grid Section
   ======================================== */
.bento-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--bg);
}

.bento-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

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

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

    .bento-card.large {
        grid-column: span 2;
    }

    .bento-card.wide {
        grid-column: span 2;
    }
}

.bento-card {
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    cursor: pointer;
}

.bento-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.bento-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.bento-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--cta);
}

.bento-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary);
}

.bento-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.bento-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-visual {
    margin-top: var(--space-lg);
}

.bento-visual.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.platform-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    color: white;
}

.platform-badge.google {
    background: #4285F4;
}

.platform-badge.facebook {
    background: #1877F2;
}

.platform-badge.yelp {
    background: #D32323;
}

.platform-badge.coming {
    background: var(--bg);
    color: var(--text-muted);
    border: 1px dashed var(--border);
}

.bento-visual.chart {
    height: 80px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height var(--transition);
}

.bento-card:hover .chart-bar {
    animation: chart-grow 0.5s ease forwards;
}

@keyframes chart-grow {
    from {
        transform: scaleY(0.8);
    }

    to {
        transform: scaleY(1);
    }
}

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
    padding: var(--space-3xl) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

.trust-point {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--bg-dark), #1E293B);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9375rem;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-col h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xs) 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* ========================================
   How It Works Section (Modern)
   ======================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    /* Subtle mesh gradient for background depth */
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 20%),
        var(--bg);
}

.steps-grid-modern {
    display: grid;
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.step-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.step-card-modern:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.step-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--border) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    /* Soft gradient background */
    background: linear-gradient(135deg, white, var(--bg));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.step-icon-modern.blue {
    color: var(--primary);
}

.step-icon-modern.purple {
    color: var(--secondary);
}

.step-icon-modern.green {
    color: var(--success);
}

.step-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.step-card-modern p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.billing-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition);
}

.billing-label.active {
    color: var(--text);
}

.discount-badge {
    display: inline-flex;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.2);
    z-index: 2;
    transform: scale(1.05);
    /* Slight lift for featured */
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

@media (max-width: 767px) {
    .pricing-card.featured {
        transform: none;
        /* No scale on mobile */
    }

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

.featured-banner {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--space-lg);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text);
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 6px;
}

.plan-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    align-self: flex-end;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}


/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.problem-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.problem-badge {
    display: inline-flex;
    padding: var(--space-sm) var(--space-md);
    background: #FEF2F2;
    color: #EF4444;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.problem-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition);
}

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

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.problem-icon svg {
    width: 32px;
    height: 32px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: var(--text);
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
}

/* ========================================
   AI Mate Section
   ======================================== */
.ai-mate-section {
    padding: var(--space-4xl) 0;
}

.mate-container {
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.mate-content-wrapper {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .mate-content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.mate-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.mate-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.mate-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mate-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    color: var(--text);
}

.benefit-icon-mate {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.mate-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--surface);
}

.mate-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mate-visual:hover img {
    transform: scale(1.02);
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Modal Styles
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-popup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-2xl);
    transform: scale(0.95);
    transition: all var(--transition-slow);
}

.modal-overlay.active .modal-popup {
    transform: scale(1);
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg);
    color: var(--text);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
}

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

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
}