/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Base Styles */
html { 
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #0f141a;
    color: white;
}

/* Utility Classes */
.gold { 
    color: #c9a63f; 
}

.bg-deep { 
    background: #0b0f14; 
}

.card { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.3s ease, transform 0.2s ease;
}

.card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.ring-focus:focus { 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(201, 166, 63, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Quote sections */
.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 17, 24, 0.98) 0%, rgba(10, 14, 20, 0.98) 100%);
    z-index: -1;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

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

.hero-gradient-1 {
    position: absolute;
    top: -48px;
    left: -48px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #0ea5a4 0%, transparent 60%);
    filter: blur(48px);
    opacity: 0.2;
    animation: float 15s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -160px;
    right: -128px;
    width: 448px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #c9a63f 0%, transparent 60%);
    filter: blur(48px);
    opacity: 0.2;
    animation: float 18s ease-in-out 2s infinite;
}

.hero-gradient-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    opacity: 0.05;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
}

/* Hero Card */
.hero-card {
    position: relative;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #0f141a 0%, #0a0e14 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(14, 165, 164, 0.3), rgba(201, 166, 63, 0.3), rgba(14, 165, 164, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-card-content {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #0f141a 0%, #0a0e14 100%);
    border-radius: calc(1.5rem - 1px);
    backdrop-filter: blur(4px);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    position: relative;
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.metric-value-lg {
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

/* Trust Badges */
.trust-badges {
    margin-bottom: 1.5rem;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.trust-item {
    color: rgba(255, 255, 255, 0.6);
}

.trust-divider {
    color: rgba(255, 255, 255, 0.4);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0ea5a4;
    transition: color 0.2s ease;
}

.cta-button:hover {
    color: white;
}

.cta-button svg {
    margin-left: 0.375rem;
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.cta-button:hover svg {
    transform: translateX(0.25rem);
}

/* Feature List */
.feature-list {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
}

.feature-icon {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.language-badges {
    display: flex;
    gap: 0.25rem;
}

.language-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid #0f141a;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.language-badge.us {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4b3);
}

.language-badge.de {
    background: linear-gradient(135deg, #c9a63f, #c9a63fb3);
}

.language-badge.es {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4b3);
}

.footer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-gradient-1,
    .hero-gradient-2 {
        display: none;
    }
}
