:root {
    --bg-dark: #0B0F1A;
    --bg-section-a: #0B0F1A;
    --bg-section-b: #11151E;
    --bg-card: #141820;
    --bg-elevated: #1A1F2E;
    --gold: #E7B75F;
    --gold-muted: #D4A549;
    --white: #FFFFFF;
    --gray-light: #C5D0E2;
    --gray-mid: #8892A6;
    --gray-dark: #4A5568;
    --border: rgba(255, 255, 255, 0.06);
    --shadow: rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-section-a);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography System */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Unified Hover Effect */
.gold-hover:hover {
    transform: translateY(-2px);
    box-shadow: 
        inset 2px 0 0 0 rgba(231, 183, 95, 0.4),
        inset -2px 0 0 0 rgba(231, 183, 95, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(231, 183, 95, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(11, 15, 26, 0.45) 0%, rgba(20, 25, 35, 0.55) 100%),
        radial-gradient(circle at center, rgba(230, 180, 80, 0.05) 0%, rgba(11, 15, 26, 0.35) 100%),
        url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1920&q=80') center/cover no-repeat;
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 180, 80, 0.15) 0%, transparent 65%);
    top: -100px;
    right: 10%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(11, 15, 26, 0.25) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(11, 15, 26, 0.7), 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--gray-light);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 16px rgba(11, 15, 26, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.trust-line {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 36px;
    margin-top: -20px;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(231, 183, 95, 0.8),
        0 2px 12px rgba(231, 183, 95, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, rgba(231, 183, 95, 0.2) 0%, rgba(231, 183, 95, 0.15) 100%);
    padding: 12px 28px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(231, 183, 95, 0.4);
    box-shadow: 
        0 0 20px rgba(231, 183, 95, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero .cta-button {
    box-shadow: 0 2px 12px rgba(231, 183, 95, 0.15);
}

.hero .cta-button:hover {
    box-shadow: 
        0 4px 20px rgba(231, 183, 95, 0.2),
        0 2px 10px rgba(231, 183, 95, 0.15);
}

/* CTA Button System */
.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 18px 44px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(231, 183, 95, 0.2);
    letter-spacing: -0.01em;
}

.cta-button:hover {
    background: var(--gold-muted);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(231, 183, 95, 0.3),
        0 4px 16px rgba(231, 183, 95, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styling */
section {
    padding: 100px 24px;
}

.section-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 72px 48px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    color: var(--gray-light);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.7;
}

/* Dream Section */
.dream-section {
    background: var(--bg-section-a);
    position: relative;
}

.dream-hero-image {
    width: 100%;
    height: 420px;
    margin: 48px 0 56px;
    border-radius: 24px;
    background: 
        linear-gradient(180deg, rgba(11, 15, 26, 0.12) 0%, rgba(20, 25, 35, 0.18) 100%),
        radial-gradient(circle at center, rgba(230, 180, 80, 0.05) 0%, rgba(11, 15, 26, 0.12) 100%),
        url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?w=1400&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dream-hero-image:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.dream-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(11, 15, 26, 0.1) 100%);
    transition: opacity 0.4s ease;
}

.dream-hero-image:hover::after {
    opacity: 0.7;
}

.dream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.dream-card {
    background: var(--bg-elevated);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(231, 183, 95, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dream-card:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 183, 95, 0.6);
    box-shadow: 
        0 0 20px rgba(231, 183, 95, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.dream-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
}

.dream-card p {
    color: var(--gray-mid);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: var(--bg-section-b);
    position: relative;
}

.problem-list {
    display: grid;
    gap: 16px;
    max-width: 780px;
    margin: 56px auto 0;
}

.problem-item {
    background: var(--bg-elevated);
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(231, 183, 95, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-item:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 183, 95, 0.6);
    box-shadow: 
        0 0 20px rgba(231, 183, 95, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.problem-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 10px;
    opacity: 0.6;
}

.problem-item p {
    color: var(--gray-light);
    font-size: 1.0625rem;
    line-height: 1.65;
}

/* Refined Highlight Styling */
.highlight {
    color: #E6B450;
    background: rgba(230, 180, 80, 0.08);
    padding: 0.12em 0.35em;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: inset 0 -1px 0 0 rgba(230, 180, 80, 0.3);
}

/* Solution Section */
.solution-section {
    background: var(--bg-section-a);
    position: relative;
}

.solution-visual {
    width: 100%;
    height: 350px;
    margin: 40px 0;
    border-radius: 24px;
    background: 
        linear-gradient(180deg, rgba(11, 15, 26, 0.15) 0%, rgba(20, 25, 35, 0.22) 100%),
        radial-gradient(circle at center, rgba(230, 180, 80, 0.04) 0%, rgba(11, 15, 26, 0.12) 100%),
        url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80') center/cover no-repeat;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-visual:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.solution-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(11, 15, 26, 0.1) 100%);
    transition: opacity 0.4s ease;
}

.solution-visual:hover::after {
    opacity: 0.7;
}

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

.solution-content p {
    font-size: 1.1875rem;
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* What You Get Section */
.benefits-section {
    background: var(--bg-section-b);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid rgba(231, 183, 95, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 183, 95, 0.6);
    box-shadow: 
        0 0 20px rgba(231, 183, 95, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
}

.benefit-card h3::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 37px;
    top: 39px;
}

.benefit-card p {
    color: var(--gray-mid);
    font-size: 1.0625rem;
    line-height: 1.65;
    padding-left: 30px;
}

/* Price Section */
.price-section {
    background: var(--bg-section-a);
    text-align: center;
    position: relative;
}

.price-box {
    background: var(--bg-card);
    max-width: 480px;
    margin: 48px auto;
    padding: 64px 48px;
    border-radius: 28px;
    border: 2px solid rgba(231, 183, 95, 0.4);
    box-shadow: 
        0 0 30px rgba(231, 183, 95, 0.15),
        0 8px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(231, 183, 95, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-box:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 183, 95, 0.7);
    box-shadow: 
        0 0 40px rgba(231, 183, 95, 0.3),
        0 12px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(231, 183, 95, 0.15);
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-amount {
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 
        0 0 20px rgba(231, 183, 95, 0.3),
        0 2px 8px rgba(231, 183, 95, 0.2);
    filter: brightness(1.1);
}

.price-description {
    font-size: 1.0625rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.price-box .cta-button {
    padding: 20px 48px;
    font-size: 1.1875rem;
    font-weight: 700;
    box-shadow: 
        0 4px 24px rgba(231, 183, 95, 0.35),
        0 2px 8px rgba(231, 183, 95, 0.2);
    position: relative;
}

.price-box .cta-button:hover {
    animation: subtle-pulse 2s ease-in-out infinite;
    box-shadow: 
        0 8px 36px rgba(231, 183, 95, 0.5),
        0 4px 20px rgba(231, 183, 95, 0.3);
}

.price-box:hover .cta-button {
    box-shadow: 
        0 6px 32px rgba(231, 183, 95, 0.45),
        0 3px 12px rgba(231, 183, 95, 0.25);
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 
            0 8px 36px rgba(231, 183, 95, 0.5),
            0 4px 20px rgba(231, 183, 95, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 40px rgba(231, 183, 95, 0.6),
            0 4px 24px rgba(231, 183, 95, 0.4);
    }
}

.value-note {
    background: rgba(231, 183, 95, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 32px;
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid rgba(231, 183, 95, 0.12);
}

.value-note span {
    color: var(--white);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--gray-mid);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 20px 16px;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.92) 0%, rgba(11, 15, 26, 0.98) 100%);
    box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 16px 24px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(231, 183, 95, 0.25);
}

.mobile-cta-button:active {
    transform: scale(0.98);
    background: var(--gold-muted);
    box-shadow: 
        0 6px 24px rgba(231, 183, 95, 0.3),
        0 2px 12px rgba(231, 183, 95, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 72px 20px;
    }

    .section-card {
        padding: 48px 28px;
        border-radius: 12px;
    }

    .hero {
        padding: 80px 20px;
        min-height: 90vh;
        background-attachment: scroll;
    }

    .dream-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .dream-card {
        padding: 28px 24px;
    }

    .price-box {
        padding: 48px 32px;
    }

    .price-amount {
        font-size: 4rem;
    }

    .partners-logos {
        flex-direction: column;
        gap: 24px;
    }

    .partner-logo {
        width: 100%;
        max-width: 300px;
    }

    .partner-logo img {
        max-width: 280px;
    }

    body {
        padding-bottom: 80px;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .dream-hero-image {
        height: 320px;
        margin: 32px 0 40px;
        background: 
            linear-gradient(180deg, rgba(11, 15, 26, 0.03) 0%, rgba(20, 25, 35, 0.05) 100%),
            radial-gradient(circle at center, rgba(230, 180, 80, 0.02) 0%, rgba(11, 15, 26, 0.03) 100%),
            url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?w=1400&q=80') center/cover no-repeat;
    }
    
    .dream-hero-image::after {
        opacity: 0.3;
    }
    
    .solution-visual {
        height: 280px;
        margin: 32px 0;
        background: 
            linear-gradient(180deg, rgba(11, 15, 26, 0.05) 0%, rgba(20, 25, 35, 0.08) 100%),
            radial-gradient(circle at center, rgba(230, 180, 80, 0.02) 0%, rgba(11, 15, 26, 0.05) 100%),
            url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80') center/cover no-repeat;
    }
    
    .solution-visual::after {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 16px 32px;
        font-size: 1.0625rem;
        width: 100%;
        max-width: 320px;
    }

    .section-card {
        padding: 40px 24px;
    }

    .price-box {
        padding: 40px 24px;
    }
}

/* Trusted Partners Section */
.partners-section {
    background: var(--bg-section-b);
    text-align: center;
    position: relative;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin: 48px auto;
    max-width: 800px;
    flex-wrap: wrap;
}

.partner-logo {
    background: #F7F8FA;
    padding: 7px 11px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.partner-logo img {
    max-width: 260px;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
}

.security-note {
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-note::before {
    content: '';
    width: 16px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") no-repeat center;
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--bg-section-a);
    position: relative;
}

.disclaimer-box {
    background: var(--bg-card);
    padding: 40px 44px;
    border-radius: 20px;
    border: 1px solid var(--border);
    max-width: 880px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.disclaimer-box p {
    color: var(--gray-mid);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--gray-mid);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Immersive Visual Break Section */
.visual-break {
    height: 60vh;
    width: 100%;
    padding: 0;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(11, 15, 26, 0.18) 0%, rgba(20, 25, 35, 0.25) 100%),
        radial-gradient(ellipse at center, rgba(230, 180, 80, 0.05) 0%, rgba(11, 15, 26, 0.15) 100%),
        url('images/europe.jpg') center/cover no-repeat;
}

@media (min-width: 1024px) {
    .visual-break {
        background-attachment: fixed;
    }
}

.visual-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.5) 0%, transparent 10%, transparent 90%, rgba(11, 15, 26, 0.5) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .visual-break {
        height: 40vh;
        background: 
            linear-gradient(180deg, rgba(11, 15, 26, 0.05) 0%, rgba(20, 25, 35, 0.08) 100%),
            radial-gradient(ellipse at center, rgba(230, 180, 80, 0.02) 0%, rgba(11, 15, 26, 0.05) 100%),
            url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    .visual-break::before {
        background: linear-gradient(180deg, rgba(11, 15, 26, 0.2) 0%, transparent 15%, transparent 85%, rgba(11, 15, 26, 0.2) 100%);
    }
}

/* Europe Highlights Strip */
.europe-strip {
    padding: 60px 24px;
    background: var(--bg-section-a);
    overflow: hidden;
}

.europe-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.europe-image {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(231, 183, 95, 0.1);
}

/* Main large image - takes up left side */
.europe-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Smaller supporting images */
.europe-small:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.europe-small:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.europe-small:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.europe-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.05) 0%, rgba(11, 15, 26, 0.12) 100%);
    transition: all 0.4s ease;
}

.europe-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(231, 183, 95, 0.3),
        0 0 20px rgba(231, 183, 95, 0.15);
}

.europe-image:hover::after {
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.02) 0%, rgba(11, 15, 26, 0.08) 100%);
}

@media (max-width: 768px) {
    .europe-strip {
        padding: 40px 20px;
    }
    
    .europe-images {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .europe-image {
        height: 240px;
        border-radius: 12px;
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(231, 183, 95, 0.08);
    }
    
    .europe-main {
        height: 320px;
    }
    
    .europe-image::after {
        background: linear-gradient(180deg, rgba(11, 15, 26, 0.02) 0%, rgba(11, 15, 26, 0.05) 100%);
    }
    
    .europe-image:hover {
        transform: none;
    }
}

/* Success Visual Moment */
.success-visual {
    height: 65vh;
    width: 100%;
    padding: 0;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(11, 15, 26, 0.15) 0%, rgba(20, 25, 35, 0.22) 100%),
        radial-gradient(circle at 60% 40%, rgba(230, 180, 80, 0.08) 0%, rgba(11, 15, 26, 0.12) 100%),
        url('https://images.unsplash.com/photo-1522199755839-a2bacb67c546?w=1920&q=80') center/cover no-repeat;
}

@media (min-width: 1024px) {
    .success-visual {
        background-attachment: fixed;
    }
}

.success-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.45) 0%, transparent 12%, transparent 88%, rgba(11, 15, 26, 0.45) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .success-visual {
        height: 45vh;
        background: 
            linear-gradient(180deg, rgba(11, 15, 26, 0.05) 0%, rgba(20, 25, 35, 0.08) 100%),
            radial-gradient(circle at 60% 40%, rgba(230, 180, 80, 0.03) 0%, rgba(11, 15, 26, 0.05) 100%),
            url('https://images.unsplash.com/photo-1522199755839-a2bacb67c546?w=1920&q=80') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    .success-visual::before {
        background: linear-gradient(180deg, rgba(11, 15, 26, 0.15) 0%, transparent 18%, transparent 82%, rgba(11, 15, 26, 0.15) 100%);
    }
}

@media (max-width: 768px) {
    .highlight {
        white-space: normal;
    }
}