/* ===================================
   Work in Europe Page - NEON BLUE THEME
   Complete CSS with unique class names
   =================================== */

.europe-main {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1425 100%);
    min-height: 100vh;
}

/* ===================================
   Banner (Hero)
   =================================== */

.europe-banner {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.europe-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-right: -12rem;
    margin-top: -12rem;
    z-index: 0;
}

.europe-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-left: -12rem;
    margin-bottom: -12rem;
    z-index: 0;
}

.europe-banner__container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.europe-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.europe-banner__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideDownFade 0.8s ease-out;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.europe-banner__subtitle {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 48rem;
}

/* Metrics Block */
.europe-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(1rem);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    width: 100%;
}

.europe-metrics__item {
    text-align: center;
}

.europe-metrics__number {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.europe-metrics__text {
    color: #cffafe;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Button Groups */
.europe-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.europe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.europe-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.europe-btn--gradient {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: white;
}

.europe-btn--gradient:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.europe-btn--outline {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.5);
    color: #22d3ee;
}

.europe-btn--outline:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
    color: #06b6d4;
}

/* ===================================
   Problem Section
   =================================== */

.europe-problem {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.europe-problem__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.europe-problem__heading {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.europe-comparison__column {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    animation: riseUp 0.8s ease-out;
}

.europe-comparison__column--danger {
    animation-delay: 0s;
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3) 0%, rgba(59, 18, 18, 0.2) 100%);
}

.europe-comparison__column--success {
    animation-delay: 0.1s;
    border-color: rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, rgba(3, 102, 120, 0.2) 0%, rgba(15, 118, 110, 0.1) 100%);
}

.europe-comparison__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.europe-comparison__column--danger .europe-comparison__title {
    color: #fca5a5;
}

.europe-comparison__column--success .europe-comparison__title {
    color: #22d3ee;
}

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

.europe-comparison__list li {
    color: #cffafe;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    line-height: 1.5;
}

.europe-comparison__list li:last-child {
    border-bottom: none;
}

.europe-comparison__column--danger .europe-comparison__list li {
    color: #fee2e2;
}

/* ===================================
   Service Tiers Section
   =================================== */

.europe-tiers {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.europe-tiers__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.europe-tiers__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.europe-tiers__subtitle {
    text-align: center;
    color: #cffafe;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.europe-tier {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: riseUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.europe-tier:nth-child(1) { animation-delay: 0s; }
.europe-tier:nth-child(2) { animation-delay: 0.1s; }
.europe-tier:nth-child(3) { animation-delay: 0.2s; }
.europe-tier:nth-child(4) { animation-delay: 0.3s; }
.europe-tier:nth-child(5) { animation-delay: 0.4s; }

.europe-tier:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-8px);
}

.europe-tier--featured {
    border-color: rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
    scale: 1.05;
}

.europe-tier--featured:hover {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
}

.europe-tier--guarantee {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.europe-tier__badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.europe-tier__badge--guarantee {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.europe-tier__header {
    margin-bottom: 1.5rem;
}

.europe-tier__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.europe-tier__label {
    color: #cffafe;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.europe-tier__pricing {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.europe-tier__price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.europe-tier__frequency {
    display: block;
    color: #cffafe;
    font-size: 0.875rem;
}

.europe-tier__description {
    margin-bottom: 1.5rem;
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
}

.europe-tier__description p {
    margin: 0;
}

.europe-tier__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.europe-tier__features li {
    color: #cffafe;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    line-height: 1.5;
}

.europe-tier__features li:before {
    content: '✓ ';
    color: #22d3ee;
    font-weight: 700;
    margin-right: 0.5rem;
}

.europe-tier__note {
    background: rgba(34, 211, 238, 0.05);
    border-left: 3px solid rgba(34, 211, 238, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.europe-tier__note strong {
    color: #cffafe;
    display: block;
    margin-bottom: 0.5rem;
}

.europe-tier__note p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.europe-tier__cta {
    display: block;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #22d3ee;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.europe-tier__cta:hover {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border-color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.europe-tier__cta--primary {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border-color: #06b6d4;
}

.europe-tier__cta--primary:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.europe-tier__cta--guarantee {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
}

.europe-tier__cta--guarantee:hover {
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    color: white;
    border-color: #a855f7;
}

.europe-pricing-notes {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 3rem;
}

/* ===================================
   Components Section
   =================================== */

.europe-components {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.europe-components__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.europe-components__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.europe-component {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: riseUp 0.8s ease-out;
}

.europe-component:nth-child(odd) { animation-delay: 0s; }
.europe-component:nth-child(even) { animation-delay: 0.1s; }

.europe-component:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.europe-component__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 1rem;
}

.europe-component__icon svg {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.europe-component__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
}

.europe-component__desc {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Legal Section
   =================================== */

.europe-legal {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.europe-legal__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.europe-legal__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.europe-legal__box {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    animation: riseUp 0.8s ease-out;
}

.europe-legal__box--do {
    animation-delay: 0s;
    border-color: rgba(34, 211, 238, 0.3);
}

.europe-legal__box--dont {
    animation-delay: 0.1s;
    border-color: rgba(239, 68, 68, 0.2);
}

.europe-legal__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.europe-legal__box--do .europe-legal__heading {
    color: #22d3ee;
}

.europe-legal__box--dont .europe-legal__heading {
    color: #fca5a5;
}

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

.europe-legal__list li {
    color: #cffafe;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.europe-legal__list li:last-child {
    border-bottom: none;
}

.europe-legal__disclaimer {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */

.europe-testimonials {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.europe-testimonials__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.europe-testimonials__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.europe-testimonial {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    animation: riseUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.europe-testimonial:nth-child(1) { animation-delay: 0s; }
.europe-testimonial:nth-child(2) { animation-delay: 0.1s; }
.europe-testimonial:nth-child(3) { animation-delay: 0.2s; }
.europe-testimonial:nth-child(4) { animation-delay: 0.3s; }

.europe-testimonial:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.europe-testimonial__rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.europe-testimonial__text {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.europe-testimonial__author {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */

.europe-faq {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.europe-faq__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.europe-faq__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.europe-faq__item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    animation: riseUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.europe-faq__item:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.europe-faq__question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    cursor: pointer;
}

.europe-faq__answer {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Closing Section
   =================================== */

.europe-closing {
    padding: 8rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.europe-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.05), rgba(59, 130, 246, 0.05), rgba(34, 211, 238, 0.05));
}

.europe-closing__container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.europe-closing__headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.europe-closing__subtext {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
}

.europe-closing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* ===================================
   Animations
   =================================== */

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

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

/* ===================================
   Media Queries
   =================================== */

@media (min-width: 640px) {
    .europe-btn-group {
        flex-direction: row;
        gap: 1rem;
    }

    .europe-closing-actions {
        flex-direction: row;
        gap: 1.5rem;
    }

    .europe-closing-actions .europe-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .europe-banner {
        padding: 4rem 1rem;
    }

    .europe-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .europe-tiers__grid {
        grid-template-columns: 1fr;
    }

    .europe-tier--featured {
        scale: 1;
    }

    .europe-comparison__column {
        padding: 2rem 1.5rem;
    }

    .europe-closing-actions {
        flex-direction: column;
    }

    section {
        padding: 4rem 1rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
