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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #374151;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #374151;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #1f2937;
    z-index: 1000;
    padding: 1rem 0;
}

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

/* Enhanced Logo Design */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.logo-container:hover::before {
    left: 100%;
}

.logo-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.logo-icon {
    position: relative;
    width: 36px;
    height: 36px;
    z-index: 2;
}

.vault-symbol {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 8px;
    border: 2px solid #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px rgba(99, 102, 241, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-container:hover .vault-symbol {
    border-color: #8b5cf6;
    box-shadow: 
        0 0 25px rgba(99, 102, 241, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.vault-door {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.logo-container:hover .vault-door {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    transform: rotate(180deg);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.vault-handle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.logo-container:hover .vault-handle {
    background: #a5b4fc;
    box-shadow: 0 0 8px rgba(165, 180, 252, 0.8);
    transform: scale(1.2);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #6366f1 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.logo-container:hover .logo-text {
    background-position: 100% 100%;
    transform: translateX(2px);
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo-container {
        gap: 0.5rem;
        padding: 0.3rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .vault-door {
        width: 16px;
        height: 16px;
    }
    
    .vault-handle {
        width: 5px;
        height: 5px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid transparent;
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.language-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.language-btn:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.language-icon {
    font-size: 1.1rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.language-current {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.language-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #374151;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.language-option:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
}

.language-option .flag {
    font-size: 1.2rem;
    filter: brightness(1.2);
}

.language-option .lang-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 120px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 10% 90%, rgba(255,255,255,0.2), transparent);
    background-size: 100% 100%;
    animation: particle-float 25s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100vh); }
}

/* Hero Content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1rem;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.6); }
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line.highlight {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #3b82f6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.text-highlight {
    color: #6366f1;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.5rem;
    animation: count-up 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes count-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Enhanced Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.privacy-shield-new {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-core {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 50%;
    border: 3px solid #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.shield-icon {
    font-size: 4rem;
    z-index: 11;
}

.pulse-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: pulse-wave 2s ease-out infinite;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Orbit System */
.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

.orbit-2 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.orbit-4 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.planet {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 50%;
    border: 2px solid #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: planet-counter-rotate 20s linear infinite;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.planet-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 15s;
}

.planet-2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-duration: 20s;
    animation-direction: reverse;
}

.planet-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 25s;
}

.planet-4 {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes planet-counter-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
    z-index: 2;
    animation: fade-in 2s ease-out;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* Slide Animations */
@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    background: rgba(15, 15, 15, 0.5);
}

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

.feature-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #6366f1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Jurisdictions Section */
.jurisdictions-section {
    margin-bottom: 4rem;
}

.jurisdictions-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.jurisdictions-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.jurisdictions-subtitle.coming-soon {
    color: #f59e0b;
}

.jurisdictions-subtitle.coming-soon::after {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-10px);
}

.flag-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 3px solid #6366f1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.flag-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.flag-item:hover .flag-circle {
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.flag-item:hover .flag-circle::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

.flag-name {
    margin-top: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.flag-item:hover .flag-name {
    color: #6366f1;
    transform: scale(1.05);
}

/* Coming Soon styles */
.flag-item.coming-soon .flag-circle {
    border-color: #f59e0b;
    opacity: 0.8;
}

.flag-item.coming-soon:hover .flag-circle {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.flag-item.coming-soon .flag-name {
    color: #f59e0b;
}

.flag-item.coming-soon:hover .flag-name {
    color: #fbbf24;
}

.flag-item.coming-soon .flag-circle::before {
    background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(-45deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(-45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(-45deg);
    }
}

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

.flag-circle {
    animation: float 4s ease-in-out infinite;
}

.flag-item:nth-child(1) .flag-circle {
    animation-delay: 0s;
}

.flag-item:nth-child(2) .flag-circle {
    animation-delay: 0.5s;
}

.flag-item:nth-child(3) .flag-circle {
    animation-delay: 1s;
}

.flag-item:nth-child(4) .flag-circle {
    animation-delay: 1.5s;
}





/* Pricing Section */
.pricing {
    background: rgba(15, 15, 15, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-configurator {
    max-width: 1000px;
    margin: 0 auto;
}

.step-container {
    margin-bottom: 3rem;
}

.step-title {
    text-align: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

/* Jurisdiction Selector */
.jurisdiction-selector {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.jurisdiction-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%; /* Ensure full width usage */
}

.jurisdiction-row-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%; /* Ensure full width usage */
}

.jurisdiction-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #374151;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0; /* Ensure flex/grid items can shrink */
    word-wrap: break-word; /* Allow long words to break */
    hyphens: auto; /* Enable hyphenation if supported */
}



.jurisdiction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jurisdiction-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.jurisdiction-card:hover::before {
    opacity: 1;
}



.jurisdiction-card.selected {
    border-color: #6366f1;
    background: linear-gradient(135deg, #1f2937 0%, #1e293b 100%);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.jurisdiction-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.jurisdiction-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    word-break: break-word; /* Allow breaking of long words */
    line-height: 1.3; /* Consistent line height */
}

.jurisdiction-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    word-break: break-word; /* Allow breaking of long words */
    line-height: 1.4; /* Consistent line height */
}

.price-preview {
    color: #6366f1;
    font-weight: 600;
}

.jurisdiction-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    word-wrap: break-word; /* Allow proper wrapping */
}

.feature-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    word-break: break-word; /* Allow breaking of long feature names */
    text-align: center;
    min-width: 0; /* Allow shrinking */
}

.select-button {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Company Rental Card Special Styling */
.company-rental-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #10b981;
}

.company-rental-card::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.company-rental-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.company-rental-card .select-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.company-rental-card:hover .select-button {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Company Rental Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-container {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    border: 1px solid #374151;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #374151;
}

.modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 2rem;
}

.modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.modal-content {
    padding: 2rem;
}

.rental-intro-modal h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rental-intro-modal p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.rental-modes-modal h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.modes-container-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.mode-card-modal {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.mode-card-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px 12px 0 0;
}

.mode-header-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mode-header-modal h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

.mode-badge-modal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mode-content-modal p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.mode-flow-modal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flow-step-modal {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    color: #a78bfa;
    font-size: 0.8rem;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.flow-arrow-modal {
    color: #6366f1;
    font-size: 1rem;
    font-weight: bold;
}



/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-container {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modes-container-modal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mode-flow-modal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flow-step-modal {
        min-width: auto;
    }
    
    .flow-arrow-modal {
        transform: rotate(90deg);
    }
    

  }

/* FAQ Section */
.faq {
    background: rgba(15, 15, 15, 0.5);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    color: #d1d5db;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}
  
  .jurisdiction-card:hover .select-button {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Configuration Panel */
.configuration-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.config-left {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #374151;
}

.selected-jurisdiction {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.selected-flag {
    font-size: 3rem;
}

.selected-name {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.btn-back {
    background: none;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #6366f1;
    color: white;
}

.director-options {
    margin-top: 1rem;
}

.director-option {
    background: rgba(31, 41, 55, 0.5);
    border: 2px solid #374151;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.director-option:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.director-option.selected {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.director-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #4b5563;
}

.director-option.disabled:hover {
    border-color: #4b5563;
    background: rgba(31, 41, 55, 0.5);
}

.option-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.option-price {
    display: none;
}

.option-description {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.option-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-badge.disabled {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #d1d5db;
}

/* Price Summary */
.config-right {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.price-summary {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-summary h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.package-details {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-price {
    color: #6366f1;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    color: #9ca3af;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.jurisdiction-pricing {
    margin-bottom: 4rem;
}

.jurisdiction-pricing-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #ffffff;
    border-bottom: 2px solid #374151;
    padding-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-toggle-container {
    max-width: 600px;
    margin: 0 auto;
}

.jurisdiction-pricing-compact .pricing-toggle-container {
    max-width: 100%;
}

.toggle-switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 12px;
    border: 1px solid #374151;
}

.toggle-label {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toggle-label.disabled {
    color: #6b7280;
    opacity: 0.6;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #374151;
    border: 2px solid #4b5563;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked + .toggle-slider {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.toggle-switch.disabled .toggle-slider {
    cursor: not-allowed;
    background: #1f2937;
    border-color: #374151;
    opacity: 0.6;
}

.toggle-switch.disabled .toggle-slider:before {
    background: #6b7280;
}

.pricing-card-single {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #6366f1;
}

.pricing-info {
    transition: all 0.3s ease;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #374151;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-button-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-button-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-button-card:hover::before {
    left: 100%;
}

.contact-button-card:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.contact-button-card .contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-button-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.contact-button-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-action {
    position: relative;
    z-index: 2;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    background: linear-gradient(135deg, #5b5ad6 0%, #7c3aed 100%);
    transform: scale(1.05);
}

.contact-link.revealed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: pointer;
}

.contact-link.revealed:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.contact-link small {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.contact-note {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-note p {
    color: #e5e7eb;
    margin: 0;
    font-size: 1rem;
}

.contact-note strong {
    color: #a5b4fc;
}

@media (max-width: 768px) {
    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-button-card {
        padding: 2rem;
    }
    
    .contact-button-card .contact-icon {
        font-size: 2.5rem;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1f2937;
    padding: 3rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .jurisdiction-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .jurisdiction-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .configuration-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .privacy-shield-new {
        width: 300px;
        height: 300px;
    }
    
    .shield-core {
        width: 80px;
        height: 80px;
    }
    
    .shield-icon {
        font-size: 2.5rem;
    }
    
    .orbit-1 { width: 140px; height: 140px; }
    .orbit-2 { width: 180px; height: 180px; }
    .orbit-3 { width: 220px; height: 220px; }
    .orbit-4 { width: 260px; height: 260px; }
    
    .planet {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .flags-grid.coming-soon {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .flags-grid.coming-soon .flag-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: 150px;
    }
    
    .flags-grid.coming-soon .flag-item:nth-child(3) {
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .flag-circle {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .flag-name {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    

    

    
    .pricing-grid-small {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .jurisdiction-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jurisdiction-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .jurisdiction-card {
        padding: 1.2rem;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0; /* Ensure proper shrinking on mobile */
        width: 100%; /* Ensure full width usage on mobile */
    }

    .jurisdiction-flag {
        font-size: 2.5rem;
    }
    
    .jurisdiction-card h4 {
        font-size: 1.1rem;
        word-break: break-word; /* Ensure text breaks properly on mobile */
        line-height: 1.2; /* Tighter line height for mobile */
    }
    
    .jurisdiction-card p {
        font-size: 0.85rem;
        word-break: break-word; /* Ensure text breaks properly on mobile */
        line-height: 1.3; /* Consistent line height for mobile */
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        word-break: break-word; /* Ensure feature tags break properly */
        min-width: 0; /* Allow shrinking */
        max-width: 100%; /* Prevent overflow */
    }
    
    .configuration-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .config-left,
    .price-summary {
        padding: 1.5rem;
    }
    
    .selected-jurisdiction {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .director-option {
        padding: 1.2rem;
    }
    
    .option-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .select-button {
        margin-top: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Enhanced Package Features Styling */
.package-features-list {
    margin-bottom: 1.5rem;
}

.package-features-list h5 {
    color: #6366f1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-features-list ul {
    list-style: none;
    padding: 0;
}

.package-features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.package-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.package-disclaimer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #fca5a5;
    font-style: italic;
}

.package-renewal {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: #6ee7b7;
    font-weight: 600;
}

.package-addons {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.package-addons h5 {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.addons-list {
    list-style: none;
    padding: 0;
}

.addons-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addons-list li:last-child {
    border-bottom: none;
}

.addons-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Enhanced Badge Styling for Crypto-Friendly */
.director-option .option-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.director-option .option-badge:contains('Crypto-Friendly') {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Special styling for crypto-friendly badges */
.director-option[data-type="non-resident"] .option-badge,
.director-option[data-type="resident"] .option-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Special styling for stable option badge */
.director-option .option-badge:contains('Stable Option'),
.option-badge[data-badge="stable"] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

/* Mobile Responsive Updates for New Elements */
@media (max-width: 768px) {
    .package-features-list,
    .package-disclaimer,
    .package-renewal,
    .package-addons {
        font-size: 0.85rem;
    }
    
    .package-addons {
        padding: 1rem;
    }
    
    .addons-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .package-features-list li,
    .addons-list li {
        padding-left: 1.2rem;
    }
    
    .director-option .option-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile language selector */
    .language-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .language-icon {
        font-size: 1rem;
    }
    
    .language-current {
        font-size: 0.8rem;
    }
    
    .language-menu {
        right: 0;
        left: auto;
        min-width: 140px;
        margin-top: 5px;
    }
    
    .language-option {
        padding: 10px 12px;
    }
    
    .language-option .flag {
        font-size: 1.1rem;
    }
    
    .language-option .lang-name {
        font-size: 0.8rem;
    }
}

/* Coming Soon Section Styles */
.coming-soon-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.coming-soon-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #374151;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(156, 163, 175, 0.1) 10px,
        rgba(156, 163, 175, 0.1) 11px
    );
    border-radius: 20px;
    pointer-events: none;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    opacity: 0.9;
}

.coming-soon-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: grayscale(50%);
}

.coming-soon-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coming-soon-price {
    font-size: 2rem;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.coming-soon-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.coming-soon-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag.coming-soon {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon-note {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon-note p {
    color: #fca5a5;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.coming-soon-note strong {
    color: #f87171;
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-card {
        padding: 1.5rem;
    }
    
    .coming-soon-flag {
        font-size: 3rem;
    }
    
    .coming-soon-price {
        font-size: 1.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #9ca3af;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.section-description.centered {
    text-align: center;
}

/* Specific fixes for Chinese font layout issues */
body[lang="zh"] .jurisdiction-card,
html[lang="zh"] .jurisdiction-card {
    font-feature-settings: "kern" 1; /* Enable kerning for better spacing */
    text-rendering: optimizeLegibility; /* Better text rendering */
}

body[lang="zh"] .jurisdiction-card h4,
html[lang="zh"] .jurisdiction-card h4 {
    letter-spacing: 0.02em; /* Slight letter spacing for Chinese characters */
}

body[lang="zh"] .feature-tag,
html[lang="zh"] .feature-tag {
    white-space: nowrap; /* Prevent wrapping of short Chinese phrases */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if content is too long */
    max-width: 150px; /* Limit feature tag width */
}

/* Ensure consistent grid behavior with Chinese content */
body[lang="zh"] .jurisdiction-row,
html[lang="zh"] .jurisdiction-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Use minmax for better control */
}

body[lang="zh"] .jurisdiction-row-bottom,
html[lang="zh"] .jurisdiction-row-bottom {
    flex-wrap: wrap; /* Allow wrapping if needed */
}


