/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #E31837;
    --red-dark: #B71430;
    --red-light: #FEF2F4;
    --dark: #0F1923;
    --dark-2: #1A2730;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --success: #059669;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: 0.2s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight { color: var(--red); }
.text-success { color: var(--success); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    gap: 8px;
}

.btn--sm { padding: 10px 24px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--full { width: 100%; }

.btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(227,24,55,0.4);
}
.btn--primary:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 25px rgba(227,24,55,0.5);
    transform: translateY(-2px);
}

.btn--white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn--white:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    background: var(--white);
}
.btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 900;
}
.logo__icon { width: 28px; height: 28px; object-fit: contain; }
.logo__highlight { color: var(--red); }

.nav { display: flex; gap: 20px; align-items: center; }
.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav__link:hover { color: var(--red); }
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }

.header__cta { display: block; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,0.92) 0%, rgba(15,25,35,0.75) 50%, rgba(227,24,55,0.3) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -1px;
}
.hero__title .highlight {
    background: linear-gradient(135deg, #FF4D6A, #E31837);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.hero__stat { text-align: center; flex: 1; }
.hero__stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}
.hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== GALLERY ===== */
.gallery {
    margin-top: -1px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.gallery__item {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item:hover img {
    transform: scale(1.08);
}
.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* ===== TRUST ===== */
.trust {
    padding: 100px 0;
    background: var(--gray-50);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.trust__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.trust__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.trust__card-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-light);
    border-radius: var(--radius);
    color: var(--red);
    margin-bottom: 20px;
}

.trust__card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.trust__card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}
.trust__card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    transition: color var(--transition);
}
.trust__card-link:hover { color: var(--red-dark); }
.trust__card-link--muted {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 13px;
}

.trust__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}
.trust__guarantee-icon {
    flex-shrink: 0;
    color: var(--red);
    margin-top: 2px;
}

/* ===== WHY CANADA ===== */
.why-canada {
    padding: 100px 0;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.why__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--red-light);
}

.why__card-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    opacity: 0.2;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.why__card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.why__card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}
.why__card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: color var(--transition);
}
.why__card-link:hover { color: var(--red-dark); }
.why__card-disclaimer {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ===== FACTS ===== */
.facts {
    padding: 100px 0;
    background: var(--gray-50);
}

.facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.facts__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.facts__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.facts__card-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -1px;
}
.facts__card-label {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.facts__card-source {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    padding: 6px 14px;
    background: var(--red-light);
    border-radius: 100px;
    transition: all var(--transition);
}
.facts__card-source:hover {
    background: var(--red);
    color: var(--white);
}

.facts__sources {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    border: 1px solid var(--gray-200);
}
.facts__sources h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.facts__sources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.facts__sources-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
}
.facts__sources-list a:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

/* ===== SALARY ===== */
.salary {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.salary .section-tag { background: rgba(227,24,55,0.15); }
.salary .section-title { color: var(--white); }
.salary .section-subtitle { color: var(--gray-400); }

.salary__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

.salary__highlight {
    text-align: center;
    padding: 56px;
    background: linear-gradient(135deg, var(--dark-2) 0%, rgba(227,24,55,0.08) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
}
.salary__amount {
    font-size: 100px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -3px;
}
.salary__per {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 16px;
}
.salary__source {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}
.salary__source a {
    color: var(--red);
    font-weight: 500;
}
.salary__source a:hover { text-decoration: underline; }

.salary__breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.salary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--dark-2);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition);
}
.salary__row:hover { border-color: rgba(255,255,255,0.15); }
.salary__row--accent {
    background: var(--red);
    border-color: var(--red);
}
.salary__row-label {
    font-size: 15px;
    color: var(--gray-400);
}
.salary__row--accent .salary__row-label { color: rgba(255,255,255,0.8); }
.salary__row-value {
    font-size: 24px;
    font-weight: 800;
}
.salary__row-value span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    margin-left: 4px;
}
.salary__row--accent .salary__row-value span { color: rgba(255,255,255,0.7); }

.salary__note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}
.salary__note-icon { flex-shrink: 0; color: var(--gray-500); }
.salary__note strong { color: var(--white); }

/* ===== INCLUDED ===== */
.included {
    padding: 100px 0;
    background: var(--white);
}

.included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.included__card {
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--gray-200);
}
.included__card--yes {
    background: linear-gradient(135deg, #F0FDF4, var(--white));
    border-color: #BBF7D0;
}
.included__card--no {
    background: linear-gradient(135deg, var(--red-light), var(--white));
    border-color: #FECDD3;
}

.included__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.included__card-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.included__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.included__list li {
    font-size: 15px;
    color: var(--gray-700);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}
.included__card--yes .included__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.included__card--no .included__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E31837' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.included__legal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(227,24,55,0.05);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
}
.included__legal svg { flex-shrink: 0; color: var(--red); margin-top: 1px; }

/* ===== JOBS ===== */
.jobs {
    padding: 100px 0;
    background: var(--gray-50);
}

.jobs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.jobs__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.jobs__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.jobs__card-img {
    height: 180px;
    overflow: hidden;
}
.jobs__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.jobs__card:hover .jobs__card-img img {
    transform: scale(1.08);
}
.jobs__card-body {
    padding: 24px;
}
.jobs__card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.jobs__card-text {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.jobs__conditions {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--gray-200);
}
.jobs__conditions-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}
.jobs__conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.jobs__condition {
    text-align: center;
}
.jobs__condition-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-light);
    border-radius: 50%;
    color: var(--red);
    margin: 0 auto 14px;
}
.jobs__condition strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}
.jobs__condition p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== COMPARISON ===== */
.comparison {
    padding: 100px 0;
    background: var(--white);
}

.comparison__selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}
.comparison__btn {
    padding: 10px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}
.comparison__btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.comparison__btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    font-weight: 600;
}

.comparison__card {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.comparison__card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.comparison__col-header {
    padding: 20px 24px;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
}
.comparison__col-canada {
    background: var(--red);
    color: var(--white);
}
.comparison__col-other {
    background: var(--gray-100);
    color: var(--gray-900);
}

.comparison__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}
.comparison__row:last-child {
    border-bottom: none;
}
.comparison__row-label {
    grid-column: 1 / -1;
    padding: 14px 24px 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}
.comparison__cell {
    padding: 4px 24px 14px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.comparison__cell--canada {
    background: var(--red-light);
    font-weight: 600;
    color: var(--gray-900);
}
.comparison__cell--other {
    color: var(--gray-600);
}
.comparison__cell .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot--green { background: #059669; }
.dot--yellow { background: #d97706; }
.dot--red { background: var(--red); }

/* Color-coded cell backgrounds */
.comparison__cell--green {
    background: rgba(5,150,105,0.08);
}
.comparison__cell--yellow {
    background: rgba(217,119,6,0.08);
}
.comparison__cell--red {
    background: rgba(227,24,55,0.06);
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: var(--gray-50);
}

.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gray-300));
}

.process__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}
.process__step:last-child { margin-bottom: 0; }

.process__step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(227,24,55,0.35);
}

.process__step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    flex: 1;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.process__step:hover .process__step-content {
    box-shadow: var(--shadow-lg);
}
.process__step-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.process__step-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== FOR WHOM ===== */
.for-whom {
    padding: 100px 0;
}

.for-whom__flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.for-whom__flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.for-whom__flag:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--red-light);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq__list {
    max-width: 740px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq__item:hover { box-shadow: var(--shadow); }
.faq__item--open { box-shadow: var(--shadow-lg); border-color: var(--red-light); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--gray-900);
    transition: color var(--transition);
}
.faq__question:hover { color: var(--red); }

.faq__arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--gray-400);
}
.faq__item--open .faq__arrow { transform: rotate(180deg); color: var(--red); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
    background: #0f1923;
}

.contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,35,0.95) 0%, rgba(15,25,35,0.85) 100%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact__title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact__text {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}
.contact__benefit svg { flex-shrink: 0; }

.contact__form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-2xl);
}

.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.form__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    transition: all var(--transition);
    color: var(--gray-900);
    background: var(--white);
}
.form__input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227,24,55,0.1);
}
.form__input::placeholder { color: var(--gray-400); }

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    font-family: inherit;
    line-height: 1.5;
}

.form__char-count {
    text-align: right;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}

.form__messengers { display: flex; gap: 12px; }
.form__messenger {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}
.form__messenger input { display: none; }
.form__messenger:has(input:checked) {
    border-color: var(--red);
    background: var(--red-light);
    color: var(--red);
}

.form__disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
}

.form--success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}
.form--success .form__success-icon { font-size: 64px; margin-bottom: 16px; }
.form--success .form__success-title { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.form--success .form__success-text { font-size: 15px; color: var(--gray-600); }

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 32px;
    background: var(--dark);
    color: var(--gray-400);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__company .logo { margin-bottom: 16px; }
.footer__company .logo__text { color: var(--white); }
.footer__company p { font-size: 13px; line-height: 1.8; }

.footer__links h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer__links a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--red); }

.footer__bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ===== CALCULATOR ===== */
.calculator {
    padding: 100px 0;
    background: var(--white);
}

.calculator__card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calculator__income {
    background: var(--dark);
    color: var(--white);
    padding: 36px;
    text-align: center;
}
.calculator__income-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.calculator__income-value {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
}
.calculator__income-value span {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-400);
}
.calculator__income-source {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

.calculator__expenses {
    padding: 24px 36px;
    background: var(--gray-50);
}
.calculator__expense {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
}
.calculator__expense:last-of-type {
    border-bottom: none;
}
.calculator__expense-name {
    color: var(--gray-700);
}
.calculator__expense-value {
    font-weight: 700;
    color: var(--red);
}
.calculator__expenses-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    margin-top: 4px;
    border-top: 2px solid var(--gray-300);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-700);
}

.calculator__result {
    background: var(--success);
    color: var(--white);
    padding: 32px 36px;
    text-align: center;
}
.calculator__result-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 8px;
}
.calculator__result-value {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -2px;
}
.calculator__result-value span {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
}
.calculator__result-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.calculator__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}
.calculator__disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gray-400);
}

/* ===== NATURE ===== */
.nature {
    padding: 100px 0;
    background: var(--gray-50);
}

.nature__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.nature__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.nature__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.nature__card-img {
    height: 200px;
    overflow: hidden;
}
.nature__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nature__card:hover .nature__card-img img {
    transform: scale(1.08);
}
.nature__card h3 {
    font-size: 17px;
    font-weight: 700;
    padding: 20px 24px 8px;
}
.nature__card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    padding: 0 24px 20px;
}

.nature__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nature__benefit {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.nature__benefit strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 6px;
}
.nature__benefit span {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== CASES ===== */
.cases {
    padding: 100px 0;
    background: var(--white);
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cases__card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.cases__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cases__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.cases__avatar {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}
.cases__name {
    font-size: 16px;
    font-weight: 700;
}
.cases__from {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 2px;
}

.cases__comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}
.cases__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 6px;
}
.cases__label--green {
    color: var(--success);
}
.cases__before p,
.cases__after p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}
.cases__after p {
    font-weight: 600;
    color: var(--success);
}
.cases__arrow {
    font-size: 20px;
    color: var(--gray-400);
    font-weight: 700;
}

.cases__timeline {
    font-size: 13px;
    color: var(--gray-500);
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
    font-weight: 500;
}

/* ===== DIASPORA ===== */
.diaspora {
    padding: 100px 0;
    background: var(--gray-50);
}

.diaspora__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.diaspora__item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.diaspora__item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.diaspora__icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.diaspora__item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.diaspora__item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.diaspora__bottom {
    text-align: center;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--red);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== TRANSPARENCY CTA ===== */
.transparency-cta {
    padding: 60px 0;
    background: var(--white);
}

.transparency-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}
.transparency-cta__text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.transparency-cta__text p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== TRANSPARENCY PAGE ===== */
.tp-hero {
    padding: 140px 0 60px;
    background: var(--dark);
    color: var(--white);
}
.tp-back {
    display: inline-block;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
    transition: color var(--transition);
}
.tp-back:hover {
    color: var(--white);
}
.tp-hero__title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.tp-hero__subtitle {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 700px;
}

.tp-content {
    padding: 80px 0;
    background: var(--gray-50);
}

.tp-items {
    max-width: 800px;
    margin: 0 auto;
}

.tp-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.tp-item__number {
    font-size: 14px;
    font-weight: 800;
    color: var(--red);
    background: var(--red-light);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.tp-item__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--gray-900);
}
.tp-item__body h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    margin-bottom: 12px;
}
.tp-item__body > p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}

.tp-item__proof {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}
.tp-item__proof:last-child {
    margin-bottom: 0;
}
.tp-item__proof h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tp-item__proof blockquote {
    font-size: 15px;
    font-style: italic;
    color: var(--gray-700);
    border-left: 3px solid var(--red);
    padding-left: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}
.tp-item__translation {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 19px;
}
.tp-item__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tp-item__links a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    transition: all var(--transition);
}
.tp-item__links a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.tp-item__list {
    margin: 12px 0;
    padding-left: 24px;
    list-style: disc;
}
.tp-item__list li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}
.tp-item__conclusion {
    margin-top: 20px;
    padding: 20px 24px;
    background: rgba(227,24,55,0.04);
    border-left: 3px solid var(--red);
    border-radius: 0 12px 12px 0;
}
.tp-item__conclusion p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}
.tp-item__conclusion .tp-item__list {
    margin-top: 8px;
}

.tp-cta {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--red);
}
.tp-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.tp-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== BODY SCROLL LOCK ===== */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===== MOBILE NAV ===== */
.nav--mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    display: none;
}
.nav--mobile.active { display: flex; }
.nav--mobile .nav__link {
    font-size: 20px;
    color: var(--gray-800);
}
.nav--mobile .nav__link:hover {
    color: var(--red);
}
.nav--mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}
.lang-switcher__btn {
    padding: 4px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lang-switcher__btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.lang-switcher__btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Language switcher in mobile menu */
.nav--mobile .lang-switcher {
    margin-left: 0;
    margin-top: 20px;
    gap: 8px;
}
.nav--mobile .lang-switcher__btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { max-width: 100%; }
    .hero__title { font-size: 44px; }
    .trust__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .facts__grid { grid-template-columns: repeat(2, 1fr); }
    .salary__main { grid-template-columns: 1fr; }
    .included__grid { grid-template-columns: 1fr; }
    .jobs__grid { grid-template-columns: repeat(2, 1fr); }
    .jobs__conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .contact__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item { height: 220px; }
    .nature__benefits { grid-template-columns: repeat(2, 1fr); }
    .diaspora__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header__cta { display: none; }
    .burger { display: flex; }

    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero__title { font-size: 34px; letter-spacing: -0.5px; }
    .hero__subtitle { font-size: 16px; }
    .hero__stats { flex-direction: column; gap: 16px; padding: 20px; }
    .hero__stat-divider { width: 40px; height: 1px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    .section-title { font-size: 30px; }
    .section-subtitle { font-size: 16px; }

    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item { height: 160px; }

    .why__grid { grid-template-columns: 1fr; }
    .facts__grid { grid-template-columns: 1fr; }
    .facts__sources-list { flex-direction: column; }
    .salary__highlight { padding: 32px 24px; }
    .salary__amount { font-size: 72px; }
    .jobs__grid { grid-template-columns: 1fr; }
    .jobs__conditions { padding: 32px 20px; }
    .jobs__conditions-grid { grid-template-columns: 1fr; gap: 20px; }

    .comparison__selector { gap: 8px; }
    .comparison__btn { padding: 8px 14px; font-size: 13px; }
    .comparison__col-header { padding: 14px 16px; font-size: 15px; }
    .comparison__row-label { padding: 12px 16px 2px; font-size: 11px; }
    .comparison__cell { padding: 2px 16px 12px; font-size: 14px; }

    .contact__form { padding: 28px 20px; }
    .contact__title { font-size: 30px; }

    .trust__guarantee { flex-direction: column; text-align: center; align-items: center; }

    .calculator__income { padding: 28px 20px; }
    .calculator__income-value { font-size: 36px; }
    .calculator__expenses { padding: 20px; }
    .calculator__result { padding: 24px 20px; }
    .calculator__result-value { font-size: 32px; }

    .nature__grid { grid-template-columns: 1fr; }
    .nature__benefits { grid-template-columns: 1fr 1fr; gap: 12px; }

    .cases__grid { grid-template-columns: 1fr; }
    .cases__comparison { grid-template-columns: 1fr; gap: 8px; }
    .cases__arrow { display: none; }

    .diaspora__grid { grid-template-columns: 1fr; }
    .diaspora__bottom { padding: 20px; font-size: 15px; }

    .transparency-cta__inner { flex-direction: column; text-align: center; padding: 28px 20px; }

    .tp-hero { padding: 120px 0 48px; }
    .tp-hero__title { font-size: 30px; }
    .tp-hero__subtitle { font-size: 16px; }
    .tp-item { padding: 24px; }
    .tp-item__title { font-size: 18px; }
    .tp-item__proof { padding: 16px; }
    .tp-item__links { flex-direction: column; }
    .tp-cta { padding: 32px 20px; }
    .tp-cta h2 { font-size: 22px; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner--visible {
    transform: translateY(0);
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie-banner__text {
    flex: 1;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-banner__btn--accept {
    background: var(--red);
    color: #fff;
}
.cookie-banner__btn--accept:hover {
    background: #c41630;
    transform: translateY(-1px);
}
.cookie-banner__btn--decline {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner__btn--decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 16px;
    }
    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-banner__btn {
        width: 100%;
    }
}

/* ===== LANGUAGE SELECTION POPUP ===== */
.lang-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lang-popup-overlay--visible {
    opacity: 1;
}
.lang-popup {
    background: #fff;
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lang-popup-overlay--visible .lang-popup {
    transform: scale(1) translateY(0);
}
.lang-popup__header {
    margin-bottom: 32px;
}
.lang-popup__flag {
    margin-bottom: 16px;
}
.lang-popup__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}
.lang-popup__subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}
.lang-popup__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lang-popup__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.lang-popup__btn:hover {
    border-color: var(--red);
    background: #fef2f2;
    transform: translateX(4px);
}
.lang-popup__btn-flag {
    font-size: 28px;
    line-height: 1;
}
.lang-popup__btn-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 480px) {
    .lang-popup {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .lang-popup__title {
        font-size: 20px;
    }
    .lang-popup__btn {
        padding: 14px 20px;
    }
    .lang-popup__btn-label {
        font-size: 16px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* Fade in from left */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Comparison row slide — only when initially loaded, not for dynamic rows */

/* Floating animation for hero badge */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero__badge {
    animation: float 3s ease-in-out infinite;
}

/* Shine effect for buttons */
.btn--primary {
    position: relative;
    overflow: hidden;
}
.btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
    0%, 70%, 100% { left: -60%; }
    80% { left: 130%; }
}

/* Calculator result pulse */
@keyframes resultPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(5,150,105,0); }
}
.calculator__result.animated {
    animation: resultPulse 2s ease-in-out 1;
}

/* Process step connector animation */
.process__step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process__step:hover .process__step-number {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(227,24,55,0.5);
}

/* Country button bounce on select */
@keyframes btnBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}
.comparison__btn.active {
    animation: btnBounce 0.3s ease;
}

/* Diaspora icon hover wiggle */
@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}
.diaspora__item:hover .diaspora__icon {
    animation: wiggle 0.4s ease;
}

/* Cases card arrow pulse */
@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}
.cases__arrow {
    animation: arrowSlide 1.5s ease-in-out infinite;
}

/* Transparency CTA gradient border animation */
.transparency-cta__inner {
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.transparency-cta__inner:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Trust guarantee subtle glow */
.trust__guarantee {
    transition: box-shadow 0.3s ease;
}
.trust__guarantee:hover {
    box-shadow: 0 0 0 4px rgba(227,24,55,0.1), var(--shadow-lg);
}

/* Smooth number count-up (visual class for JS) */
.count-up {
    display: inline-block;
}
