:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --secondary: #064E3B;
    --accent: #6366F1;
    --bg-light: #ECFDF5;
    --bg-gray: #F9FAFB;
    --text-main: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --white: #ffffff;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

.btn-primary .btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}

.btn-white .btn-sub {
    color: var(--text-light);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn-primary {
    padding: 10px 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 50%, #EEF2FF 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 800;
}

.highlight-strike {
    position: relative;
    color: #EF4444;
}

.highlight-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: #EF4444;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 1rem;
    color: var(--secondary);
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    background: #F3F4F6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #EF4444; }
.yellow { background: #F59E0B; }
.green { background: #10B981; }

.mockup-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

.mockup-body {
    display: flex;
    min-height: 350px;
}

/* App Sidebar */
.app-sidebar {
    width: 180px;
    background: var(--secondary);
    padding: 1rem 0;
    flex-shrink: 0;
}

.sidebar-item {
    padding: 10px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.1);
}

.sidebar-item.selected {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-left: 3px solid var(--primary);
}

/* App Main */
.app-main {
    flex: 1;
    background: var(--bg-gray);
    display: flex;
    flex-direction: column;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.app-header-bar h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.quote-ref {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.app-content {
    padding: 16px;
    flex: 1;
}

.quote-config {
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.config-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.config-row:last-child {
    margin-bottom: 0;
}

.config-row label {
    font-size: 0.75rem;
    color: var(--text-light);
    width: 60px;
}

.fake-input, .fake-select {
    flex: 1;
    padding: 6px 10px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-main);
}

.fake-input.small {
    flex: 0;
    width: 60px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
}

.selected-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.item-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.item-icon {
    font-size: 1.25rem;
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
}

.item-info span {
    font-size: 0.7rem;
    color: var(--text-light);
}

.item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.mock-btn-primary {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Floating PDF */
.floating-pdf {
    position: absolute;
    right: -30px;
    bottom: -20px;
    width: 180px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotate(3deg);
    border: 1px solid var(--border);
}

.pdf-header-mock {
    background: var(--secondary);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-logo {
    font-size: 0.65rem;
    color: var(--white);
    font-weight: 600;
}

.pdf-title {
    font-size: 0.6rem;
    color: var(--primary-light);
    font-weight: 700;
}

.pdf-body-mock {
    padding: 12px;
}

.pdf-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.pdf-row:last-child {
    border-bottom: none;
}

.pdf-row span:last-child {
    font-weight: 600;
    color: var(--primary);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.problem-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-gray);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.solution-intro {
    text-align: center;
    margin-top: 4rem;
}

.arrow-down {
    font-size: 2rem;
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.solution-intro h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-main);
}

.feature-list li::before {
    content: '';
}

/* Feature Mockups */
.mockup-window-small {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-chrome {
    background: #F3F4F6;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}

.mockup-content {
    padding: 0;
}

/* Rate Card Mock */
.rate-card-mock {
    padding: 16px;
}

.rc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.rc-header span:first-child {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
}

.rc-status {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.rc-status.active {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.rc-table {
    font-size: 0.8rem;
}

.rc-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.rc-row:last-child {
    border-bottom: none;
}

.rc-row.header {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.rc-row span:not(:first-child) {
    text-align: right;
    font-family: 'SF Mono', Monaco, monospace;
    color: var(--primary-dark);
    font-weight: 600;
}

.rc-row.header span {
    color: var(--text-light);
    font-weight: 600;
}

/* Quote Builder Mock */
.quote-builder-mock {
    display: flex;
    min-height: 280px;
}

.qb-sidebar {
    width: 160px;
    background: var(--bg-gray);
    padding: 12px;
    border-right: 1px solid var(--border);
}

.qb-section {
    margin-bottom: 12px;
}

.qb-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-bottom: 8px;
}

.qb-collapsed {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
}

.qb-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qb-item {
    font-size: 0.7rem;
    padding: 6px 10px;
    background: var(--white);
    border-radius: 4px;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.qb-preview {
    flex: 1;
    padding: 12px;
}

.qb-preview-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.qb-preview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-card {
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.preview-card strong {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.preview-card span {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Template Showcase */
.template-showcase {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.template-card {
    width: 120px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.template-card.elevated {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.t-header {
    padding: 8px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--secondary);
    color: var(--white);
}

.t-header.modern {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.t-header.elegant {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
}

.t-body {
    padding: 12px;
    height: 100px;
    background: var(--bg-gray);
}

.t-grid, .t-modern, .t-elegant {
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        var(--border),
        var(--border) 1px,
        transparent 1px,
        transparent 16px
    );
}

/* Currency Demo */
.currency-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.currency-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 140px;
}

.currency-flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.currency-code {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.currency-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.currency-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.currency-card.to {
    background: var(--bg-light);
    border: 2px solid var(--primary);
}

.currency-card.to .currency-amount {
    color: var(--primary-dark);
}

.currency-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.currency-arrow span {
    font-size: 2rem;
    color: var(--primary);
}

.currency-arrow small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card-small {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-card-small .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card-small h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature-card-small p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 0 var(--radius);
}

.pricing-header {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 6px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.price .amount-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1.25rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-feature span {
    font-size: 0.9rem;
    color: var(--text-main);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    margin: 0 1.5rem 1.5rem;
    display: block;
    text-align: center;
    width: calc(100% - 3rem);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.pricing .pricing-guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* ===== ROADMAP ===== */
.roadmap {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.roadmap-dot {
    width: 16px;
    height: 16px;
    background: var(--border);
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    margin-left: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.roadmap-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.roadmap-tag.shipped {
    background: #DEF7EC;
    color: #03543F;
}

.roadmap-tag.in-progress {
    background: #FEF3C7;
    color: #D97706;
}

.roadmap-tag.coming-soon {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.roadmap-tag.planned {
    background: #EEF2FF;
    color: #4F46E5;
}

.roadmap-tag.future {
    background: #FEF3C7;
    color: #D97706;
}

.roadmap-dot.completed {
    background: var(--primary);
    border-color: var(--primary);
}

.roadmap-dot.in-progress {
    background: #F59E0B;
    border-color: #F59E0B;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.roadmap-dot.completed::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.roadmap-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    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;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0F766E 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-whatsapp {
    color: rgba(255,255,255,0.7);
}

.cta-whatsapp p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
}

.whatsapp-link:hover {
    color: #25D366;
}

/* ===== FOOTER ===== */
footer {
    background: #111827;
    color: var(--text-lighter);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-text {
        margin: 0 auto 2rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-mockup {
        display: none;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    .feature-mockup {
        order: -1;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .currency-demo {
        flex-direction: column;
    }
    
    .currency-arrow {
        transform: rotate(90deg);
    }
    
    .template-showcase {
        flex-direction: column;
    }
    
    .template-card.elevated {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
    
    .btn-primary, .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
