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

:root {
    /* Professional Banking Color Scheme - Dark Blue & Light Gray */
    --primary-color: #0f2744;
    --primary-dark: #091a2e;
    --primary-light: #1a3a5c;
    --secondary-color: #5a6a7a;
    --accent-color: #1a3a5c;
    --text-dark: #1a2b3c;
    --text-light: #5a6a7a;
    --text-muted: #8a9aaa;
    --background-light: #f5f7f9;
    --background-card: #fafbfc;
    --white: #ffffff;
    --border-color: #dde3e9;
    --border-light: #e8ecf0;
    --shadow: 0 1px 2px 0 rgb(15 39 68 / 0.04), 0 1px 3px 0 rgb(15 39 68 / 0.06);
    --shadow-lg: 0 2px 4px 0 rgb(15 39 68 / 0.04), 0 4px 8px 0 rgb(15 39 68 / 0.08);

    /* Status Colors - Muted professional tones */
    --status-success: #2d6a4f;
    --status-success-bg: #e9f5ef;
    --status-warning: #b8860b;
    --status-warning-bg: #fef9e7;
    --status-danger: #8b3a3a;
    --status-danger-bg: #fdf2f2;
    --status-info: #1a3a5c;
    --status-info-bg: #e8f0f8;
    --status-neutral: #5a6a7a;
    --status-neutral-bg: #f0f3f5;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navigation - Default (solid) */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

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

.logo a {
    text-decoration: none;
}

.logo h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Sora', sans-serif;
    transition: color 0.3s ease;
}

.logo .accent {
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Logo image styles */
.logo-img {
    display: block;
    height: 26px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    transition: background 0.3s ease, transform 0.2s, border-color 0.3s ease;
}

.nav-links .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

/* Navigation - Transparent (only for index.html) */
.navbar.navbar-transparent {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

.navbar.navbar-transparent .logo h2 {
    color: var(--white);
}

.navbar.navbar-transparent .logo .accent {
    color: rgba(255, 255, 255, 0.7);
}

/* Transparent navbar: show light logo, hide dark logo */
.navbar.navbar-transparent .logo-light {
    display: block;
}

.navbar.navbar-transparent .logo-dark {
    display: none;
}

.navbar.navbar-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.navbar-transparent .nav-links a:hover {
    color: var(--white);
}

.navbar.navbar-transparent .nav-links .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.navbar-transparent .nav-links .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Navbar scrolled state (applies to transparent navbar) */
.navbar.navbar-transparent.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--primary-color);
}

.navbar.navbar-transparent.scrolled .logo h2 {
    color: var(--text-dark);
}

.navbar.navbar-transparent.scrolled .logo .accent {
    color: var(--accent-color);
}

/* Scrolled state: show dark logo, hide light logo */
.navbar.navbar-transparent.scrolled .logo-light {
    display: none;
}

.navbar.navbar-transparent.scrolled .logo-dark {
    display: block;
}

.navbar.navbar-transparent.scrolled .nav-links a {
    color: var(--text-light);
}

.navbar.navbar-transparent.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

.navbar.navbar-transparent.scrolled .nav-links .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar.navbar-transparent.scrolled .nav-links .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Nav icon with badge (for overdue invoices counter) */
.nav-icon-wrapper {
    position: relative;
    display: inline-flex;
}

.nav-icon-badge {
    position: absolute;
    top: -8px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    line-height: 1;
    z-index: 1;
}

.nav-icon-badge:empty,
.nav-icon-badge[data-count="0"] {
    display: none !important;
}

/* Mobile menu elements - hidden on desktop */
.mobile-menu-backdrop,
.mobile-menu-header-item,
.mobile-menu-close {
    display: none;
}

.nav-spacer {
    flex: 1;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    width: max-content;
}

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0;
    font-weight: 500;
    background: rgba(15, 39, 68, 0.03);
    border: 1px solid rgba(15, 39, 68, 0.08);
    color: var(--text-dark);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.nav-login i {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .nav-login {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.dropdown:hover .nav-login::before {
    opacity: 1;
}

.dropdown:hover .nav-login i {
    transform: rotate(180deg);
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 -0.875rem;
    transition: background 0.15s ease;
}

.nav-dropdown-trigger i:first-child {
    font-size: 0.95rem;
}

/* Hover state - trigger becomes part of dropdown */
.dropdown:hover .nav-dropdown-trigger {
    background: var(--white);
    border-radius: 4px 4px 0 0;
    position: relative;
    z-index: 1001;
    /* Fake bold using text-shadow - no layout shift */
    text-shadow: 0.3px 0 0 currentColor;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(-4px);
    /* Default (scrolled/white header) styling */
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

/* Transparent navbar - glassy dark dropdown */
.navbar-transparent:not(.scrolled) .dropdown-content {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.15s ease;
    font-weight: 500;
    font-size: 0.875rem;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: color 0.15s ease;
}

.dropdown-item:hover {
    background: var(--background-light);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

/* Transparent navbar state (over hero section) - glassy dark style */
.navbar-transparent:not(.scrolled) .nav-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.navbar-transparent:not(.scrolled) .nav-login::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.navbar-transparent:not(.scrolled) .dropdown:hover .nav-login {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.navbar-transparent:not(.scrolled) .dropdown-item {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar-transparent:not(.scrolled) .dropdown-item i {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-transparent:not(.scrolled) .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.navbar-transparent:not(.scrolled) .dropdown-item:hover i {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

/* Hero Section - Split Screen with Scroll Over Effect */
.hero-wrapper {
    position: relative;
    height: 100vh;
}

.hero-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #1a3a5c 100%);
    overflow: hidden;
    padding-top: 80px; /* Space for navbar */
}

/* Animated Background Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(37, 99, 235, 0.3) 50%, transparent 70%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(79, 70, 229, 0.2) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(6, 182, 212, 0.2) 50%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.orb-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
    top: 30%;
    right: 20%;
}

.orb-5 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(79, 70, 229, 0.15) 50%, transparent 70%);
    bottom: 20%;
    left: 15%;
}

/* Decorative arc lines */
.hero-arcs {
    position: absolute;
    width: 400px;
    height: 800px;
    color: rgba(59, 130, 246, 0.12);
    pointer-events: none;
    z-index: 1;
}

.hero-arcs svg {
    width: 100%;
    height: 100%;
}

.hero-arcs-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

.hero-arcs-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

/* Wave Grid Background Image */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url('assets/images/abstract-3d-architecture-grid-lines-vector-design.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
}

/* Subtle glow orb for hero content hover */
.hero-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    filter: blur(30px);
}

.hero-half {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem;
    padding-top: 18vh;
    position: relative;
    z-index: 2;
}

/* Content wrapper - fills the half */

/* Elegant Divider */
.hero-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 45%;
    z-index: 5;
    pointer-events: none;
}

/* Vertical gradient line - fades in at top, fades out at bottom */
.hero-divider-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
    );
}

/* Content wrapper - fills the half */
.hero-content-center {
    text-align: left;
    max-width: 480px;
    width: 100%;
    cursor: pointer;
    transform-origin: left center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    min-height: 24px;
}

.hero-label i {
    font-size: 1rem;
}

.hero-content-center h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    position: relative;
    padding-bottom: 1.5rem;
    min-height: 130px;
}

/* Accent line under heading */
.hero-content-center h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 400px;
    min-height: 95px;
}

/* Highlight specific words */
.hero-description strong {
    color: #93c5fd;
    font-weight: 500;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(4px);
}

.btn-customer,
.btn-debtor {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-customer::before,
.btn-debtor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-customer:hover,
.btn-debtor:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.btn-customer:hover::before,
.btn-debtor:hover::before {
    opacity: 1;
}

.hero-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.hero-links a:hover {
    color: #60a5fa;
}

.hero-links a:hover::before {
    opacity: 1;
}

/* Trust Section - Full width bank-style */
.trust-section {
    background: var(--background-light);
    padding: 0;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--border-color);
}

.trust-section .container {
    max-width: 100%;
    padding: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--background-light);
    position: relative;
    z-index: 20;
}

.trust-item {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-light);
    border-right: 1px solid var(--border-color);
    transition: background 0.3s ease;
    position: relative;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.trust-item:hover {
    background: var(--white);
}

.trust-item:hover::after {
    width: 50px;
}

.trust-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
}

.trust-item h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Hide icons in trust section */
.trust-icon {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===== VALUE PROPOSITION SECTION - MODERN FINTECH DESIGN ===== */
.value-proposition-modern {
    padding: 8rem 0;
    padding-top: 16rem; /* Extra space so VP content starts below pinned trust-grid (~200px height) */
    background: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #1a3a5c 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background Elements */
.vp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.vp-gradient-orb {
    display: none;
}

.vp-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.5) 50%, transparent 70%);
    top: -10%;
    right: 0%;
    opacity: 1;
}

.vp-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7) 0%, rgba(99, 102, 241, 0.4) 50%, transparent 70%);
    bottom: 0%;
    left: 10%;
    opacity: 1;
}

.vp-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(219, 39, 119, 0.3) 50%, transparent 70%);
    top: 30%;
    left: 30%;
    opacity: 1;
}

.vp-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(15, 39, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 68, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section Header */
.vp-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.vp-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.vp-label i {
    font-size: 0.9rem;
}

.vp-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vp-gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vp-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Card - Frosted Glass on dark background */
.vp-hero-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3.5rem;
    margin-bottom: 4rem;
}

/* Subtle top-left light reflection - disabled for transparency */
.vp-hero-glow {
    display: none;
}

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

.vp-hero-left {
    color: #ffffff;
}

.vp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.vp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--status-success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--status-success);
}

.vp-hero-left h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.vp-hero-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.vp-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    /* iOS frosted glass - nested */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vp-stat-item {
    text-align: center;
    flex: 1;
}

.vp-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.vp-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vp-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Visual Container with Rings */
.vp-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-visual-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.vp-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.vp-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vp-ring-1 {
    width: 100%;
    height: 100%;
}

.vp-ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(255, 255, 255, 0.2);
}

.vp-ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(255, 255, 255, 0.25);
}

.vp-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(99, 179, 237, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vp-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.vp-particle-1 { top: 20%; left: 15%; }
.vp-particle-2 { top: 70%; right: 20%; }
.vp-particle-3 { bottom: 25%; left: 25%; }

/* Feature Cards */
.vp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.vp-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vp-feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
    border-top-color: #3b82f6;
}

.vp-card-glow {
    display: none;
}

.vp-feature-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.vp-feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--status-info-bg);
    border-radius: 0;
    border: none;
}

.vp-feature-icon-wrapper i {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.vp-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.vp-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.vp-feature-list li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vp-feature-list li:first-child {
    border-top: none;
}

.vp-check {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vp-check i {
    font-size: 0.65rem;
    color: #22c55e;
}

/* Services Grid */
.vp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vp-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vp-service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    border-top-color: #3b82f6;
}

.vp-service-card:hover .vp-service-line {
    width: 100%;
}

.vp-service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.vp-service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vp-service-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 0.9rem;
}

.vp-service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.4s ease;
}

/* Responsive for Value Proposition Modern */
@media (max-width: 968px) {
    .value-proposition-modern {
        padding: 5rem 0;
    }

    .vp-header h2 {
        font-size: 2.25rem;
    }

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

    .vp-hero-right {
        order: -1;
    }

    .vp-visual-container {
        width: 200px;
        height: 200px;
    }

    .vp-icon-center {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .vp-hero-left h3 {
        font-size: 2rem;
        text-align: center;
    }

    .vp-hero-left p {
        text-align: center;
    }

    .vp-badge {
        margin: 0 auto 1.5rem;
    }

    .vp-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .vp-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .vp-features-grid {
        grid-template-columns: 1fr;
    }

    .vp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vp-header h2 {
        font-size: 1.75rem;
    }

    .vp-hero-card {
        padding: 2rem;
        border-radius: 12px;
    }

    .vp-hero-left h3 {
        font-size: 1.5rem;
    }

    .vp-services-grid {
        grid-template-columns: 1fr;
    }

    .vp-feature-card {
        padding: 1.5rem;
    }

    .vp-orb-1, .vp-orb-2 {
        width: 250px;
        height: 250px;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--background-light);
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

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

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
    z-index: 10;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--status-info-bg);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.2s;
}

.about-feature:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.about-feature strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.platform-preview {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.preview-header {
    background: var(--primary-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.preview-content {
    padding: 2rem;
    background: var(--background-light);
}

.preview-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-stat-card {
    background: var(--white);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.preview-stat-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.preview-stat-card span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-stat-card strong {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.preview-chart {
    background: var(--white);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 0.75rem;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 0;
    transition: all 0.3s;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0 !important;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item h3 i {
    color: var(--primary-color);
    width: 20px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* ========================================
   PROFESSIONAL FOOTER - Minimalist Bank Style
   ======================================== */

/* Main Footer Container */
.footer-professional {
    background: #0f1c2a;
    color: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
}

.footer-professional .container {
    padding-top: 3.5rem;
    padding-bottom: 0;
}

/* Footer Main Grid - 5 columns on desktop */
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

/* Brand Section */
.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 260px;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-cvr {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer Sections - Links */
.footer-professional .footer-section h4 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-professional .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-professional .footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-professional .footer-section ul a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-professional .footer-section ul a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-professional .footer-section ul a:hover {
    color: var(--white);
}

.footer-professional .footer-section ul a:hover::before {
    opacity: 1;
}

/* Contact Section - Clean Layout */
.footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-row {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-row a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-contact-row a:hover {
    color: var(--white);
}

.footer-contact-row a:hover::before {
    opacity: 1;
}

.footer-contact-hours {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-contact-hours span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.footer-contact-hours span:first-child {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Footer Bottom - Minimal */
.footer-professional .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-top: none;
}

.footer-professional .footer-bottom p {
    margin: 0;
    color: #475569;
    font-size: 0.8rem;
}

.footer-bottom-cvr {
    color: #475569;
    font-size: 0.8rem;
}

/* ========================================
   FOOTER RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-company-info {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer-professional .container {
        padding-top: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    /* Brand section - logo left aligned, hide tagline */
    .footer-brand {
        grid-column: span 1;
        text-align: left;
        padding-bottom: 1rem;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }

    .footer-brand .footer-tagline {
        display: none;
    }

    .footer-brand .footer-company-info {
        display: none;
    }

    /* Mobile Footer Accordion - Bank Style */
    .footer-professional .footer-section {
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        overflow: hidden;
    }

    .footer-professional .footer-section h4 {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        padding: 1rem 0;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .footer-professional .footer-section h4:hover {
        color: #e2e8f0;
    }

    /* Chevron icon with animation */
    .footer-professional .footer-section h4::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.6rem;
        color: #64748b;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    }

    .footer-professional .footer-section h4:hover::after {
        color: #94a3b8;
    }

    /* Collapsed state */
    .footer-professional .footer-section.collapsed h4::after {
        transform: rotate(-90deg);
    }

    /* Animated content container */
    .footer-professional .footer-section ul,
    .footer-professional .footer-section .footer-contact-grid {
        max-height: 500px;
        opacity: 1;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease,
                    padding 0.3s ease;
    }

    .footer-professional .footer-section.collapsed ul,
    .footer-professional .footer-section.collapsed .footer-contact-grid {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
    }

    /* Links container */
    .footer-professional .footer-section ul {
        padding: 0.25rem 0 1rem 0;
    }

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

    .footer-professional .footer-section ul a {
        display: block;
        padding: 0.35rem 0;
        font-size: 0.85rem;
    }

    /* Contact grid */
    .footer-contact-grid {
        align-items: flex-start;
        padding: 0.25rem 0 1rem 0;
    }

    .footer-contact-row {
        text-align: left;
    }

    .footer-contact-row span {
        display: block;
    }

    .footer-contact-hours {
        text-align: left;
    }

    .footer-contact-hours span {
        text-align: left;
    }

    /* CVR info in contact section */
    .footer-contact-cvr {
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    .footer-contact-cvr span {
        display: block;
        color: #64748b;
        font-size: 0.8rem;
    }

    /* Contact section always open - no chevron */
    .footer-professional .footer-section.footer-contact-section h4::after {
        display: none;
    }

    .footer-professional .footer-section.footer-contact-section h4 {
        cursor: default;
    }

    .footer-professional .footer-section.footer-contact-section.collapsed .footer-contact-grid {
        max-height: 500px;
        opacity: 1;
        padding: 0.25rem 0 1rem 0;
    }

    .footer-professional .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 0;
        margin-top: 0.5rem;
    }

    /* Hide CVR in footer bottom on mobile */
    .footer-professional .footer-bottom .footer-bottom-cvr {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper {
        height: auto;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
        position: relative;
        top: 0;
    }

    .hero-arcs {
        display: none;
    }

    .hero-divider {
        display: none;
    }

    .hero-half {
        min-height: 50vh;
        padding: 3rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: center;
    }

    .hero-half.hero-customer,
    .hero-half.hero-debtor {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-half:last-child {
        border-bottom: none;
    }

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

    .hero-content-center h1 {
        font-size: 2.25rem;
        min-height: auto;
    }

    .hero-content-center h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-label {
        justify-content: center;
        min-height: auto;
    }

    .hero-description {
        max-width: 100%;
        min-height: auto;
    }

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

    /* Smaller orbs on tablet */
    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 350px; height: 350px; }
    .orb-3 { width: 250px; height: 250px; }
    .orb-4 { width: 200px; height: 200px; }
    .orb-5 { width: 220px; height: 220px; }

    .trust-section {
        padding: 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-item {
        padding: 2.5rem 1.5rem;
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(4) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: none;
    }

    .trust-number {
        font-size: 2.2rem;
    }

    .trust-item h3 {
        font-size: 0.95rem;
    }

    .main-value-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .value-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .value-stat {
        padding: 1rem;
    }

    .value-stat strong {
        font-size: 1.3rem;
    }

    .value-icon-large {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .about-stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step::after {
        display: none;
    }

    .process-benefits {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .dropdown-content {
        min-width: 180px;
    }

    .dropdown-item {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .dropdown-item i {
        width: 16px;
        font-size: 0.85rem;
    }

    .hero-content-center h1 {
        font-size: 1.75rem;
    }

    .hero-content-center h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Smaller orbs on mobile */
    .orb-1 { width: 200px; height: 200px; top: -50px; left: -50px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 180px; height: 180px; bottom: -40px; right: -40px; }
    .orb-4 { width: 150px; height: 150px; }
    .orb-5 { width: 160px; height: 160px; }

    .btn-login {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

    .trust-item h3 {
        font-size: 1.2rem;
    }

    .main-value-card {
        padding: 1.5rem;
    }

    .value-content h3 {
        font-size: 1.6rem;
    }

    .value-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-visual {
        display: none;
    }

    .features-grid,
    .services-grid,
    .process-steps,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .platform-preview {
        margin-top: 2rem;
    }

    .process-benefits {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MOBILE NAVIGATION - Hamburger Menu
   ======================================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -7px;
}

.nav-toggle-icon::after {
    top: 7px;
}

/* Hamburger to X animation */
.nav-toggle.active .nav-toggle-icon {
    background-color: transparent;
}

.nav-toggle.active .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    /* Mobile Menu Overlay Backdrop */
    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 39, 68, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Full-Screen Overlay Menu Panel */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 85%;
        max-width: 320px;
        flex-direction: column;
        background: var(--white);
        padding: 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        box-shadow: -4px 0 24px rgba(15, 39, 68, 0.15);
        display: flex;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Mobile Menu Header with Logo */
    .mobile-menu-header-item {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        background: var(--white);
        flex-shrink: 0;
    }

    .mobile-menu-header-item .logo-img {
        height: 28px;
        width: auto;
    }

    .mobile-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 2px solid var(--border-color);
        cursor: pointer;
        color: var(--text-dark);
        font-size: 1.25rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: var(--background-light);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }

    .nav-links a:hover {
        background: var(--background-light);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
    }

    .nav-links a.active {
        background: var(--status-info-bg);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
    }

    .nav-links a i {
        width: 24px;
        text-align: center;
        font-size: 1.1rem;
    }

    /* Log ud Button - Footer style */
    .mobile-menu-footer-item {
        margin-top: auto;
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        background: var(--background-light);
        flex-shrink: 0;
    }

    .mobile-menu-footer-item .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        background: var(--primary-color);
        border: none;
        color: var(--white);
        margin: 0;
        border-radius: 0;
        transition: all 0.2s ease;
    }

    .mobile-menu-footer-item .btn-secondary:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

    .nav-content {
        position: relative;
    }

    /* Hamburger button z-index when menu is open */
    .nav-toggle.active {
        z-index: 1003;
    }
}
