/* ==================== RESET & BASE ==================== */

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

:root {
    --primary: #ffffff;
    --secondary: #00BFA5;
    --accent: #00BFA5;
    --success: #4CAF50;
    --warning: #FF6F00;
    --danger: #E53935;
    --light: #ecf0f1;
    --dark: #1a1a1a;
    --border: #333333;

    /* Quadrant colors */
    --organic-pos: #4CAF50;
    --organic-neg: #FF6F00;
    --coord-pos: #E53935;
    --coord-neg: #C62828;

    --spacing: 16px;
    --border-radius: 12px;
    --transition: 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* ==================== NAVIGATION ==================== */

.navbar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 8px 0;
    transition: all var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing);
}

.nav-brand {
    margin-right: auto;
}

.brand-with-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.w-logo {
    width: 32px;
    height: 32px;
    background-color: #00897b;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-brand h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.nav-brand .tagline {
    font-size: 12px;
    color: #00BFA5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing) * 2);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color var(--transition);
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background-color: #00BFA5;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #00a890;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 191, 165, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00BFA5;
    border: 2px solid #00BFA5;
}

.btn-secondary:hover {
    background-color: #00BFA5;
    color: #1a1a1a;
}

.btn-cta {
    background-color: var(--accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

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

.hero {
    padding: calc(var(--spacing) * 5) var(--spacing);
    background-color: #1a1a2e;
    text-align: left;
}

.hero .container {
    max-width: 800px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: var(--spacing);
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 29px;
    font-weight: 600;
    color: #00BFA5;
    margin-bottom: calc(var(--spacing) * 2);
}

.hero-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: calc(var(--spacing) * 3);
    line-height: 1.8;
}

.hero-description strong {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    gap: var(--spacing);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ==================== PROBLEM SECTION ==================== */

.problem {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.problem h2,
.solution h2,
.how-it-works h2,
.demo h2,
.use-cases h2,
.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--primary);
}

.problem-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing);
    margin-bottom: calc(var(--spacing) * 1.5);
    flex-wrap: wrap;
    perspective: 1000px;
}

.problem-card {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 2);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.problem-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card.highlight {
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(233, 69, 96, 0.1));
}

.problem-card.highlight:hover {
    border-left-color: #00d4aa;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 191, 165, 0.2);
}

.problem-card.arrow {
    font-size: 32px;
    flex: 0;
    padding: 0;
    box-shadow: none;
    background: none;
}

.problem-card .icon {
    font-size: 40px;
    margin-bottom: var(--spacing);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.problem-card:hover .icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing);
    color: var(--primary);
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problem-card.highlight:hover h3 {
    color: var(--accent);
}

.problem-card:not(.highlight):hover h3 {
    color: var(--accent);
}

.problem-card p {
    color: #cccccc;
    margin-bottom: 8px;
}

.problem-card .subtext {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.problem-insight {
    text-align: center;
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
}

/* ==================== SOLUTION SECTION ==================== */

.solution {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: calc(var(--spacing) * 2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quadrants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing);
    margin-bottom: calc(var(--spacing) * 2);
}

@media (max-width: 768px) {
    .quadrants {
        grid-template-columns: 1fr;
    }
}

.quadrants {
    perspective: 1000px;
}

.quadrant {
    padding: calc(var(--spacing) * 1) calc(var(--spacing) * 1.2);
    border-radius: var(--border-radius);
    border-left: 5px solid;
    background-color: #1a1a2e;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quadrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.quadrant:hover::before {
    opacity: 1;
}

.quadrant:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.organic-positive:hover {
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.3);
    border-left-color: #66bb6a;
}

.coordinated-positive:hover {
    box-shadow: 0 12px 32px rgba(229, 57, 53, 0.4), 0 0 20px rgba(229, 57, 53, 0.3);
    border-left-color: #ef5350;
}

.organic-negative:hover {
    box-shadow: 0 12px 32px rgba(255, 111, 0, 0.4), 0 0 20px rgba(255, 111, 0, 0.3);
    border-left-color: #ffb74d;
}

.coordinated-negative:hover {
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.4), 0 0 20px rgba(198, 40, 40, 0.3);
    border-left-color: #ef5350;
}

.organic-positive {
    border-color: var(--organic-pos);
    border-left-color: var(--organic-pos);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.1));
}

.coordinated-positive {
    border-color: var(--coord-pos);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(229, 57, 53, 0.1));
}

.organic-negative {
    border-color: var(--organic-neg);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.05), rgba(255, 111, 0, 0.1));
}

.coordinated-negative {
    border-color: var(--coord-neg);
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05), rgba(198, 40, 40, 0.1));
}

.quadrant-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.organic-pos-badge {
    background-color: #4CAF50;
    color: white;
}

.coord-pos-badge {
    background-color: #E53935;
    color: white;
}

.organic-neg-badge {
    background-color: #FF6F00;
    color: white;
}

.coord-neg-badge {
    background-color: #C62828;
    color: white;
}

.quadrant h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.organic-positive:hover h3 {
    color: #4CAF50;
}

.coordinated-positive:hover h3 {
    color: #E53935;
}

.organic-negative:hover h3 {
    color: #FF6F00;
}

.coordinated-negative:hover h3 {
    color: #C62828;
}


.quadrant-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 8px;
}

.quadrant-description {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 13px;
}

.quadrant-description .detail {
    display: block;
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 4px;
}

.quadrant-example {
    background-color: #1a1a2e;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    color: #cccccc;
    border-left: 3px solid #444;
}

.quadrant-insight {
    background-color: #2a2a3e;
    padding: calc(var(--spacing) * 2);
    border-radius: var(--border-radius);
    margin-top: calc(var(--spacing) * 2);
}

.quadrant-insight h3 {
    margin-bottom: var(--spacing);
    font-size: 20px;
    color: white;
}

.quadrant-insight ul {
    list-style: none;
}

.quadrant-insight li {
    padding: 8px 0;
    color: #cccccc;
}

.quadrant-insight strong {
    color: #00BFA5;
}

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

.how-it-works {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing);
    margin-bottom: calc(var(--spacing) * 2);
    flex-wrap: wrap;
    perspective: 1000px;
}

.step {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 1.8);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: var(--spacing);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.5);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.step p {
    font-size: 14px;
    color: #cccccc;
}

.workflow .arrow {
    font-size: 32px;
    color: var(--accent);
    flex: 0;
}

.detection-signals {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 3);
    border-radius: var(--border-radius);
    margin-top: calc(var(--spacing) * 3);
}

.detection-signals h3 {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 2);
    font-size: 22px;
    color: var(--primary);
}

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

.signal {
    padding: var(--spacing);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.signal h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.signal p {
    font-size: 14px;
    color: #cccccc;
}

/* ==================== DEMO SECTION ==================== */

.demo {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.demo-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing);
    margin-bottom: calc(var(--spacing) * 4);
}

.metric-card {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 2);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--border);
}

.metric-card.total {
    border-top-color: var(--secondary);
}

.metric-card.organic {
    border-top-color: var(--organic-pos);
}

.metric-card.coordinated {
    border-top-color: var(--coord-neg);
}

.metric-card h3 {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing);
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.metric-subtext {
    font-size: 13px;
    color: #cccccc;
    margin-top: 8px;
}

.demo-quadrants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing) * 2);
    margin-bottom: calc(var(--spacing) * 3);
}

@media (max-width: 768px) {
    .demo-quadrants {
        grid-template-columns: 1fr;
    }
}

.demo-quadrant {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 2);
    border-radius: var(--border-radius);
    border-left: 4px solid;
}

.demo-quadrant.positive-organic {
    border-left-color: var(--organic-pos);
}

.demo-quadrant.positive-coordinated {
    border-left-color: var(--coord-pos);
}

.demo-quadrant.negative-organic {
    border-left-color: var(--organic-neg);
}

.demo-quadrant.negative-coordinated {
    border-left-color: var(--coord-neg);
}

.demo-quadrant h4 {
    font-size: 18px;
    margin-bottom: var(--spacing);
    color: var(--primary);
}

.post-example {
    background-color: #1a1a2e;
    padding: var(--spacing);
    border-radius: 6px;
    margin-bottom: var(--spacing);
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.post-example p {
    margin-bottom: 8px;
}

.post-example p:last-child {
    margin-bottom: 0;
}

.post-example strong {
    color: var(--primary);
}

.metrics {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #444;
}

.posts-cluster {
    background-color: #2a2a3e;
}

.cluster-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
    padding: var(--spacing);
    background-color: #1a1a2e;
    border-radius: 6px;
    margin: var(--spacing) 0;
}

.cluster-signal {
    padding: var(--spacing);
    background-color: rgba(198, 40, 40, 0.1);
    border-left: 3px solid var(--danger);
    border-radius: 4px;
    font-size: 13px;
    color: #ff6b6b;
    font-weight: 600;
}

.demo-insights {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 3);
    border-radius: var(--border-radius);
    margin-bottom: calc(var(--spacing) * 3);
}

.demo-insights h3 {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 2);
    font-size: 22px;
    color: var(--primary);
}

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

.insight {
    padding: var(--spacing);
    background-color: #1a1a2e;
    border-radius: 8px;
}

.insight h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.insight p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
    padding: calc(var(--spacing) * 3);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(229, 57, 53, 0.1));
    border-radius: var(--border-radius);
}

.demo-cta p {
    font-size: 18px;
    margin-bottom: var(--spacing);
    color: var(--primary);
}

/* ==================== WHO USES WAVVE ==================== */

.who-uses {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing) * 2);
}

.personas-grid {
    perspective: 1000px;
}

.persona {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 1.8);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.persona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.persona:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.persona:hover::before {
    opacity: 1;
}

.persona-icon {
    font-size: 36px;
    margin-bottom: var(--spacing);
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.persona:hover .persona-icon {
    transform: scale(1.15) rotate(-5deg);
}

.persona h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary);
    font-weight: 700;
}

.persona-title {
    font-size: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing);
    font-weight: 600;
}

.persona p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

.pricing {
    padding: calc(var(--spacing) * 2.5) var(--spacing);
    background-color: #1a1a2e;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing) * 1.5);
    margin-bottom: calc(var(--spacing) * 2);
    perspective: 1000px;
}

.pricing-card {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 1.8);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: none;
}

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

.badge {
    position: absolute;
    top: 12px;
    right: -35px;
    background-color: var(--accent);
    color: white;
    padding: 4px 40px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .badge {
    background-color: #FF6F00;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary);
    margin-top: 8px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.description {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 12px;
}

.features {
    list-style: none;
    margin-bottom: 12px;
    flex-grow: 1;
}

.features li {
    padding: 6px 0;
    border-bottom: 1px solid #444;
    font-size: 13px;
    color: #cccccc;
}

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

.pricing-faq {
    background: #2a2a3e;
    padding: calc(var(--spacing) * 3);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: calc(var(--spacing) * 2);
}

.pricing-faq h3 {
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--primary);
}

.pricing-faq ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing);
}

.pricing-faq li {
    font-size: 14px;
    color: #cccccc;
}

/* ==================== CTA SECTION ==================== */

.cta-section {
    padding: calc(var(--spacing) * 5) var(--spacing);
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 44px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: calc(var(--spacing) * 2);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: calc(var(--spacing) * 2);
}

.cta-buttons .btn-primary {
    background-color: #00BFA5;
    color: #1a1a1a;
}

.cta-buttons .btn-primary:hover {
    background-color: #00a890;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--accent);
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: calc(var(--spacing) * 3) var(--spacing) var(--spacing);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing) * 2);
    margin-bottom: calc(var(--spacing) * 3);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: var(--spacing);
    color: white;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #7f8c8d;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .nav-menu {
        flex-direction: column;
        gap: var(--spacing);
    }

    .problem-grid {
        flex-direction: column;
    }

    .workflow {
        flex-direction: column;
    }

    .workflow .arrow {
        display: none;
    }

    h2 {
        font-size: 28px !important;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
