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

:root {
    --primary: #42be45;
    --primary-dark: #38a33b;
    --primary-light: #5cd45f;
    --secondary: #10B981;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-accent: #E8F8E9;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-text {
    color: var(--primary);
}

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

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-accent);
}

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

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

.btn-link {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

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

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mockup-container {
    width: 100%;
    max-width: 420px;
}

.mockup-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mockup-header {
    background: var(--bg-secondary);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

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

.booking-flow {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stage-progress {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.stage-progress-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stage-progress-step {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stage-progress-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid var(--border);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.stage-progress-step.active span {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(66, 190, 69, 0.1);
}

.stage-progress-step.completed span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.stage-progress-step.active p,
.stage-progress-step.completed p {
    color: var(--text-primary);
    font-weight: 600;
}

.stage-progress-bar {
    position: relative;
    height: 4px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.stage-progress-bar span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: var(--primary);
    border-radius: 999px;
    transition: width 0.5s ease;
}

.stage-panels {
    position: relative;
    min-height: 320px;
}

.stage-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.stage-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stage-pill {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    background: var(--bg-accent);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.stage-pill.success {
    background: rgba(66, 190, 69, 0.12);
    color: var(--primary);
}

.stage-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stage-list span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.cta-final h2 {
    font-size: 2rem;
    margin: 0.25rem 0 0.5rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        align-items: center;
    }
}

.stage-button {
    width: 100%;
    padding: 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: white;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.stage-button-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calendar-grid button {
    padding: 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-weight: 600;
}

.calendar-grid button.selected {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-accent);
}

.payment-card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-method {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.confirmation-card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.confirmation-status {
    font-weight: 600;
    color: var(--primary);
}

.confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(66, 190, 69, 0.6) 20%, transparent 20%),
        radial-gradient(circle, rgba(255, 196, 0, 0.6) 20%, transparent 20%),
        radial-gradient(circle, rgba(14, 165, 233, 0.6) 20%, transparent 20%);
    background-size: 12px 12px, 10px 10px, 14px 14px;
    background-position: 0 0, 30px 10px, 60px 5px;
    opacity: 0;
    border-radius: inherit;
}

.confetti.play {
    animation: confettiBurst 2s ease forwards;
}

@keyframes confettiBurst {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(-25px);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.problem-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--text-secondary);
}

.problem-highlight {
    background: white;
    padding: 1.75rem;
    border-radius: 1.25rem;
    text-align: left;
    border-left: 4px solid var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.problem-highlight p {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.problem-cta {
    text-align: center;
    margin-top: 2rem;
}

.problem .problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.solution-copy .section-title,
.solution-copy .section-subtitle {
    text-align: left;
}

.solution-list {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.solution-cta {
    margin-top: 2rem;
}

.solution-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.solution-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--border);
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.solution-status strong {
    color: var(--primary);
}

.solution-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-item {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.stack-item.success {
    background: var(--bg-accent);
    border-color: rgba(66, 190, 69, 0.4);
}

.stack-title {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.stack-text {
    color: var(--text-secondary);
}

/* Easy Implementation */
.easy-implementation {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.implementation-info {
    max-width: 520px;
}

.implementation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.implementation-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.implementation-icon {
    font-size: 1.75rem;
}

.implementation-visual {
    display: flex;
    justify-content: center;
}

.wa-device {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 0.9rem;
    border-radius: 2rem;
    box-shadow: 0 25px 45px rgba(17, 24, 39, 0.25);
    border: 4px solid #000;
    position: relative;
}

.wa-speaker {
    width: 90px;
    height: 6px;
    background: #2f2f2f;
    border-radius: 999px;
    margin: 0 auto 1rem;
}

.wa-screen {
    background: #ECE5DD;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-header {
    background: #075E54;
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-contact-name {
    font-weight: 700;
}

.wa-contact-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.wa-header-icon {
    font-size: 1.25rem;
    opacity: 0.8;
}

.wa-chat {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 360px;
    background: url('data:image/svg+xml,%3Csvg width="160" height="100" viewBox="0 0 160 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-opacity="0.05"%3E%3Cpath d="M10 10h60v20H10zM90 10h60v20H90zM10 50h60v20H10zM90 50h60v20H90z" fill="%23000000"/%3E%3C/g%3E%3C/svg%3E');
}

.wa-message {
    max-width: 85%;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.wa-message.incoming {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 0.3rem;
}

.wa-message.outgoing {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 0.3rem;
}

.wa-time {
    display: block;
    font-size: 0.75rem;
    color: rgba(17, 24, 39, 0.6);
    margin-top: 0.5rem;
}

.link-highlight {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--primary);
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.step-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

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

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

.benefit-card p {
    color: var(--text-secondary);
}

.validation {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.validation-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.validation-copy {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.validation-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.validation-checklist {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.validation-checklist li {
    display: flex;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.validation-checklist span {
    width: 3.5rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.validation-checklist h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.validation-checklist p {
    margin: 0;
    color: var(--text-secondary);
}

.validation-note {
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--text-secondary);
}

.validation-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.validation-card {
    background: #051b11;
    color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(5, 27, 17, 0.35);
}

.validation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(66, 190, 69, 0.45), transparent 55%);
    pointer-events: none;
}

.validation-card > * {
    position: relative;
    z-index: 1;
}

.validation-card h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.validation-card-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.validation-card-list li {
    display: flex;
    gap: 0.5rem;
    line-height: 1.4;
}

.validation-card-list li::before {
    content: '•';
    color: var(--primary-light);
}

.validation-card-highlight {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1.25rem;
}

.validation-card-highlight span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
}

.validation-card-highlight strong {
    font-size: 1.2rem;
}

@media (max-width: 640px) {
    .validation-copy,
    .validation-card {
        padding: 1.75rem;
    }

    .validation-checklist li {
        flex-direction: column;
    }

    .validation-checklist span {
        width: 2rem;
        height: 2rem;
    }
}

/* How it Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

.how-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.how-number {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.how-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.how-card h4 {
    margin-bottom: 1rem;
}

.how-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.how-card li::before {
    content: '•';
    color: var(--primary);
    margin-right: 0.5rem;
}

.how-card li {
    display: flex;
    align-items: baseline;
    color: var(--text-secondary);
}

.how-badge {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    background: var(--bg-accent);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--primary);
}

.workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
    flex: 0 0 auto;
}

.workflow-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}

.workflow-step p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 120px;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

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

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

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-price {
    margin-bottom: 1rem;
}

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

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

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 3rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-trial {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* Waitlist Page */
.waitlist-page {
    background: var(--bg-secondary);
}

.waitlist-hero {
    padding: 6rem 0 3rem;
    text-align: left;
}

.waitlist-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.waitlist-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.waitlist-content {
    padding-bottom: 6rem;
}

.waitlist-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
}

.waitlist-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.waitlist-card h2,
.waitlist-card h3 {
    margin-bottom: 1rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66, 190, 69, 0.15);
}

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

.form-hint {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.selected-plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.plan-benefits {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.waitlist-next-steps {
    margin-top: 2.5rem;
}

.waitlist-next-steps ol {
    padding-left: 1.25rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.waitlist-next-steps li strong {
    color: var(--text-primary);
}

/* Waitlist Responsive */
@media (max-width: 900px) {
    .waitlist-grid {
        grid-template-columns: 1fr;
    }

    .waitlist-hero h1 {
        font-size: 2rem;
    }

    .waitlist-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

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

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

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--primary);
}

.cta-button:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-links span {
    color: var(--text-secondary);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-visual {
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .mockup-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .workflow {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

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

    .solution-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Pricing Page Specific Styles */
.pricing-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.pricing-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 640px;
}

.pricing-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-hero-card {
    background: white;
    border-radius: 1.75rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.pricing-hero-card-header {
    background: var(--bg-secondary);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.pricing-hero-card-header p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-hero-card-header strong {
    display: block;
    font-size: 1.35rem;
    margin-top: 0.35rem;
}

.pricing-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-hero-card-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pricing-hero-card-list span {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-hero-card-list h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.pricing-hero-card-list p {
    margin: 0;
    color: var(--text-secondary);
}

.pricing-hero-card-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.pricing-hero-card-metrics small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.pricing-hero-card-metrics strong {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-hero-card {
        padding: 2rem;
    }
}

.pricing-details {
    padding: 4rem 0 5rem;
    background: var(--bg-primary);
}

.pricing-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.pricing-details-list h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-details-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.pricing-detail-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-detail-items li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pricing-detail-items span {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: var(--bg-accent);
}

.pricing-detail-items strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.pricing-detail-items p {
    margin: 0;
    color: var(--text-secondary);
}

.pricing-bottom-cta {
    padding: 6rem 0;
    background: var(--bg-accent);
    text-align: center;
}

.pricing-bottom-cta .whatsapp-image {
    max-width: 100%;
    width: 320px;
    /* Adjust based on image aspect ratio, aiming for mobile screen width */
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    display: block;
}

.pricing-bottom-cta .cta-card {
    background: white;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--primary-light);
}

.pricing-bottom-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-bottom-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Waitlist Founder Badge & Pricing */
.founder-badge {
    background: #FFF8E1;
    color: #B7791F;
    border: 1px solid #FBD38D;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.pricing-display {
    margin: 1.5rem 0;
}

.price-original-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.price-original-amount {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.price-discount-tag {
    background: #E6FFFA;
    color: #2C7A7B;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.problem-list li .problem-icon {
    font-size: 1.5rem;
}

.cta-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

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

.success-modal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.success-modal.active .success-modal-content {
    transform: scale(1) translateY(0);
}

.success-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}

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

.success-modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.success-modal-hint {
    font-size: 0.95rem !important;
    color: var(--text-secondary);
    margin-bottom: 1.5rem !important;
}

.success-modal-content .btn {
    margin-top: 0.5rem;
    min-width: 160px;
}
