/* ========================================
   VOLUNTIA LANDING PAGE STYLES
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    --primary: #1E3A5F;
    --primary-light: #2a4a73;
    --primary-dark: #152a45;
    --secondary: #2A9D8F;
    --secondary-light: #3db8a8;
    --secondary-dark: #228176;
    --accent: #F4A261;
    --accent-light: #f6b580;
    --accent-dark: #e8894a;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1E3A5F;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-landing {
    background: var(--bg-white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar-landing.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-landing .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.navbar-landing .navbar-brand span {
    color: var(--secondary);
}

.navbar-landing .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.navbar-landing .nav-link:hover {
    color: var(--secondary);
}

.navbar-landing .nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-custom {
    background: var(--secondary);
    border: none;
    color: var(--text-light) !important;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    background: var(--secondary-dark);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:focus,
.btn-primary-custom:active {
    color: var(--text-light) !important;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.btn-secondary-custom:hover {
    background: var(--primary);
    color: var(--text-light) !important;
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: var(--text-dark) !important;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--text-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg-custom {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, #e8f4f8 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.problem-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.problem-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.problem-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */
.value-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   AI ASSISTANT SECTION (FEATURED)
   ======================================== */
.ai-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: var(--text-light);
}

.ai-section .section-title {
    color: var(--text-light);
}

.ai-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.ai-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.ai-feature-item:hover {
    background: rgba(255,255,255,0.1);
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(42, 157, 143, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon i {
    font-size: 1.25rem;
    color: var(--secondary-light);
}

.ai-feature-content h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.ai-feature-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.ai-disclaimer {
    background: rgba(255,255,255,0.1);
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.ai-disclaimer p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.ai-mockup-container {
    position: relative;
}

.ai-mockup {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-header {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-content {
    display: flex;
    min-height: 400px;
}

.mockup-document {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    background: var(--bg-white);
}

.mockup-document h6 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.doc-line {
    height: 10px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.doc-line.short { width: 60%; }
.doc-line.medium { width: 80%; }
.doc-line.long { width: 95%; }

.doc-clause {
    background: rgba(42, 157, 143, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 0.75rem;
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
}

.doc-clause .doc-line {
    background: rgba(42, 157, 143, 0.2);
}

.mockup-chat {
    width: 280px;
    background: var(--bg-light);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    color: white;
    font-size: 0.875rem;
}

.chat-header span {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
}

.chat-bubble {
    padding: 0.75rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.chat-bubble.user {
    background: var(--primary);
    color: white;
    margin-left: 1rem;
    border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
    background: white;
    color: var(--text-dark);
    margin-right: 1rem;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-connector {
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: 0;
}

/* ========================================
   USE CASES
   ======================================== */
.usecases-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.usecase-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.usecase-icon {
    width: 48px;
    height: 48px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.usecase-icon i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.usecase-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.usecase-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.comparison-table {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-light);
    font-weight: 600;
}

.comparison-header div {
    padding: 1.25rem;
    text-align: center;
}

.comparison-header div:last-child {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row div {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-row div:first-child {
    color: var(--text-muted);
}

.comparison-row div:last-child {
    background: rgba(42, 157, 143, 0.05);
    color: var(--text-dark);
}

.comparison-row i.bi-check-circle-fill {
    color: var(--secondary);
}

.comparison-note {
    background: rgba(42, 157, 143, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.comparison-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.trust-section .section-title {
    color: var(--text-light);
}

.trust-card {
    text-align: center;
    padding: 1.5rem;
}

.trust-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.trust-card-icon i {
    font-size: 1.75rem;
    color: var(--secondary-light);
}

.trust-card h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.trust-disclaimer {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 3rem;
    text-align: center;
}

.trust-disclaimer p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4f8 0%, var(--bg-white) 100%);
}

.cta-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.cta-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.cta-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.cta-microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.cta-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ========================================
   HERO FEATURES
   ======================================== */
.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-feature i {
    color: var(--secondary);
    font-size: 1rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4f8 0%, var(--bg-white) 100%);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--secondary);
    box-shadow: 0 8px 32px rgba(42, 157, 143, 0.2);
}

.pricing-card.popular:hover {
    box-shadow: 0 12px 40px rgba(42, 157, 143, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-features li.highlight {
    color: var(--secondary-dark);
    font-weight: 500;
}

.pricing-features li.highlight i {
    color: var(--accent);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-note {
    background: rgba(42, 157, 143, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 3rem;
    text-align: center;
}

.pricing-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.final-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-box h2 {
    color: var(--text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .btn-secondary-custom {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-light) !important;
}

.final-cta-section .btn-secondary-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-accordion .accordion-item {
    border: none;
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--bg-white);
    font-weight: 600;
    color: var(--primary);
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-white);
    color: var(--secondary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231E3A5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-landing {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-brand a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-brand a:hover {
    color: var(--secondary-light);
}

.footer-brand span {
    color: var(--secondary);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-light) !important;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--secondary-light) !important;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--text-light) !important;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8) !important;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary);
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    padding: 8rem 0 5rem;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.legal-info-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.legal-info-box .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-info-box .info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-info-box .info-list li:last-child {
    border-bottom: none;
}

.legal-warning {
    background: rgba(244, 162, 97, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-warning h4 {
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-warning p {
    margin-bottom: 0.75rem;
}

.legal-warning p:last-child {
    margin-bottom: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 0.5rem 0;
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .mockup-content {
        flex-direction: column;
    }
    
    .mockup-chat {
        width: 100%;
    }
    
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 4rem 0 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .navbar-landing .nav-link {
        padding: 0.75rem 0;
    }
    
    .final-cta-box h2 {
        font-size: 1.75rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    /* Legal pages responsive */
    .legal-page {
        padding: 6rem 0 3rem;
    }
    
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1rem;
    }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   Elementos aparecen al scroll y PERMANECEN visibles
   ======================================== */

/* Estado inicial - oculto */
.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

/* Variantes de dirección */
.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-bottom {
    transform: translateY(40px);
}

/* Estado revelado - visible y en posición */
.reveal.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ========================================
   OTHER ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero animations on load */
.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-badge {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Button hover effects */
.btn-primary-custom,
.btn-secondary-custom,
.btn-accent {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::after,
.btn-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary-custom:hover::after,
.btn-accent:hover::after {
    width: 300px;
    height: 300px;
}

/* Card hover animations */
.problem-card,
.value-card,
.usecase-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.7s ease;
}

.problem-card:hover,
.usecase-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg);
}

.value-card:hover .value-icon {
    animation: pulse 0.5s ease;
}

/* AI feature items */
.ai-feature-item {
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.7s ease;
}

.ai-feature-item:hover {
    transform: translateX(10px) !important;
}

.ai-feature-item:hover .ai-feature-icon {
    animation: pulse 0.4s ease;
}

/* Step cards */
.step-card .step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* Trust cards */
.trust-card-icon {
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Mockup animations */
.ai-mockup {
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.7s ease;
}

.ai-mockup:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CTA box */
.cta-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}

.cta-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* FAQ accordion animations */
.faq-accordion .accordion-button {
    transition: color 0.3s ease, background 0.3s ease;
}

.faq-accordion .accordion-body {
    animation: fadeIn 0.3s ease;
}

/* Comparison table */
.comparison-row {
    transition: background 0.2s ease;
}

.comparison-row:hover div:last-child {
    background: rgba(42, 157, 143, 0.15);
}

/* Floating animation for hero decoration */
.hero-section::before {
    animation: float 6s ease-in-out infinite;
}

/* Counter pulse */
.cta-counter {
    animation: pulse 2s ease-in-out infinite;
}

/* Footer link underline */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-light);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Navbar scroll transition */
.navbar-landing {
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-landing.scrolled {
    padding: 0.5rem 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

/* Icon hover animations */
.trust-item i,
.usecase-icon i,
.problem-icon i {
    transition: transform 0.3s ease;
}

.trust-item:hover i,
.usecase-card:hover .usecase-icon i,
.problem-card:hover .problem-icon i {
    transform: scale(1.2);
}

/* Form focus animations */
.cta-form .form-control,
.cta-form .form-select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    transform: scale(1.02);
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
