/* ============================================
   Ledger 365 - Complete Stylesheet
   Primary: #0D83DD
   ============================================ */

:root {
    --primary: #0D83DD;
    --primary-dark: #0A6BB5;
    --primary-light: #3D9DE5;
    --primary-lighter: #E8F4FD;
    --primary-gradient: linear-gradient(135deg, #0D83DD 0%, #0A6BB5 100%);
    --hero-gradient: linear-gradient(135deg, #0b1a2e 0%, #0D83DD 50%, #3D9DE5 100%);
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- Base ---- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 131, 221, 0.35);
}

.btn-cta-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.navbar-btn {
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
}

/* ---- Navbar ---- */
.navbar {
    padding: 16px 0;
    transition: all 0.35s ease;
    z-index: 1050;
}

.navbar-transparent {
    background: transparent !important;
}

.navbar-transparent .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
    color: #fff !important;
}

.navbar-transparent .navbar-brand {
    color: #fff !important;
}

.navbar-transparent .brand-icon,
.navbar-transparent .brand-text,
.navbar-transparent .brand-accent {
    color: #fff !important;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar-scrolled .nav-link {
    color: var(--text-primary) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--primary) !important;
}

.navbar-scrolled .brand-icon {
    color: var(--primary) !important;
}

.navbar-scrolled .brand-text {
    color: var(--dark) !important;
}

.navbar-scrolled .brand-accent {
    color: var(--primary) !important;
}

.navbar-scrolled .btn-outline-light {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.navbar-scrolled .btn-outline-light:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.brand-text {
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--dark);
}

.brand-accent {
    font-weight: 800;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

/* ---- Hero Section ---- */
.hero-section {
    background: var(--hero-gradient);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #60c5ff, #a5d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CSS Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
    position: relative;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 8px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.mockup-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.mockup-stat-value.green-text { color: #4ade80; }
.mockup-stat-value.blue-text { color: #60a5fa; }

.mockup-chart {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-chart-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: 500;
}

.mockup-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(13, 131, 221, 0.4), rgba(13, 131, 221, 0.8));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    transition: height 0.6s ease;
}

/* ---- Trusted By / Social Proof ---- */
.trusted-section {
    background: var(--bg-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.trusted-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.trusted-section .trust-count {
    font-weight: 700;
    color: var(--primary);
}

/* ---- Feature Cards ---- */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---- Steps / How It Works ---- */
.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ---- Feature Highlights (alternating) ---- */
.highlight-section {
    padding: 80px 0;
}

.highlight-section:nth-child(even) {
    background: var(--bg-light);
}

.highlight-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.highlight-mockup {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-invoice-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mockup-invoice-line:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--dark);
}

.mockup-expense-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mockup-expense-row:last-child {
    border-bottom: none;
}

.expense-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.expense-icon.blue { background: #dbeafe; color: #2563eb; }
.expense-icon.green { background: #dcfce7; color: #16a34a; }
.expense-icon.purple { background: #f3e8ff; color: #9333ea; }
.expense-icon.orange { background: #ffedd5; color: #ea580c; }

.expense-details {
    flex: 1;
}

.expense-details .name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.expense-details .category {
    font-size: 0.75rem;
    color: var(--text-light);
}

.expense-amount {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--hero-gradient);
    padding: 80px 0;
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .counter-value {
    font-size: 2.75rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.author-info .author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.author-info .author-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-banner .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s;
}

.btn-white:hover {
    background: #f0f7ff;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ---- Pricing ---- */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-toggle label {
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}

.pricing-toggle .form-check-input {
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.pricing-toggle .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pricing-toggle .save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card .plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .plan-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-card .plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.pricing-card .plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 600;
}

.pricing-card .plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-annual {
    display: none;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    text-align: left;
    flex: 1;
}

.pricing-card .plan-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .plan-features li i {
    color: var(--primary);
}

.pricing-card .plan-features li.disabled {
    color: var(--text-light);
}

.pricing-card .plan-features li.disabled i {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table thead th {
    background: var(--dark);
    color: #fff;
    font-weight: 600;
    padding: 16px;
    border: none;
    font-size: 0.9rem;
}

.comparison-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
    vertical-align: middle;
    border-color: var(--border);
}

.comparison-table tbody tr:hover {
    background: var(--primary-lighter);
}

/* FAQ */
.faq-section .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 20px 24px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-lighter);
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 24px 20px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: var(--hero-gradient);
    padding: 140px 0 80px;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Features Page ---- */
.feature-category {
    margin-bottom: 60px;
}

.feature-category h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.feature-category > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.feature-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-detail-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.feature-detail-card h6 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-detail-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---- About Page ---- */
.about-values .value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all 0.3s ease;
}

.about-values .value-card:hover {
    box-shadow: var(--shadow-md);
}

.about-values .value-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.about-values .value-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.about-values .value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---- Contact Page ---- */
.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-info-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-info-card h6 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-floating > .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.contact-form .form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 131, 221, 0.15);
}

.contact-form .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 131, 221, 0.15);
}

/* ---- Auth Pages ---- */
.auth-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 580px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.auth-card .form-control,
.auth-card .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.95rem;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 131, 221, 0.15);
}

.auth-card .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.auth-section-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
}

.auth-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(13, 131, 221, 0.1);
    color: var(--primary);
}

.auth-icon-circle.auth-icon-success {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.auth-icon-circle.auth-icon-error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* ---- Privacy Page ---- */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

.privacy-content p,
.privacy-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.privacy-content ul {
    padding-left: 24px;
}

/* ---- Error Page ---- */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.site-footer .footer-brand .brand-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.site-footer .footer-brand .brand-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

.site-footer .footer-brand .brand-accent {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ---- Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* ---- Theme Picker ---- */
.theme-picker {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
}

.theme-picker-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-picker-toggle:hover {
    box-shadow: var(--shadow-xl);
}

.theme-picker-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    display: none;
    min-width: 180px;
}

.theme-picker-panel.open {
    display: block;
}

.theme-picker-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.theme-swatches {
    display: flex;
    gap: 10px;
}

.theme-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.theme-swatch:hover {
    transform: scale(1.15);
}

.theme-swatch.active {
    border-color: var(--dark);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dark);
}

/* ---- Language Switcher ---- */
.nav-lang-btn {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 10px;
}

.nav-lang-btn:hover {
    color: #fff;
}

.navbar-scrolled .nav-lang-btn {
    color: var(--text-secondary);
}

.navbar-scrolled .nav-lang-btn:hover {
    color: var(--primary);
}

.lang-dropdown form {
    margin: 0;
}

.lang-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.lang-dropdown .dropdown-item:hover {
    background: var(--bg-light, #f8fafc);
}

.lang-dropdown .dropdown-item.active {
    background: var(--primary-lighter, #E8F4FD);
    color: var(--primary, #0D83DD);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-transparent .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
    }

    .navbar-transparent .navbar-collapse .nav-link:hover {
        color: var(--primary) !important;
    }

    .navbar-cta {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .navbar-cta .btn-outline-light {
        color: var(--primary) !important;
        border-color: var(--primary) !important;
    }

    .navbar-cta .nav-lang-btn {
        color: var(--text-secondary);
    }

    .navbar-cta .nav-lang-btn:hover {
        color: var(--primary);
    }

    .step-connector {
        display: none;
    }

    .dashboard-mockup {
        margin-top: 40px;
    }

    .stat-item .counter-value {
        font-size: 2rem;
    }

    .contact-form {
        padding: 28px;
    }

    .auth-card {
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .mockup-stats {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .cta-banner h2 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
