@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1A33;
    --premium-blue: #124B97;
    --dark-navy: #0A1A33;
    --gold: #C8A55B;
    --light-gold: #d4ba7c;
    --charcoal: #222E3C;
    --soft-grey: #F3F5F8;
    --grey-50: #F3F5F8;
    --grey-100: #E8EBF0;
    --grey-200: #D1D5DB;
    --grey-300: #B5BAC4;
    --grey-500: #6B7280;
    --grey-700: #4B5563;
    --grey-900: #222E3C;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--grey-50);
    color: var(--grey-900);
    line-height: 1.8;
    font-weight: 400;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.08);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

/* Larger logo for tablets/iPads */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-img {
        height: 90px;
    }
}

/* Even larger logo for desktop */
@media (min-width: 1025px) {
    .logo-img {
        height: 85px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.btn-signup {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.625rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(10, 26, 51, 0.15);
}

.btn-signup:hover {
    background: var(--premium-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 26, 51, 0.2);
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.flash-messages {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 3rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.alert-success {
    background: #d1fae5;
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: #fee2e2;
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #2563eb;
}

.close-alert {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

.premium-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 8rem 3rem 10rem;
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

.hero-content-premium {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.premium-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.premium-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--gold);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.premium-tagline {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons-premium {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-premium-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-premium-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-premium-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-premium-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.section-title-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--grey-500);
    margin-bottom: 3rem;
    font-weight: 300;
}

.value-proposition {
    background: var(--white);
    border-top: 1px solid var(--grey-200);
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--grey-700);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
}

.process-section {
    background: var(--grey-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 26, 51, 0.12);
    border-color: var(--gold);
}

.process-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.process-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.process-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-weight: 300;
}

.value-pillars {
    background: var(--white);
    border-top: 1px solid var(--grey-200);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(10, 26, 51, 0.15);
    border-color: var(--premium-blue);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    border-radius: 1rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-weight: 300;
}

.security-compliance {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-200);
}

.security-content {
    max-width: 1200px;
    margin: 0 auto;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--grey-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(10, 26, 51, 0.05);
}

.security-item:hover {
    border-color: var(--premium-blue);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.1);
}

.security-item svg {
    color: var(--premium-blue);
    flex-shrink: 0;
}

.security-item span {
    font-size: 1.05rem;
    color: var(--grey-700);
    font-weight: 500;
}

.why-choose {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--grey-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(10, 26, 51, 0.05);
}

.benefit-item:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--grey-700);
    font-weight: 400;
}

.trust-section {
    background: var(--grey-50);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(10, 26, 51, 0.15);
    border-color: var(--gold);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--navy), var(--dark-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.trust-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-weight: 300;
}

.dashboard-preview {
    background: var(--white);
}

.dashboard-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.dashboard-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.05);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(10, 26, 51, 0.12);
}

.feature-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--grey-600);
    font-size: 0.95rem;
    font-weight: 300;
}

.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 6rem 3rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM HOMEPAGE V2 - GLASSMORPHISM DESIGN
   ============================================ */

/* Hero Section V2 */
.premium-hero-v2 {
    background: linear-gradient(135deg, #0A1A33 0%, #0d2445 50%, #124B97 100%);
    padding: 8rem 3rem 10rem;
    position: relative;
    overflow: hidden;
}

.premium-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 165, 91, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(18, 75, 151, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Faint World Map Background */
.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.world-map-bg svg {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.hero-content-v2 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.trust-badge svg {
    color: var(--gold);
}

.hero-title-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -1px;
    line-height: 1;
}

.hero-subtitle-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description-v2 {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-buttons-v2 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(200, 165, 91, 0.3);
}

.btn-hero-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 165, 91, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   HERO ANIMATED GRAPHICS
   ============================================ */

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Currency Symbols */
.floating-currency {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 165, 91, 0.08);
    animation: floatCurrency 20s infinite ease-in-out;
}

.currency-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 4rem;
}

.currency-2 {
    top: 25%;
    right: 12%;
    animation-delay: -5s;
    font-size: 2.5rem;
}

.currency-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: -10s;
    font-size: 2rem;
}

.currency-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: -15s;
    font-size: 3.5rem;
}

@keyframes floatCurrency {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-15px) rotate(-3deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-40px) rotate(8deg);
        opacity: 0.12;
    }
}

/* Connection Lines Animation */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.connection-svg {
    width: 100%;
    height: 100%;
}

.flow-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: flowLine 4s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 1.3s; }
.line-3 { animation-delay: 2.6s; }

@keyframes flowLine {
    0% {
        stroke-dashoffset: 400;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -400;
    }
}

/* Data Particles */
.data-particles {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: particleFlow 6s linear infinite;
    box-shadow: 0 0 15px rgba(200, 165, 91, 0.6);
}

.particle:nth-child(1) { animation-delay: 0s; top: -20px; }
.particle:nth-child(2) { animation-delay: 1.2s; top: 10px; }
.particle:nth-child(3) { animation-delay: 2.4s; top: -10px; }
.particle:nth-child(4) { animation-delay: 3.6s; top: 25px; }
.particle:nth-child(5) { animation-delay: 4.8s; top: -30px; }

@keyframes particleFlow {
    0% {
        left: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Bridge Animation Graphic */
.hero-bridge-graphic {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 0;
    opacity: 0.85;
}

.bridge-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* City Nodes */
.city-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: cityPulse 3s ease-in-out infinite;
}

.london-node { animation-delay: 0s; }
.nairobi-node { animation-delay: 1.5s; }

@keyframes cityPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.city-icon {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 165, 91, 0.2);
}

.building {
    width: 12px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(200, 165, 91, 0.6) 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 10px rgba(200, 165, 91, 0.3);
}

.building.b1 { height: 35px; }
.building.b2 { height: 50px; }
.building.b3 { height: 40px; }

.city-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.city-flag {
    font-size: 1.5rem;
    animation: flagWave 2s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Bridge Path */
.bridge-path {
    flex: 1;
    height: 4px;
    position: relative;
    margin: 0 20px;
}

.bridge-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), rgba(200, 165, 91, 0.3), var(--gold));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(200, 165, 91, 0.4);
}

.bridge-pulse {
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(200, 165, 91, 0.6), transparent);
    animation: bridgePulse 2s ease-in-out infinite;
}

@keyframes bridgePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.3);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.transfer-packet {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: packetTransfer 4s ease-in-out infinite;
}

.packet-icon {
    display: block;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(200, 165, 91, 0.8));
}

@keyframes packetTransfer {
    0% {
        left: 0;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        left: calc(100% - 24px);
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

/* Hero Highlight */
.hero-highlight {
    color: var(--gold);
    font-weight: 500;
}

/* Power Stats - Centered and Animated */
.hero-power-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 2.5rem auto 3rem;
    max-width: 700px;
    flex-wrap: wrap;
}

.power-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(200, 165, 91, 0.2);
    min-width: 140px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: statReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.power-stat:nth-child(1) { animation-delay: 0.1s; }
.power-stat:nth-child(2) { animation-delay: 0.2s; }
.power-stat:nth-child(3) { animation-delay: 0.3s; }
.power-stat:nth-child(4) { animation-delay: 0.4s; }

@keyframes statReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.power-stat:hover {
    background: rgba(200, 165, 91, 0.1);
    border-color: rgba(200, 165, 91, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 165, 91, 0.15);
}

.power-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.power-stat-value .stat-number {
    display: inline-block;
    animation: countPulse 2s ease-out;
}

@keyframes countPulse {
    0% { 
        opacity: 0; 
        transform: scale(0.5);
    }
    50% { 
        transform: scale(1.1);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

.power-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Animated glow effect on stats */
.power-stat::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 165, 91, 0.3), transparent, rgba(200, 165, 91, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.power-stat:hover::before {
    opacity: 1;
}

.power-stat {
    position: relative;
}

/* Button Shine Effect */
.btn-hero-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Badge Glow */
.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: 999px;
    opacity: 0;
    animation: badgeGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.trust-badge {
    position: relative;
}

/* Micro Proof */
.hero-micro-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    border: 3px solid var(--navy);
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.proof-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.proof-text strong {
    color: var(--gold);
}

/* Hero Vector Illustration - Centered & Visible */
.hero-vector-illustration {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 280px;
    margin: 2rem auto;
    z-index: 2;
    opacity: 1;
}

.hero-svg {
    width: 100%;
    height: auto;
    min-height: 280px;
    display: block;
}

@media (max-width: 768px) {
    .hero-vector-illustration {
        min-height: 200px;
        margin: 1.5rem auto;
    }
    
    .hero-svg {
        min-height: 200px;
    }
}

.bg-circle {
    animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.08; transform: scale(1.05); }
}

.character-left, .character-right {
    animation: characterFloat 3s ease-in-out infinite;
}

.character-right {
    animation-delay: 1.5s;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bridge-dash {
    stroke-dasharray: 10, 5;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 30; }
}

.bridge-arrow {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.money-packet {
    animation: packetMove 3s ease-in-out infinite;
}

@keyframes packetMove {
    0%, 100% { transform: translate(380px, 145px) scale(1); }
    50% { transform: translate(380px, 135px) scale(1.1); }
}

.float-element {
    animation: floatElement 4s ease-in-out infinite;
}

.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: 1s; }
.float-3 { animation-delay: 2s; }
.float-4 { animation-delay: 3s; }

@keyframes floatElement {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-8px); }
}

/* Country Coverage Section */
.country-coverage-section {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #0A1A33 0%, #0d2445 100%);
}

.country-coverage-section .section-title-v2 {
    color: var(--white);
}

.country-coverage-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.country-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 165, 91, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 165, 91, 0.4);
    transform: translateY(-5px);
}

.country-card:first-child {
    border-color: var(--gold);
    background: rgba(200, 165, 91, 0.1);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.country-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.country-status {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.coverage-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(200, 165, 91, 0.1);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.coverage-cta strong {
    color: var(--gold);
}

/* Trust Indicators */
.trust-indicators {
    background: var(--white);
    padding: 2rem 3rem;
    border-bottom: 1px solid var(--grey-200);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grey-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Value Pillars V2 - Glassmorphism */
.value-pillars-v2 {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--grey-600);
    line-height: 1.6;
}

.pillars-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-card-v2 {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid;
    border-image: linear-gradient(135deg, rgba(200, 165, 91, 0.3), rgba(18, 75, 151, 0.2)) 1;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(10, 26, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.pillar-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 165, 91, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 26, 51, 0.15);
    border-image: linear-gradient(135deg, rgba(200, 165, 91, 0.6), rgba(18, 75, 151, 0.4)) 1;
}

.pillar-card-v2:hover::before {
    opacity: 1;
}

/* 3D Pillar Icons */
.icon-3d-pillar {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card-v2:hover .icon-3d-pillar {
    transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
}

/* Shield Icon */
.icon-shield {
    background: linear-gradient(145deg, #10b981 0%, #059669 100%);
    position: relative;
    overflow: visible;
}

.shield-badge {
    width: 60px;
    height: 70px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.shield-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #10b981;
    font-size: 32px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

/* Contract Icon */
.icon-contract {
    background: linear-gradient(145deg, #0A1A33 0%, #1a2744 100%);
    position: relative;
}

.contract-paper {
    position: absolute;
    top: 20px;
    left: 25px;
    right: 25px;
    bottom: 20px;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 8px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.contract-paper::before,
.contract-paper::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #C8A55B, transparent);
    border-radius: 1px;
}

.contract-paper::before {
    top: 15px;
}

.contract-paper::after {
    top: 22px;
    width: 60%;
}

.contract-seal {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, #C8A55B, #d4ba7c);
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(200, 165, 91, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contract-seal::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, #d4ba7c, #C8A55B);
    border-radius: 50%;
}

/* Eye Icon */
.icon-eye {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    position: relative;
}

.eye-outer {
    width: 65px;
    height: 35px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.eye-outer::before,
.eye-outer::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    border-radius: 50%;
    top: 0;
}

.eye-outer::before {
    left: -5px;
}

.eye-outer::after {
    right: -5px;
}

.eye-pupil {
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: eyeMove 4s infinite ease-in-out;
}

.eye-pupil::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

@keyframes eyeMove {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-45%, -50%); }
    75% { transform: translate(-55%, -50%); }
}

/* Crown Icon */
.icon-crown {
    background: linear-gradient(145deg, #C8A55B 0%, #d4ba7c 100%);
    position: relative;
}

.crown-base {
    position: absolute;
    bottom: 28px;
    left: 22px;
    right: 22px;
    height: 35px;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border-radius: 6px 6px 0 0;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.crown-base::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(145deg, #ffed4e, #ffd700);
    clip-path: polygon(
        0% 100%, 20% 0%, 40% 100%, 
        50% 0%, 60% 100%, 80% 0%, 100% 100%
    );
}

.crown-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(145deg, #e6c200, #d4af37);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.crown-gem {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.crown-gem::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

/* Pillar Icon Hover Effects */
.pillar-card-v2:hover .icon-3d-content {
    box-shadow: 
        0 15px 45px rgba(200, 165, 91, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.pillar-icon-v2 {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.pillar-icon-v2 svg {
    width: 56px;
    height: 56px;
}

.pillar-title-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar-description-v2 {
    color: var(--grey-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Timeline V2 */
.process-section-v2 {
    padding: 6rem 3rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.process-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(200, 165, 91, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.process-section-v2 .section-title-v2 {
    color: var(--white);
}

.process-section-v2 .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(200, 165, 91, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-badge {
    display: inline-block;
    background: rgba(200, 165, 91, 0.15);
    color: var(--gold);
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.process-connector {
    position: absolute;
    left: 31px;
    top: 64px;
    width: 2px;
    height: calc(100% - 64px);
    background: linear-gradient(180deg, var(--gold) 0%, rgba(200, 165, 91, 0.2) 100%);
    z-index: 1;
}

.process-step:last-child .process-connector {
    display: none;
}

/* Security Section V2 */
.security-section-v2 {
    padding: 6rem 3rem;
    background: var(--grey-50);
}

.security-content-v2 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.security-left {
    position: sticky;
    top: 100px;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.2);
}

.security-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--grey-600);
    margin-bottom: 2.5rem;
}

.security-features-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--grey-200);
    transition: all 0.3s ease;
}

.security-feature-item:hover {
    border-color: var(--success);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.security-feature-item svg {
    flex-shrink: 0;
}

.security-feature-item span {
    font-weight: 500;
    color: var(--grey-700);
}

.security-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid;
    border-image: linear-gradient(135deg, rgba(18, 75, 151, 0.2), rgba(200, 165, 91, 0.2)) 1;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(10, 26, 51, 0.06);
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 26, 51, 0.12);
}

.compliance-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.compliance-card p {
    color: var(--grey-600);
    line-height: 1.7;
}

/* Dashboard Preview V2 */
.dashboard-preview-v2 {
    padding: 6rem 3rem;
    background: var(--white);
}

.dashboard-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.dashboard-feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--grey-200);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.05);
}

.dashboard-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(10, 26, 51, 0.12);
    border-color: var(--gold);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

/* 3D Icon Container */
.icon-3d {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-feature:hover .icon-3d {
    transform: translateY(-8px) rotateX(5deg) rotateY(-5deg);
}

.icon-3d-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.layer-back {
    background: linear-gradient(145deg, rgba(200, 165, 91, 0.15), rgba(10, 26, 51, 0.1));
    transform: translateZ(-20px);
    box-shadow: 0 20px 60px rgba(10, 26, 51, 0.15);
}

.icon-3d-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #C8A55B 0%, #d4ba7c 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(200, 165, 91, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.icon-3d-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* Document Icon */
.icon-doc {
    background: linear-gradient(145deg, #ffffff 0%, #f3f5f8 100%);
}

.doc-fold {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #e8ebf0 0%, #d1d5db 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.doc-lines {
    position: absolute;
    width: 50%;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.doc-lines::before,
.doc-lines::after {
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C8A55B, transparent);
    border-radius: 2px;
}

/* Chart Icon */
.icon-chart {
    background: linear-gradient(145deg, #0A1A33 0%, #124B97 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 25px;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(180deg, #C8A55B, #d4ba7c);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 8px rgba(200, 165, 91, 0.5);
    position: relative;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 4px 4px 0 0;
}

.bar-1 { height: 25px; }
.bar-2 { height: 45px; }
.bar-3 { height: 35px; }
.bar-4 { height: 55px; }

/* Card Icon */
.icon-card {
    background: linear-gradient(145deg, #1a237e 0%, #283593 100%);
}

.card-chip {
    position: absolute;
    top: 30px;
    left: 25px;
    width: 30px;
    height: 25px;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border-radius: 6px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(255, 215, 0, 0.4);
}

.card-chip::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(145deg, #e6c200, #ffd700);
    border-radius: 3px;
}

.card-stripe {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(145deg, #0d1b42, #000000);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Bell Icon */
.icon-bell {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    position: relative;
}

.bell-body {
    width: 40px;
    height: 45px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    border-radius: 20px 20px 0 0;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.bell-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(145deg, #d1d5db, #9ca3af);
    border-radius: 50%;
}

.bell-body::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 10px;
    background: linear-gradient(145deg, #e5e7eb, #d1d5db);
    border-radius: 0 0 8px 8px;
}

.bell-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 3px solid #ffffff;
}

/* Folder Icon */
.icon-folder {
    background: linear-gradient(145deg, #0A1A33 0%, #1a2744 100%);
    position: relative;
}

.folder-tab {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 30px;
    height: 12px;
    background: linear-gradient(145deg, #C8A55B, #b8943f);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 6px rgba(200, 165, 91, 0.3);
}

.folder-body {
    position: absolute;
    top: 35px;
    left: 20px;
    right: 20px;
    bottom: 25px;
    background: linear-gradient(145deg, #d4ba7c, #C8A55B);
    border-radius: 6px;
    box-shadow: 
        0 8px 20px rgba(200, 165, 91, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.2),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.folder-body::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.folder-body::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 10px;
    width: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

/* Chat Icon */
.icon-chat {
    background: linear-gradient(145deg, #10b981 0%, #059669 100%);
}

.chat-bubble {
    width: 55px;
    height: 45px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 16px;
    height: 16px;
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.chat-dots {
    position: absolute;
    display: flex;
    gap: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chat-dots span {
    width: 8px;
    height: 8px;
    background: linear-gradient(145deg, #10b981, #059669);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.chat-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Hover Animations */
.dashboard-feature:hover .icon-3d-content {
    box-shadow: 
        0 15px 45px rgba(200, 165, 91, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.dashboard-feature:hover .chart-bar {
    animation: chartGrow 0.6s ease-out;
}

@keyframes chartGrow {
    0% { transform: scaleY(0.7); }
    50% { transform: scaleY(1.1); }
    100% { transform: scaleY(1); }
}

.dashboard-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.dashboard-feature p {
    color: var(--grey-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section V2 */
.cta-section-v2 {
    background: linear-gradient(135deg, #0A1A33 0%, #0d2445 50%, #124B97 100%);
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 165, 91, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-v2 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons-v2 {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-cta-primary-v2 {
    background: var(--gold);
    color: var(--navy);
    padding: 1.125rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(200, 165, 91, 0.3);
}

.btn-cta-primary-v2:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 165, 91, 0.4);
}

.btn-cta-secondary-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1.125rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    justify-content: center;
}

.trust-seal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   END PREMIUM HOMEPAGE V2
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 3rem;
}

.form-container {
    max-width: 550px;
    margin: 2rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    color: var(--grey-700);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--grey-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--premium-blue);
    box-shadow: 0 0 0 4px rgba(18, 75, 151, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.15);
}

.btn-submit:hover {
    background: var(--premium-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 26, 51, 0.25);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.transfer-list {
    list-style: none;
}

.transfer-item {
    padding: 1.25rem;
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.transfer-item:hover {
    background: var(--grey-50);
}

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

.transfer-amount {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.125rem;
}

.transfer-status {
    padding: 0.375rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-active {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.progress-tracker {
    margin: 3rem 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grey-200);
    color: var(--grey-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    border: 3px solid var(--white);
}

.progress-step.active .step-circle {
    background: var(--navy);
    color: var(--gold);
}

.progress-step.completed .step-circle {
    background: var(--gold);
    color: var(--navy);
}

.step-label {
    font-size: 0.875rem;
    color: var(--grey-700);
    font-weight: 500;
}

.table-container {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--grey-100);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--grey-700);
    font-size: 0.95rem;
}

td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--grey-200);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: var(--grey-50);
}

/* Responsive Table Utilities */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.08);
}

.table-responsive table {
    min-width: 700px;
    width: 100%;
    margin-bottom: 0;
}

.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll-container::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
    background: var(--grey-100);
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #b8903f;
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.75rem;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .premium-title {
        font-size: 3.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(10, 26, 51, 0.1);
        z-index: 1000;
    }
    
    .nav-links.is-open {
        max-height: 500px;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid var(--grey-200);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .btn-signup {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
    }
    
    .premium-hero {
        padding: 5rem 1.5rem 6rem;
    }
    
    .premium-title {
        font-size: 2.5rem;
    }
    
    .premium-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons-premium {
        flex-direction: column;
    }
    
    .container-premium {
        padding: 3rem 1.5rem;
    }
    
    .section-title-serif {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Premium Homepage V2 Mobile Styles */
    .premium-hero-v2 {
        padding: 5rem 1.5rem 6rem;
    }
    
    .hero-brand {
        font-size: 3rem;
    }
    
    .hero-subtitle-v2 {
        font-size: 1rem;
    }
    
    .hero-description-v2 {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .hero-buttons-v2 {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title-v2 {
        font-size: 2rem;
    }
    
    .pillars-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card-v2 {
        padding: 2rem 1.5rem;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .process-connector {
        left: 27px;
        top: 56px;
    }
    
    .security-content-v2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-left {
        position: static;
    }
    
    .compliance-card {
        padding: 2rem 1.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons-v2 {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta-primary-v2,
    .btn-cta-secondary-v2 {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-brand {
        font-size: 4rem;
    }
    
    .pillars-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-content-v2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-left {
        position: static;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--premium-blue) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.about-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.about-intro {
    background: var(--white);
    padding: 5rem 0;
}

.about-content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.08);
}

.about-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--grey-700);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.mission-vision {
    background: var(--grey-50);
    padding: 5rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 26, 51, 0.15);
    border-color: var(--gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    border-radius: 1rem;
    color: var(--gold);
}

.mv-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-700);
    font-weight: 300;
}

.what-we-do {
    background: var(--white);
    padding: 5rem 0;
}

.about-lead-text {
    text-align: center;
    font-size: 1.25rem;
    color: var(--grey-700);
    margin-bottom: 3rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--grey-50);
    border-radius: 0.75rem;
    border: 1px solid var(--grey-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    border-color: var(--premium-blue);
    background: var(--white);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(10, 26, 51, 0.08);
}

.service-item svg {
    color: var(--premium-blue);
    flex-shrink: 0;
}

.service-item span {
    font-size: 1.05rem;
    color: var(--grey-700);
    font-weight: 400;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--grey-50);
    border-left: 4px solid var(--gold);
    border-radius: 0.5rem;
}

.disclaimer-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-700);
    font-weight: 400;
    margin: 0;
}

.our-values {
    background: var(--grey-50);
    padding: 5rem 0;
}

.values-list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(10, 26, 51, 0.12);
    border-color: var(--gold);
}

.value-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-50);
    border-radius: 0.75rem;
}

.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-700);
    font-weight: 300;
}

.how-we-operate {
    background: var(--white);
    padding: 5rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.location-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 26, 51, 0.15);
    border-color: var(--premium-blue);
}

.location-flag {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.location-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.location-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-700);
    font-weight: 300;
}

.location-note {
    text-align: center;
    font-size: 1.125rem;
    color: var(--grey-700);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.who-we-serve {
    background: var(--grey-50);
    padding: 5rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.client-type {
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--grey-200);
    text-align: center;
    font-size: 1.05rem;
    color: var(--grey-700);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(10, 26, 51, 0.05);
}

.client-type:hover {
    border-color: var(--premium-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(10, 26, 51, 0.1);
}

.verification-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--grey-700);
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 4px solid var(--premium-blue);
    border-radius: 0.5rem;
    font-weight: 500;
}

.our-approach {
    background: var(--white);
    padding: 5rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.approach-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    color: var(--gold);
    border-radius: 0.75rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.15);
}

.approach-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(10, 26, 51, 0.25);
}

.approach-note {
    text-align: center;
    font-size: 1.125rem;
    color: var(--grey-700);
    font-style: italic;
}

.why-choose-sb {
    background: var(--grey-50);
    padding: 5rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--grey-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(10, 26, 51, 0.05);
}

.reason-item:hover {
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(10, 26, 51, 0.1);
}

.reason-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.reason-item span {
    font-size: 1.05rem;
    color: var(--grey-700);
    font-weight: 400;
}

.security-priority {
    background: var(--white);
    padding: 5rem 0;
}

.security-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 26, 51, 0.2);
}

.security-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.security-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.modern-bridge {
    background: var(--grey-50);
    padding: 5rem 0;
}

.bridge-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bridge-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--grey-700);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-cta {
    background: var(--white);
    padding: 5rem 0;
}

.about-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: var(--grey-50);
    border-radius: 1rem;
    border: 2px solid var(--grey-200);
}

.about-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.about-cta-text {
    font-size: 1.25rem;
    color: var(--grey-700);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--premium-blue) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.contact-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main {
    background: var(--white);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.office-card {
    background: var(--grey-50);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(10, 26, 51, 0.12);
    border-color: var(--premium-blue);
}

.office-flag {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.office-location {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.detail-item svg {
    color: var(--premium-blue);
    flex-shrink: 0;
}

.detail-item span,
.detail-item a {
    color: var(--grey-700);
    font-size: 0.95rem;
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--premium-blue);
}

.office-hours {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.hours-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    padding: 1rem;
    background: var(--grey-50);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: var(--grey-700);
}

.hours-item strong {
    color: var(--navy);
}

.hours-note {
    font-size: 0.9rem;
    color: var(--grey-600);
    font-style: italic;
    text-align: center;
}

.contact-form-section {
    background: var(--grey-50);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.contact-form {
    margin-top: 1.5rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    color: #065f46;
}

.success-message svg {
    color: #10b981;
    flex-shrink: 0;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: var(--grey-700);
    cursor: pointer;
    line-height: 1.6;
}

.why-contact {
    background: var(--grey-50);
    padding: 5rem 0;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-contact-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.why-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(10, 26, 51, 0.12);
    border-color: var(--gold);
}

.why-contact-item svg {
    color: var(--premium-blue);
    margin: 0 auto 1.5rem;
    display: block;
}

.why-contact-item h3 {
    font-size: 1.125rem;
    color: var(--grey-700);
    font-weight: 500;
    line-height: 1.6;
}

.contact-cta {
    background: var(--white);
    padding: 5rem 0;
}

.contact-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(10, 26, 51, 0.2);
}

.contact-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.contact-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.admin-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 3rem;
    background: var(--grey-50);
    min-height: 100vh;
}

.admin-header {
    margin-bottom: 2.5rem;
}

.admin-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    font-size: 1.05rem;
    color: var(--grey-600);
    font-weight: 300;
}

.admin-nav-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--grey-200);
    padding-bottom: 0;
}

.admin-tab {
    padding: 1rem 2rem;
    border-radius: 0.5rem 0.5rem 0 0;
    text-decoration: none;
    color: var(--grey-600);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.admin-tab:hover {
    background: var(--grey-100);
    color: var(--navy);
}

.admin-tab.active {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
}

.admin-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--premium-blue);
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-kpi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.admin-kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(10, 26, 51, 0.12);
    border-color: var(--premium-blue);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-icon svg {
    color: var(--gold);
}

.kpi-content {
    flex: 1;
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.kpi-detail {
    font-size: 0.875rem;
    color: var(--grey-500);
    font-weight: 300;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-panel {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
    overflow: hidden;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--grey-200);
}

.panel-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.panel-link {
    color: var(--premium-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.panel-link:hover {
    color: var(--navy);
}

.table-container-admin {
    overflow-x: auto;
}

.table-container-admin table {
    width: 100%;
    border-collapse: collapse;
}

.table-container-admin th {
    background: var(--grey-50);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--grey-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-container-admin td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.95rem;
    color: var(--grey-700);
}

.table-container-admin tr:hover {
    background: var(--grey-50);
}

.table-container-admin tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-verified {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-agreement-pending,
.status-agreement-signed---awaiting-payment {
    background: #dbeafe;
    color: #1e40af;
}

.status-processing {
    background: #e0e7ff;
    color: #4338ca;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.btn-action {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--premium-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 26, 51, 0.15);
}

.admin-quick-actions {
    margin-top: 3rem;
}

.section-title-admin {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.quick-action-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-200);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 26, 51, 0.06);
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(10, 26, 51, 0.12);
    border-color: var(--gold);
}

.qa-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--premium-blue));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.qa-icon svg {
    color: var(--gold);
}

.quick-action-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.quick-action-card p {
    font-size: 0.95rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* ================================================================
   REAL-TIME NOTIFICATION POPUPS
   ================================================================ */

.notification-popup {
    position: fixed;
    top: 2rem;
    right: 2rem;
    max-width: 420px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-popup-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 12px 48px rgba(10, 26, 51, 0.2);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-left: 4px solid var(--premium-blue);
    animation: slideInBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

.notification-popup-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-popup-body {
    flex: 1;
}

.notification-popup-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.notification-popup-body p {
    font-size: 0.938rem;
    color: var(--grey-600);
    line-height: 1.5;
}

.notification-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--grey-500);
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-popup-close:hover {
    background: var(--grey-100);
    color: var(--grey-700);
}

/* Stat value update animation */
.stat-value.updating {
    animation: pulseGlow 0.6s ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        color: var(--navy);
    }
    50% {
        transform: scale(1.1);
        color: var(--gold);
    }
}

/* Progress bar animation enhancements */
.mini-step-circle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-step.completed .mini-step-circle {
    animation: checkmarkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.mini-connector {
    transition: all 0.5s ease-in-out;
}

.mini-connector.active {
    animation: fillProgress 0.5s ease-in-out forwards;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive notification popups */
@media (max-width: 768px) {
    .notification-popup {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
