/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
}

/* Dark theme styles */
body.dark-theme {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f1419 100%);
    color: #f8fafc;
}

/* Theme Toggle Styles */
.theme-toggle {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-theme .theme-toggle-btn {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .theme-toggle-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.theme-icon {
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .header {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.logo-main {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.wealth {
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .wealth {
    color: #ffffff;
}

.way {
    color: #3b82f6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-europe {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d4ed8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 1px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 10px #f59e0b;
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.3s ease;
}

body.dark-theme .hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f1419 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: left;
}

.hero-title-line1 {
    color: #1e293b;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .hero-title-line1 {
    color: #ffffff;
}

.hero-title-line2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

body.dark-theme .hero-description {
    color: #e2e8f0;
}


.hero-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    margin-top: 30px;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-laptop {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark-theme .hero-laptop {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-laptop:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

body.dark-theme .hero-laptop:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Companies Section */
.companies {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

body.dark-theme .companies {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

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

.companies-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.companies-header {
    text-align: center;
    margin-bottom: 60px;
}

body.dark-theme .companies-title {
    color: #ffffff;
}

.companies-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    line-height: 1.5;
}

body.dark-theme .companies-description {
    color: #e2e8f0;
}

.companies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.company-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.revolut-bg {
    background-image: url('images/rev.png');
}

.amazon-bg {
    background-image: url('images/Am.png');
}

.tesla-bg {
    background-image: url('images/tes.png');
}

.meta-bg {
    background-image: url('images/met.png');
}

.apple-bg {
    background-image: url('images/ap.png');
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-logo {
    margin: 20px 0;
}

.logo-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

body.dark-theme .company-card {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .company-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.company-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.company-image:hover {
    transform: scale(1.05);
}

.card-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    line-height: 1.3;
}

body.dark-theme .card-main-title {
    color: #ffffff;
}

.card-subtitle-1 {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.card-subtitle-2 {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    transition: all 0.3s ease;
}

body.dark-theme .card-subtitle-2 {
    color: #e2e8f0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

body.dark-theme .testimonials {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .testimonials-title {
    color: #ffffff;
}

.testimonials-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

body.dark-theme .testimonials-description {
    color: #e2e8f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    }

    .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-theme .testimonial-card {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-theme .testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.testimonial-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    transition: all 0.3s ease;
}

body.dark-theme .testimonial-headline {
    color: #ffffff;
    }

    .testimonial-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    transition: all 0.3s ease;
}

body.dark-theme .testimonial-description {
    color: #e2e8f0;
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

body.dark-theme .faq {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .faq-title {
    color: #ffffff;
}

.faq-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #64748b;
    transition: all 0.3s ease;
}

body.dark-theme .faq-description {
    color: #e2e8f0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-theme .faq-card {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .faq-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.faq-question-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.icon-ruble, .icon-chart, .icon-clock, .icon-shield {
    font-size: 1.2rem;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    flex: 1;
}

body.dark-theme .faq-question {
    color: #ffffff;
}

.faq-arrow {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    margin-top: 20px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    transition: all 0.3s ease;
}

body.dark-theme .faq-answer p {
    color: #e2e8f0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

body.dark-theme .why-choose {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-title {
    color: #ffffff;
}

.why-choose-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-description {
    color: #e2e8f0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-icon {
    margin-bottom: 20px;
}

.icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-choose-content {
    text-align: center;
}

.why-choose-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-item-title {
    color: #ffffff;
}

.why-choose-item-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-item-description {
    color: #e2e8f0;
}

/* Why Choose Text Block */
    .why-choose-text-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-text-block {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.why-choose-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-text-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1e293b;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-text-title {
    color: #ffffff;
    }

    .why-choose-text-paragraph {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

body.dark-theme .why-choose-text-paragraph {
    color: #e2e8f0;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    transition: all 0.3s ease;
}

body.dark-theme .footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: left;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-wealth {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    transition: all 0.3s ease;
}

.footer-europe {
        font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-title {
        font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    transition: all 0.3s ease;
}

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    transition: all 0.3s ease;
}

.footer-icon {
        font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    text-align: center;
}

body.dark-theme .footer-wealth {
    color: #ffffff;
}

body.dark-theme .footer-europe {
    color: #60a5fa;
}

body.dark-theme .footer-title {
    color: #ffffff;
}

body.dark-theme .footer-contact {
    color: #e2e8f0;
}

body.dark-theme .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
    transition: all 0.3s ease;
}

body.dark-theme .footer-title {
    color: #ffffff;
}

.footer-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

body.dark-theme .footer-description {
    color: #e2e8f0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

/* Highlight animation for smooth scroll */
.highlight-target {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .companies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .theme-toggle {
        right: 20px;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    
    
    
    .companies,
    .testimonials,
    .faq,
    .why-choose,
    .why-choose-text-block {
        padding: 60px 15px;
    }
    
    .companies-title,
    .testimonials-title,
    .faq-title,
    .why-choose-title {
        font-size: 2.2rem;
    }
}