/* =============================================
   XTEN PRO - Professional Corporate Design System
   ============================================= */

/* CSS Variables - Corporate Color Palette */
:root {
    /* Primary Corporate Colors */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-hover: #1d4ed8;

    /* Accent Colors */
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;

    /* Navy & Dark Tones */
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --navy-600: #475569;

    /* Neutral Colors */
    --text-color: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Background Colors */
    --background: #ffffff;
    --background-alt: #f8fafc;
    --background-dark: #f1f5f9;

    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Status Colors */
    --success-color: #059669;
    --success-light: #d1fae5;
    --error-color: #dc2626;
    --error-light: #fee2e2;
    --warning-color: #d97706;
    --info-color: #0284c7;

    /* Shadows */
    --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 -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(30, 64, 175, 0.15);
    --shadow-accent: 0 0 30px rgba(245, 158, 11, 0.2);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-hero: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #f8fafc 100%);
    --gradient-cta: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background: var(--background);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-brand .logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand .logo-icon svg {
    width: 100%;
    height: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 64, 175, 0.05);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(30, 64, 175, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--background);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-alt);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-outline-secondary:hover {
    background: var(--background-alt);
    color: var(--text-color);
    border-color: var(--text-light);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--navy-900);
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative floating shapes */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-badge .badge-icon {
    width: 20px;
    height: 20px;
}

/* Hero Preview Card */
.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-preview-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.hero-preview-card:hover {
    transform: rotateY(0) rotateX(0);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--navy-900);
    color: white;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-body {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 300px;
}

.preview-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-sidebar::before,
.preview-sidebar::after {
    content: '';
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.preview-content {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: var(--background-alt);
}

.preview-card {
    background: white;
    border-radius: var(--radius);
    height: 80px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40%;
    height: 12px;
    background: var(--border-color);
    border-radius: 4px;
}

.preview-card::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
}

.preview-card:nth-child(1)::before {
    background: var(--gradient-primary);
    opacity: 0.7;
}

.preview-card:nth-child(3) {
    grid-column: span 2;
    height: 100px;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

.floating-badge.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.floating-badge .badge-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge .badge-icon-wrapper.primary {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
}

.floating-badge .badge-icon-wrapper.success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
}

.floating-badge .badge-icon-wrapper.accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   TRUSTED BY SECTION
   ============================================= */

.trusted-section {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.trusted-section p {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-countries {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-country {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-country .flag {
    font-size: 1.5rem;
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(30, 64, 175, 0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--primary-color);
}

.feature-icon.success {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: var(--success-color);
}

.feature-icon.info {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(56, 189, 248, 0.1) 100%);
    color: var(--info-color);
}

.feature-icon.warning {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: var(--warning-color);
}

.feature-icon.accent {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: var(--accent-color);
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.15) 0%, rgba(100, 116, 139, 0.1) 100%);
    color: var(--navy-600);
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   PRICING SECTION
   ============================================= */

.pricing-section {
    padding: 100px 0;
    background: var(--background-alt);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 2px;
}

.pricing-features li i.bi-check {
    color: var(--success-color);
}

.pricing-features li i.bi-x {
    color: var(--text-muted);
}

.pricing-features li.text-muted {
    opacity: 0.6;
}

/* =============================================
   SIGNUP SECTION
   ============================================= */

.signup-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.signup-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

/* =============================================
   FORMS
   ============================================= */

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-control-lg {
    padding: 16px 20px;
    font-size: 17px;
}

.input-group-text {
    background: var(--background-alt);
    border: 2px solid var(--border-color);
    border-left: none;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
    padding: 100px 0;
    background: var(--background-alt);
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 24px;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background: rgba(30, 64, 175, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-cta);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-light:hover {
    background: var(--background-alt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--navy-900);
    color: white;
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer h6 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer ul a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* =============================================
   ALERTS
   ============================================= */

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-success {
    background: var(--success-light);
    color: var(--success-color);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.alert-danger {
    background: var(--error-light);
    color: var(--error-color);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.text-danger {
    color: var(--error-color) !important;
}

/* =============================================
   COOKIE CONSENT
   ============================================= */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-900);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-consent a {
    color: var(--accent-light);
}

/* =============================================
   SKIP LINK
   ============================================= */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* =============================================
   CONTACT & DEMO SECTIONS
   ============================================= */

.contact-section,
.demo-section {
    padding: 100px 0;
}

.contact-section h1,
.demo-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    padding: 28px;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.demo-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.demo-benefits {
    list-style: none;
    margin-top: 32px;
    padding: 0;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.demo-form-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.demo-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-hero {
    padding: 140px 0 60px;
    background: var(--gradient-hero);
}

.legal-content {
    background: white;
    padding: 48px 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card .display-4 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.value-card {
    padding: 32px;
    height: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card .fs-1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    height: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
}

.team-avatar .bi {
    font-size: 3rem;
    color: white;
}

/* =============================================
   ERROR PAGE
   ============================================= */

.error-section {
    padding: 160px 0 120px;
    text-align: center;
}

.error-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.error-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* =============================================
   UTILITIES
   ============================================= */

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 992px) {
    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-grid,
    .demo-content {
        grid-template-columns: 1fr;
    }

    .stat-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        margin: 0 auto 24px;
    }

    .hero-preview-card {
        transform: none;
        margin-top: 48px;
    }

    .hero-preview-card:hover {
        transform: none;
    }

    .floating-badge {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .features-section,
    .pricing-section,
    .faq-section,
    .signup-section,
    .cta-section {
        padding: 64px 0;
    }

    .signup-card {
        padding: 32px 24px;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-amount .amount {
        font-size: 2.5rem;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* =============================================
   PAYMENT PROVIDERS SECTION
   ============================================= */

.payment-providers-section {
    padding: 64px 0;
    background: var(--background-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.payment-logos {
    text-align: center;
}

.payment-category {
    margin-bottom: 16px;
}

.payment-category h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    transition: all var(--transition);
}

.payment-badge:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.payment-badge.bank {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.payment-badge.bank:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* =============================================
   COMPARISON SECTION
   ============================================= */

.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--navy-900);
    color: white;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table th.highlight {
    background: var(--primary-color);
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

.comparison-table td.highlight {
    background: rgba(30, 64, 175, 0.05);
    color: var(--text-color);
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: var(--background-alt);
}

.comparison-table tbody tr:hover td.highlight {
    background: rgba(30, 64, 175, 0.1);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .bi-check-circle-fill {
    font-size: 18px;
}

.comparison-table .bi-check-circle {
    font-size: 18px;
}

.comparison-table .bi-x-circle {
    font-size: 18px;
}

/* =============================================
   STATS/METRICS SECTION
   ============================================= */

.stats-section {
    padding: 48px 0;
    background: var(--navy-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}

/* =============================================
   COMPARISON TABLE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 13px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 120px;
        position: sticky;
        left: 0;
        background: white;
        z-index: 1;
    }

    .comparison-table thead th:first-child {
        background: var(--navy-900);
    }

    .comparison-table tbody tr:hover td:first-child {
        background: var(--background-alt);
    }
}

/* =============================================
   SECTION ANIMATIONS
   ============================================= */

.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   TRUST BADGES
   ============================================= */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.trust-badge:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.trust-badge svg {
    color: var(--success-color);
}

/* =============================================
   ENHANCED PAYMENT BADGES
   ============================================= */

.payment-badge {
    position: relative;
    overflow: hidden;
}

.payment-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.payment-badge:hover::before {
    left: 100%;
}

/* =============================================
   PRICING ENHANCEMENTS
   ============================================= */

.pricing-card .pricing-features li strong {
    color: var(--text-color);
}

.pricing-card.featured .pricing-header h4 {
    color: var(--primary-color);
}

/* Annual pricing toggle (future) */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-toggle .toggle-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-toggle .toggle-label.active {
    color: var(--primary-color);
}

.pricing-toggle .toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--border-color);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.pricing-toggle .toggle-switch.active {
    background: var(--primary-color);
}

.pricing-toggle .toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: left var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-toggle .toggle-switch.active::after {
    left: 27px;
}

.save-badge {
    background: var(--success-light);
    color: var(--success-color);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* =============================================
   LOADING STATES
   ============================================= */

.skeleton {
    background: linear-gradient(90deg, var(--border-color) 25%, var(--background-alt) 50%, var(--border-color) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
