/* ==========================================================================
   EU EES 2026 Schengen Entry Landing Page Styles (Zoom.com Modern SaaS Aesthetic)
   Uses Aerogreet Design Tokens, Typography & Official Lucide Icons System
   ========================================================================== */

.ees-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--night-sky, #232F47);
    background-color: #F8FAFC;
    overflow-x: hidden;
    line-height: 1.6;
}

.ees-page * {
    box-sizing: border-box;
}

/* The theme reset applies `font: inherit` and its own colour to every element,
   so <strong> in body copy came out neither bold nor in the paragraph colour.
   The EES EU keyword relies on it, so it is restored here. */
.ees-page strong,
.ees-page b {
    font-weight: 700;
    color: inherit;
}

/* ==========================================================================
   CRITICAL: Strict SVG Icon Reset to Prevent Theme Black-Fill Collision
   ========================================================================== */
.ees-page svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: all 0.2s ease;
    /* The theme sets svg { width: inherit; height: inherit }, so an icon takes the
       size of whatever box holds it and its 24-unit stroke scales up with it. That
       is where the oversized, heavy icons came from. Size is set here instead. */
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
    flex-shrink: 0;
}

/* One scale for the whole page: 14px inline with small text, 16px in buttons and
   list rows, 20px standalone, 24px inside a tinted icon tile. */
.ees-section-badge svg,
.ees-cta-badge svg,
.ees-guide-card-link svg,
.ees-guide-pill svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.ees-btn svg,
.ees-trust-item svg,
.ees-criteria-head svg,
.ees-gateway-card svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.guide-icon svg,
.ees-floating-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.ees-why-icon svg,
.ees-guide-card-icon svg,
.ees-frame-icon-wrap svg,
.ees-notice-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.75;
}

.ees-page svg path,
.ees-page svg circle,
.ees-page svg rect,
.ees-page svg line,
.ees-page svg polyline,
.ees-page svg polygon {
    fill: none !important;
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: none !important;
}

/* Base Container & Section Spacing */
.ees-section {
    padding: clamp(48px, 6vw, 96px) 0;
    position: relative;
}

.ees-section--alt {
    background-color: #FFFFFF;
}

.ees-section-header {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
}

.ees-section-header--left {
    text-align: left;
    margin: 0 0 clamp(28px, 4vw, 40px);
}

.ees-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(55, 155, 251, 0.08);
    border: 1px solid rgba(55, 155, 251, 0.25);
    color: var(--light-blue, #379BFB);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ees-section-badge svg {
    stroke: currentColor !important;
    flex-shrink: 0;
}

.ees-section-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--light-blue, #379BFB);
    box-shadow: 0 0 0 0 rgba(55, 155, 251, 0.7);
    animation: ees-pulse 2s infinite;
}

/* The hero badge carries a full sentence, so it drops the shouty caps and the
   wide tracking a short eyebrow can afford. */
.ees-section-badge--sentence {
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    padding: 7px 16px;
    line-height: 1.4;
    text-align: left;
}

.ees-section-badge--green {
    background: rgba(69, 178, 107, 0.1);
    border-color: rgba(69, 178, 107, 0.3);
    color: var(--green, #45B26B);
}

.ees-section-badge--green svg {
    stroke: var(--green, #45B26B) !important;
}

.ees-section-badge--green .pulse-dot {
    background-color: var(--green, #45B26B);
    box-shadow: 0 0 0 0 rgba(69, 178, 107, 0.7);
}

@keyframes ees-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(55, 155, 251, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(55, 155, 251, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(55, 155, 251, 0);
    }
}

.ees-title-main {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--night-sky, #232F47);
    margin-bottom: 20px;
}

.ees-title-main mark {
    background: transparent;
    color: var(--light-blue, #379BFB);
}

.ees-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--night-sky, #232F47);
    margin-bottom: 16px;
}

.ees-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2.2vw, 19px);
    color: #5A6A85;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.ees-section-header--left .ees-section-subtitle {
    margin: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ees-hero {
    padding: clamp(16px, 2vw, 24px) 0 clamp(48px, 7vw, 100px);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    isolation: isolate;
}

/* Full-bleed glow. It used to be capped at 1400px and centred, so on a wide
   monitor the tint stopped mid-screen and left a visible seam. */
.ees-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(80% 70% at 78% 18%, rgba(55, 155, 251, 0.10) 0%, rgba(55, 155, 251, 0) 62%),
                radial-gradient(70% 80% at 8% 82%, rgba(35, 47, 71, 0.05) 0%, rgba(35, 47, 71, 0) 58%);
    pointer-events: none;
    z-index: -1;
}

/* Breadcrumbs sit on the hero gradient. The theme gives section.breadcrumbs its
   own vertical margins, which cut a white band across the top of the page. */
.ees-breadcrumbs {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(20px, 3vw, 36px);
}

/* AIOSEO renders the trail, the theme leaves it unstyled here. */
.ees-breadcrumbs .aioseo-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #7A879E;
}

.ees-breadcrumbs .aioseo-breadcrumb a {
    color: #5A6A85 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.ees-breadcrumbs .aioseo-breadcrumb a:hover {
    color: var(--light-blue, #379BFB) !important;
}

.ees-breadcrumbs .aioseo-breadcrumb-separator {
    color: #B4BECD;
}

/* The page title is a full marketing sentence, so the last crumb is cut instead
   of wrapping the row onto two lines. */
.ees-breadcrumbs .aioseo-breadcrumb:last-child {
    display: block;
    max-width: min(60vw, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #98A3B4;
}

.ees-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.ees-hero-content {
    display: flex;
    flex-direction: column;
    /* Column flex stretched the badge into a full-width bar on wide screens. */
    align-items: flex-start;
}

.ees-hero-content > * {
    width: 100%;
}

.ees-hero-content > .ees-section-badge {
    width: auto;
    max-width: 100%;
}

.ees-hero-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: #4A5568;
    line-height: 1.68;
    margin-bottom: 16px;
}

.ees-hero-sublead {
    font-size: 15px;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Slimmer note: the hero carries a heading, a tagline, two paragraphs, two
   buttons and a trust row, so this one stops shouting. */
.ees-guide-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--light-grey-2, #E6E8EC);
    margin-bottom: 24px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5A6A85;
    transition: all 0.25s ease;
    text-decoration: none;
}

/* The pill itself is no longer a link, only the guide title inside it is,
   so the whole card no longer lifts on hover. */
.ees-guide-pill:hover {
    border-color: var(--light-grey-2, #E6E8EC);
}

.ees-guide-pill strong,
.ees-guide-pill-link {
    color: var(--light-blue, #379BFB) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

/* Inline, not inline-flex: on a phone the anchor wraps onto two lines and the
   arrow has to follow the last word instead of parking at the right edge. */
.ees-guide-pill-link {
    display: inline;
}

.ees-guide-pill-link svg {
    vertical-align: -2px;
    margin-left: 4px;
}

.ees-guide-pill-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ees-guide-pill .guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(55, 155, 251, 0.12);
    color: var(--light-blue, #379BFB);
    flex-shrink: 0;
}

.ees-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 36px;
}

.ees-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    border: 2px solid transparent;
}

.ees-btn--primary {
    background-color: var(--light-blue, #379BFB);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(55, 155, 251, 0.35);
}

.ees-btn--primary:hover {
    background-color: #2488E8;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(55, 155, 251, 0.45);
}

.ees-btn--secondary {
    background-color: #FFFFFF;
    color: var(--night-sky, #232F47) !important;
    border: 2px solid var(--light-grey-2, #E6E8EC);
    box-shadow: 0 2px 8px rgba(35, 47, 71, 0.04);
}

.ees-btn--secondary:hover {
    border-color: var(--night-sky, #232F47);
    color: var(--night-sky, #232F47) !important;
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(35, 47, 71, 0.08);
}

.ees-btn--dark {
    background-color: #FFFFFF;
    color: var(--night-sky, #232F47) !important;
    font-weight: 700;
}

.ees-btn--dark:hover {
    background-color: #F0F4FA;
    color: var(--night-sky, #232F47) !important;
    transform: translateY(-2px);
}

.ees-btn--dark-outline {
    background-color: transparent;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.ees-btn--dark-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.ees-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor !important;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.ees-btn:hover svg {
    transform: translateX(3px);
}

.ees-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 3vw, 28px);
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(230, 232, 236, 0.8);
}

.ees-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #5A6A85;
}

.ees-trust-item svg {
    stroke: var(--green, #45B26B) !important;
    flex-shrink: 0;
}

/* Hero Frame Mockup */
.ees-hero-visual {
    position: relative;
}

.ees-mockup-frame {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    box-shadow: 0 20px 48px -12px rgba(35, 47, 71, 0.12),
                0 4px 16px rgba(35, 47, 71, 0.04);
    overflow: hidden;
    position: relative;
}

.ees-mockup-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--light-grey-2, #E6E8EC);
}

.ees-mockup-dots {
    display: flex;
    gap: 6px;
}

/* Balances the dots on the left so the address stays optically centred. */
.ees-mockup-bar-spacer {
    width: 40px;
    flex-shrink: 0;
}

.ees-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E2E8F0;
}

.ees-mockup-dot:nth-child(1) { background-color: #FEB2B2; }
.ees-mockup-dot:nth-child(2) { background-color: #FEEBC8; }
.ees-mockup-dot:nth-child(3) { background-color: #C6F6D5; }

.ees-mockup-label {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
}

.ees-mockup-body {
    padding: 16px;
    background: #FAFCFE;
}

/* Equal inset from the three edges it touches and equal padding inside, so the
   card sits square in the mockup instead of drifting off-centre. */
.ees-mockup-floating-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(230, 232, 236, 0.9);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(35, 47, 71, 0.12);
    z-index: 2;
}

.ees-floating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Light tile, same family as the other icon tiles on the page. */
.ees-floating-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(55, 155, 251, 0.12);
    color: var(--light-blue, #379BFB);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ees-floating-icon svg {
    stroke: var(--light-blue, #379BFB) !important;
}

.ees-floating-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
}

.ees-floating-desc {
    font-size: 11.5px;
    color: #64748B;
}

.ees-floating-status {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--green, #45B26B);
    background: rgba(69, 178, 107, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ees-floating-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green, #45B26B);
}

/* ==========================================================================
   Image Placeholder Frames
   ========================================================================== */
.ees-image-frame {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #F0F4FA 0%, #E2EAF5 100%);
    border: 1.5px dashed #B8CBE3;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ees-image-frame:hover {
    border-color: var(--light-blue, #379BFB);
    background: linear-gradient(135deg, #EAF2FC 0%, #DCE8F7 100%);
}

.ees-image-frame--16-9 {
    aspect-ratio: 16 / 9;
}

.ees-image-frame--4-3 {
    aspect-ratio: 4 / 3;
}

.ees-image-frame--3-2 {
    aspect-ratio: 3 / 2;
}

.ees-image-frame--banner {
    aspect-ratio: 21 / 9;
    min-height: 240px;
}

/* Fills the space left over in a bento column instead of keeping a fixed ratio. */
.ees-image-frame--fill {
    flex: 1 1 0;
    min-height: 210px;
}

.ees-frame-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--light-blue, #379BFB);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(55, 155, 251, 0.15);
    margin-bottom: 12px;
}

.ees-frame-icon-wrap svg {
    stroke: var(--light-blue, #379BFB) !important;
}

.ees-frame-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
    margin-bottom: 4px;
}

.ees-frame-hint {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 12px;
    color: #64748B;
}

/* When a real image is placed inside an ees-image-frame */
.ees-image-frame:has(img) {
    border: 1px solid var(--light-grey-2, #E6E8EC);
    background: #F1F5F9;
    padding: 0;
}

.ees-image-frame:has(img):hover {
    border-color: rgba(55, 155, 251, 0.4);
    box-shadow: 0 12px 30px -6px rgba(35, 47, 71, 0.1);
}

.ees-image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.35s ease;
}

.ees-image-frame:hover img {
    transform: scale(1.02);
}

/* ==========================================================================
   Section 2: Why EES Changes the Airport Experience (Zoom Cards Grid)
   ========================================================================== */
.ees-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(32px, 5vw, 56px);
}

.ees-why-card {
    background: #FFFFFF;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 16px rgba(35, 47, 71, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ees-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(55, 155, 251, 0.5);
    box-shadow: 0 16px 36px -8px rgba(35, 47, 71, 0.1),
                0 0 0 1px rgba(55, 155, 251, 0.2);
}

.ees-why-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ees-why-num {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--light-blue, #379BFB);
    background: rgba(55, 155, 251, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
}

.ees-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0F4FA;
    color: var(--night-sky, #232F47);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.ees-why-icon svg {
    stroke: var(--night-sky, #232F47) !important;
}

.ees-why-card:hover .ees-why-icon {
    background: var(--light-blue, #379BFB);
    transform: scale(1.05);
}

.ees-why-card:hover .ees-why-icon svg {
    stroke: #FFFFFF !important;
}

.ees-why-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--night-sky, #232F47);
    line-height: 1.35;
    margin-bottom: 12px;
}

.ees-why-text {
    font-size: 14.5px;
    color: #5A6A85;
    line-height: 1.65;
    flex-grow: 1;
}

.ees-why-banner-frame {
    margin-top: 16px;
}

/* ==========================================================================
   Section 3: Pre-Travel Checklist (Crisp, High-End Interactive Checkboxes)
   ========================================================================== */
.ees-checklist-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: stretch;
}

/* A real <ol>: the step numbers come from a counter, so the markup is an ordered
   list and the numbering cannot drift out of order in the copy. */
.ees-checklist-items {
    display: flex;
    flex-direction: column;
    /* Whichever bento column is taller, the other spreads its rows so both end
       on the same line. */
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    counter-reset: ees-step;
    margin: 0;
    padding: 0;
}

.ees-checklist-items > li {
    counter-increment: ees-step;
}

.ees-checklist-items > li::marker {
    content: '';
}

.ees-checklist-title::before {
    content: counter(ees-step) '. ';
}

.ees-checklist-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(35, 47, 71, 0.03);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    user-select: none;
    position: relative;
}

.ees-checklist-card:hover {
    border-color: #94A3B8;
    background: #FAFCFE;
    box-shadow: 0 6px 18px rgba(35, 47, 71, 0.06);
    transform: translateY(-2px);
}

.ees-checklist-card:hover .ees-checkbox {
    border-color: var(--light-blue, #379BFB);
    background: rgba(55, 155, 251, 0.04);
}

/* Pristine, Modern Checked State */
.ees-checklist-card.is-checked {
    background: #F7FCF9;
    border-color: rgba(69, 178, 107, 0.55);
    box-shadow: 0 4px 14px rgba(69, 178, 107, 0.1);
}

.ees-checklist-card.is-checked .ees-checkbox {
    background: var(--green, #45B26B);
    border-color: var(--green, #45B26B);
    box-shadow: 0 2px 8px rgba(69, 178, 107, 0.35);
}

.ees-checklist-card.is-checked .ees-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.ees-checklist-card.is-checked .ees-checklist-title {
    color: #1E293B;
}

/* Checkbox Box Component */
.ees-checkbox {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.ees-checkbox svg {
    width: 14px;
    height: 14px;
    stroke: #FFFFFF !important;
    fill: none !important;
    stroke-width: 3 !important;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ees-checklist-content {
    flex-grow: 1;
}

.ees-checklist-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
    line-height: 1.4;
    margin-bottom: 6px;
}

.ees-checklist-desc {
    font-size: 14px;
    color: #5A6A85;
    line-height: 1.6;
}

/* Criteria Callout inside Step 2 */
.ees-criteria-box {
    margin-top: 14px;
    padding: 16px 20px;
    background: #F0F5FD;
    border-left: 3.5px solid var(--light-blue, #379BFB);
    border-radius: 0 10px 10px 0;
    font-size: 13.5px;
    color: var(--night-sky, #232F47);
}

/* Same block, now a tile in the aside column. */
.ees-criteria-box--aside {
    margin-top: 0;
    padding: 20px 22px;
    border: 1px solid rgba(55, 155, 251, 0.18);
    border-left: 3.5px solid var(--light-blue, #379BFB);
    border-radius: 0 16px 16px 0;
    flex-shrink: 0;
}

.ees-criteria-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
}

.ees-criteria-head svg {
    stroke: var(--light-blue, #379BFB) !important;
    flex-shrink: 0;
}

/* Two criteria always sit side by side as two cards, down to the narrowest
   phone, where they stack because 150px per card is the floor. */
.ees-criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    align-items: stretch;
}

.ees-criteria-item {
    background: #FFFFFF;
    border: 1px solid #DCE6F5;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ees-criteria-item-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--light-blue, #379BFB);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ees-criteria-item-text {
    font-size: 13px;
    color: #334155;
    line-height: 1.45;
}

/* Checklist Aside / Guide Card */
/* Bento column: guide card and criteria keep their natural height, the photo
   between them takes whatever is left so both columns end on the same line. */
.ees-checklist-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.ees-guide-card {
    background: #FFFFFF;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px -5px rgba(35, 47, 71, 0.06);
}

.ees-guide-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(55, 155, 251, 0.12);
    color: var(--light-blue, #379BFB);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ees-guide-card-icon svg {
    stroke: var(--light-blue, #379BFB) !important;
}

.ees-guide-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
    margin-bottom: 10px;
}

.ees-guide-card-text {
    font-size: 14px;
    color: #5A6A85;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* The card ends on this paragraph now that the duplicate button is gone. */
.ees-guide-card-text--last {
    margin-bottom: 0;
}

/* Links inside body copy on this page. The theme reset paints every link #333
   with no underline, which reads as plain bold text. */
.ees-inline-link {
    color: var(--light-blue, #379BFB) !important;
    font-weight: 600;
    text-decoration: none;
}

.ees-inline-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ees-guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light-blue, #379BFB);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.ees-guide-card-link svg {
    stroke: var(--light-blue, #379BFB) !important;
}

.ees-guide-card-link:hover {
    gap: 12px;
    color: #2488E8;
}

/* ==========================================================================
   Section 4: Major European Gateways (Directory Grid)
   ========================================================================== */
.ees-gateways-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-bottom: clamp(32px, 4vw, 48px);
}

.ees-gateway-card {
    background: #FFFFFF;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 14px rgba(35, 47, 71, 0.03);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ees-gateway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-blue, #379BFB);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ees-gateway-card:hover {
    transform: translateY(-6px);
    border-color: rgba(55, 155, 251, 0.4);
    box-shadow: 0 14px 30px -6px rgba(35, 47, 71, 0.1);
}

.ees-gateway-card:hover::before {
    opacity: 1;
}

.ees-gateway-iata {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--night-sky, #232F47);
    background: #F0F4FA;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
}

.ees-gateway-card:hover .ees-gateway-iata {
    background: var(--light-blue, #379BFB);
    color: #FFFFFF;
}

.ees-gateway-city {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
    margin-bottom: 2px;
}

.ees-gateway-country {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 14px;
}

.ees-gateway-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green, #45B26B);
    background: rgba(69, 178, 107, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: auto;
}

.ees-gateway-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green, #45B26B);
}

.ees-network-banner {
    background: #FFFFFF;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    border-radius: 16px;
    padding: clamp(24px, 3.5vw, 36px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(35, 47, 71, 0.04);
}

.ees-network-info {
    max-width: 680px;
}

.ees-network-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--night-sky, #232F47);
    margin-bottom: 6px;
}

.ees-network-desc {
    font-size: 14px;
    color: #5A6A85;
    line-height: 1.55;
}

/* ==========================================================================
   Section 5: Ready When You Are (Zoom High-Impact CTA Banner)
   ========================================================================== */
.ees-cta-box {
    background: linear-gradient(135deg, var(--night-sky, #232F47) 0%, #151E30 100%);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px -12px rgba(25, 36, 56, 0.4);
    text-align: center;
}

.ees-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(55, 155, 251, 0.22) 0%, transparent 60%),
                radial-gradient(circle at 80% 60%, rgba(69, 178, 107, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.ees-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.ees-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #E2EAF5;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.ees-cta-badge svg {
    stroke: #E2EAF5 !important;
}

.ees-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.ees-cta-text {
    font-size: clamp(15px, 2vw, 17px);
    color: #CBD5E1;
    line-height: 1.68;
    margin-bottom: 14px;
}

.ees-cta-reassurance {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #93C5FD;
    margin-bottom: 36px;
}

.ees-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Section 6: Operational & Legal Notice
   ========================================================================== */
.ees-notice-box {
    background: #FFFFFF;
    border: 1px solid var(--light-grey-2, #E6E8EC);
    border-left: 4px solid #8294A0;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(35, 47, 71, 0.02);
}

.ees-notice-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #F1F5F9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ees-notice-icon svg {
    stroke: #475569 !important;
}

.ees-notice-content {
    flex-grow: 1;
}

.ees-notice-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--night-sky, #232F47);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ees-notice-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .ees-gateways-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ees-checklist-layout {
        grid-template-columns: 1fr;
    }

    /* Stacked: the photo goes back to a fixed ratio, nothing left to even out. */
    .ees-image-frame--fill {
        flex: 0 0 auto;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 880px) {
    .ees-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ees-why-grid {
        grid-template-columns: 1fr;
    }
    
    .ees-gateways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ees-network-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ees-btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .ees-btn {
        width: 100%;
    }
    
    .ees-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ees-cta-buttons .ees-btn {
        width: 100%;
    }
}

@media (max-width: 540px) {
    /* Two gateway cards per row on phones, per the spec. */
    .ees-gateways-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ees-gateway-card {
        padding: 18px 12px;
    }

    .ees-checklist-card {
        padding: 16px;
        gap: 14px;
    }
    
    .ees-notice-box {
        flex-direction: column;
        padding: 18px;
    }
}
