/* =========================
   Basic Styles
========================= */

:root {
    --green-dark: #103D32;
    --green: #176B52;
    --green-light: #5F8F7C;
    --green-pale: #E8F1EC;

    --background: #F4F1E9;
    --surface: #FFFFFF;

    --text: #18221E;
    --text-soft: #65716B;

    --border: #D8DED9;
    --border-soft: #E8ECE9;

    --shadow-card: 0 20px 55px rgba(16, 61, 50, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--background);
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

.breadcrumbs {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 0;
    font-size: 0.875rem;
    color: var(--text-muted, #5f6b66);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #98a29e;
}

.breadcrumbs a {
    color: inherit;
    text-underline-offset: 3px;
}

.country-resources {
    padding: 64px 0;
    background: #ffffff;
}

.country-resources h2 {
    max-width: 720px;
}

.country-resources-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 36px;
    margin: 28px 0 0;
}

.country-resources-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.country-resources-links a::after {
    content: "→";
    flex: 0 0 auto;
    color: var(--green-dark);
    font-size: 20px;
    transition: transform 0.2s ease;
}

.country-resources-links a:hover,
.country-resources-links a:focus-visible {
    color: var(--green);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.country-resources-links a:hover::after,
.country-resources-links a:focus-visible::after {
    transform: translateX(3px);
}

main:has(> .country-resources) + .site-footer {
    margin-top: 0;
}

@media (max-width: 760px) {
    .breadcrumbs {
        width: min(100% - 28px, 1180px);
    }

    .country-resources-links {
        grid-template-columns: 1fr;
    }
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

.container {
    width: min(100% - 40px, 1160px);
    margin-inline: auto;
}

.numeric {
    font-family: "DM Mono", monospace;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================
   Navbar
========================= */

.navbar {
    position: relative;
    z-index: 10;
    background-color: var(--green-dark);
}

.navbar-container {
    width: min(100% - 40px, 1160px);
    min-height: 72px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
}

.logo {
    justify-self: start;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

.logo-mark {
    display: none;
}

.main-navigation {
    justify-self: end;
    align-self: stretch;

    display: flex;
    align-items: center;
    gap: 34px;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        color 160ms ease,
        opacity 160ms ease;
}

.main-navigation a:hover {
    color: white;
}

.navbar-spacer {
    display: none;
}

/* =========================
   Navbar dropdown
========================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0;
    height: 100%;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: color 160ms ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger {
    color: white;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);

    min-width: 170px;
    padding: 4px 8px 8px;

    border: 0;
    border-radius: 0 0 12px 12px;

    background: var(--green-dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 150ms ease;
}

.nav-dropdown-menu-wide {
    width: min(640px, calc(100vw - 32px));
    padding: 20px 20px 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.transfer-menu-group {
    min-width: 0;
}

.transfer-menu-heading {
    display: block;
    margin: 0 12px 8px;
    color: rgba(255, 255, 255, 0.58);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.nav-dropdown-menu a {
    display: block;

    padding: 10px 12px;
    border-radius: 8px;

    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.nav-dropdown-menu .nav-dropdown-featured {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-dropdown-menu-wide .transfer-menu-group-yearly a {
    color: white;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

/* =========================
   Hero
========================= */

.hero {
    padding: 28px 0 20px;
    background-color: var(--background);
    text-align: center;
    position: relative;
}

.hero .container {
    position: relative;
    display: block;
}

.hero h1 {
    max-width: 790px;
    margin: 0 auto 18px;
    padding-top: 28px;

    color: var(--green-dark);
    font-family: "Manrope", serif;
    font-size: clamp(36px, 4.8vw, 54px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.hero-first-line,
.hero-second-line {
    display: block;
}

.hero-first-line {
    color: var(--green-dark);
}

.hero-second-line {
    color: var(--green);
}

.hero-description {
    max-width: 590px;
    margin: 0 auto 18px;

    color: var(--green-dark);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
}
.hero-accent {
    color: var(--green);
}

.hero .supported-destinations {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: -80px;
    left: auto;
    transform: none;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;

    width: max-content;
    margin: 0;
}

.destination-chip {
    display: flex;
    flex-direction: center;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    padding: 0;
    border: 0;
    background: transparent;

    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.destination-name {
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);

    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    transition:
        opacity 160ms ease,
        transform 160ms ease,
        visibility 160ms ease;
}

.destination-chip:hover .destination-name,
.destination-chip:focus-visible .destination-name {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.destination-flag {
    width: 22px;
    height: 22px;
}

.destination-chip {
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.destination-chip:hover {
    text-decoration: none;
    opacity: 0.75;
}

/* =========================
   Calculator section
========================= */

.comparison-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.calculator-card {
    width: min(100%, 480px);
    margin-inline: auto;
    padding: 22px 30px;

    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.transfer-field {
    width: 100%;
}

.transfer-field label {
    display: block;
    margin-bottom: 9px;

    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.currency-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
    align-items: stretch;
}

.calculator-label-with-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.calculator-label-with-info > label {
    margin: 0;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f4a3c;
}

.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-icon {
    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #7b8983;
    border-radius: 50%;

    color: #66736d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    cursor: help;
}

.info-tooltip-content {
    position: absolute;
    z-index: 20;

    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);

    width: 270px;
    padding: 12px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;
    color: var(--green-dark);

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;

    box-shadow: 0 8px 24px rgba(20, 48, 39, 0.10);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 150ms ease;
}

.info-tooltip-content strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-tooltip:hover .info-tooltip-content,
.info-tooltip:focus .info-tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-second-option {
    margin-top: 10px;
}

.amount-input {
    width: 100%;
    height: 66px;
    padding: 0 18px;

    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 14px 0 0 14px;
    outline: none;

    background-color: white;
    color: var(--green-dark);

    font-size: 29px;
    font-weight: 500;

    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.amount-input:focus {
    position: relative;
    z-index: 1;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.10);
}

.amount-input[readonly] {
    background-color: #FAFBF8;
    color: #3E4D46;
}

.currency-selector {
    height: 66px;
    padding: 0 12px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--border);
    border-radius: 0 14px 14px 0;
    background-color: #fbfcfb;
}

#calculator-currency {
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
}

.flag {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;

    border: 1px solid rgba(18, 60, 47, 0.10);
    border-radius: 50%;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}

.flag-se {
    background-image:
        linear-gradient(
            90deg,
            transparent 0 30%,
            #f6c500 30% 43%,
            transparent 43% 100%
        ),
        linear-gradient(
            transparent 0 43%,
            #f6c500 43% 57%,
            transparent 57% 100%
        ),
        linear-gradient(#1769aa, #1769aa);
}

.flag-ae {
    background-image:
        linear-gradient(
            90deg,
            #ff0000 0 25%,
            transparent 25% 100%
        ),
        linear-gradient(
            #009a49 0 33%,
            #ffffff 33% 66%,
            #000000 66% 100%
        );
}

.flag-in {
    background-image: url("https://flagcdn.com/w80/in.png");
}

.flag-pk {
    background-image: url("https://flagcdn.com/w80/pk.png");
}

.flag-ph {
    background-image: url("https://flagcdn.com/w80/ph.png");
}

.flag-bd {
    background-image: url("https://flagcdn.com/w80/bd.png");
}

.flag-eg {
    background-image: url("https://flagcdn.com/w80/eg.png");
}

.flag-np {
    background-image: url("https://flagcdn.com/w80/np.png");
}

.flag-lk {
    background-image: url("https://flagcdn.com/w80/lk.png");
}

.currency-selector select {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 24px 0 0;

    border: 0;
    outline: 0;
    background-color: transparent;

    color: var(--green-dark);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.transfer-divider {
    position: relative;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-divider::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 50%;
    height: 1px;
    background-color: var(--border-soft);
}

.transfer-divider span {
    position: relative;
    z-index: 1;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;
    background-color: white;
    color: var(--green-dark);

    font-size: 15px;
    font-weight: 800;
}
.comparison-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;

    margin-top: 18px;

    color: #68645E;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

/* =========================
   Results
========================= */

.results {
    padding: 48px 0 96px;
}

.results-heading {
    margin-bottom: 24px;
}

.results h2 {
    margin: 0 0 10px;

    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.results-intro {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
}

.results-intro a {
    margin-left: 6px;

    color: var(--green-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.results-intro a:hover {
    text-decoration-thickness: 2px;
}

.results-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.results-updated {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.65;
}

.table-card {
    overflow: hidden;

    background-color: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(18, 60, 47, 0.07);
}

.table-scroll {
    max-height: 520px;
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 930px;
    border-collapse: collapse;
}

thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #EEF2EF;
}

th {
    padding: 16px 20px;

    color: #68736d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

td {
    padding: 21px 20px;

    border-top: 1px solid var(--border-soft);
    color: #435049;
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap;
}

/* Recipient gets column */

td:nth-child(2) strong {
    font-size: 18px;
    font-weight: 900;
    color: var(--green-dark);
}

tbody tr.best-option td:nth-child(2) strong {
    font-size: 21px;
}

.results th:nth-child(2) {
    color: var(--green-dark);
    font-weight: 800;
}

.results td:nth-child(2) {
    color: var(--green-dark);
    font-weight: 800;
}

tbody tr {
    transition: background-color 150ms ease;
}

tbody tr:hover {
    background-color: #fafcfb;
}

tbody tr.best-option {
    background-color: var(--green-pale);
}

tbody tr.best-option:hover {
    background-color: #e7f0e9;
}

.provider-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.provider-copy {
    min-width: 0;
    display: block;
}

.provider-heading-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.provider-name strong {
    color: var(--green-dark);
    font-size: 15px;
}

.customer-price-badge {
    padding: 4px 7px;
    border: 1px solid rgba(23, 107, 82, 0.32);
    border-radius: 999px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.provider-initials {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 9px;
    background-color: #f6f8f7;

    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;

    border-radius: 999px;
    background-color: var(--green-dark);
    color: white;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.provider-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 10px;

    border: 1px solid #0f4d3a;
    border-radius: 10px;

    color: #ffffff;
    background: #0f4d3a;

    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.provider-link:hover {
    background: #0b4232;
}

.provider-link:focus-visible {
    outline: 3px solid rgba(15, 77, 58, 0.2);
    outline-offset: 2px;
}

.provider-link:active {
    transform: translateY(1px);
}

.recipient-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.recipient-difference {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #68736f;
    white-space: nowrap;
}

.best-option .recipient-difference {
    color: #2f705b;
    font-weight: 600;
}

.ranking-explanation {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 18px;
    font-size: 0.9rem;
    color: #5f6864;
}

.ranking-explanation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid #0d4f40;
    border-radius: 50%;
    color: #0d4f40;
    font-size: 0.75rem;
    font-weight: 700;
}

.ranking-explanation strong {
    color: #0d4f40;
    white-space: nowrap;
}

.ranking-explanation a {
    margin-left: auto;
    color: #0d4f40;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Live homepage comparison composer */
.modern-composer {
    width: min(100%, 620px);
    padding: 0;
    display: block;
    overflow: visible;
    border: 1px solid rgba(18, 63, 53, 0.15);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(18, 63, 53, 0.08);
}

.modern-route-section,
.modern-amount-section {
    padding-inline: 26px;
    display: grid;
    align-items: center;
}

.modern-route-section {
    padding-top: 23px;
    padding-bottom: 10px;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
}

.modern-route-place {
    min-width: 0;
}

.modern-destination-place {
    position: relative;
}

.modern-field-label {
    display: block;
    margin: 0;
    color: #66756d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
}

.modern-country-value {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.modern-country-value strong,
.modern-country-value small {
    display: block;
}

.modern-country-value strong {
    color: var(--green-dark);
    font-size: 16px;
}

.modern-country-value small {
    margin-top: 2px;
    color: #66756d;
    font-size: 10px;
}

.modern-destination-dropdown {
    position: relative;
    margin-top: 2px;
}

.modern-destination-dropdown summary {
    margin: 0 -8px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
}

.modern-destination-dropdown summary::-webkit-details-marker {
    display: none;
}

.modern-destination-dropdown summary:hover,
.modern-destination-dropdown summary:focus-visible,
.modern-destination-dropdown[open] summary {
    background: #f2f5f2;
    outline: none;
}

.modern-destination-dropdown summary .modern-country-value {
    margin-top: 0;
}

.modern-destination-chevron {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 17px;
    line-height: 1;
    transition: transform 160ms ease;
}

.modern-destination-dropdown[open] .modern-destination-chevron {
    transform: rotate(180deg);
}

.modern-destination-menu {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    right: -8px;
    width: min(270px, calc(100vw - 40px));
    padding: 7px;
    border: 1px solid #d9e0db;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(18, 63, 53, 0.16);
}

.modern-destination-option {
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 9px;
    color: var(--green-dark);
    text-decoration: none;
}

.modern-destination-option:hover,
.modern-destination-option:focus-visible,
.modern-destination-option[aria-current="page"],
.modern-destination-option.is-selected {
    background: #eef3ef;
    outline: none;
}

.modern-destination-option .flag {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.modern-destination-option strong,
.modern-destination-option small {
    display: block;
}

.modern-destination-option strong {
    font-size: 14px;
}

.modern-destination-option small {
    margin-top: 1px;
    color: #66756d;
    font-size: 10px;
}

.modern-destination-place select[hidden] {
    display: none;
}

.modern-route-arrow {
    width: 32px;
    height: 32px;
    margin-top: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eeeee8;
    color: var(--green);
}

.modern-amount-section {
    padding-top: 8px;
    padding-bottom: 15px;
    grid-template-columns: 1fr;
    gap: 13px;
}

.modern-mode-area {
    padding-bottom: 9px;
}

.modern-composer .calculation-mode {
    min-height: auto;
    margin-top: 9px;
    padding: 4px;
    gap: 4px;
    border: 0;
    border-radius: 12px;
    background: #eeeee8;
}

.modern-composer .calculation-mode-button {
    min-height: 43px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
}

.modern-composer .calculation-mode-button.active {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(18, 63, 53, 0.08);
}

.modern-amount-area > label {
    margin: 0;
}

.modern-amount-value {
    margin-top: 7px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--green-dark);
}

.modern-amount-value .amount-input {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0 0 7px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--green-dark);
    box-shadow: none;
    font-family: "DM Mono", monospace;
    font-size: clamp(36px, 5.5vw, 48px);
    font-weight: 500;
    letter-spacing: -0.06em;
}

.modern-amount-value .amount-input:focus {
    border: 0;
    box-shadow: none;
}

.modern-amount-value > span:last-child {
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
}

.modern-hidden-flag,
.modern-composer .modern-amount-value .flag {
    display: none;
}

.modern-amount-area > small {
    display: block;
    margin-top: 8px;
    color: #66756d;
    font-size: 9px;
}

.modern-composer-footer {
    padding: 10px 26px 14px;
}

.modern-composer .compare-providers-button {
    width: 100%;
    min-height: 48px;
    margin: 0;
    border-radius: 11px;
}

.modern-composer .compare-providers-button span {
    margin-left: 10px;
}

@media (max-width: 680px) {
    .modern-route-section {
        padding: 23px 20px 10px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .modern-route-arrow {
        margin-top: 0;
        transform: rotate(90deg);
    }

    .modern-amount-section {
        padding: 8px 20px 15px;
    }

    .modern-composer-footer {
        padding: 10px 20px 14px;
    }
}

/* Result interpretation */
.provider-coverage-section {
    padding: 72px 0;
    background: #ffffff;
}

.qatar-rates-section {
    padding: 72px 0;
    background: var(--green-pale);
}

.qatar-rates-heading {
    max-width: 780px;
}

.qatar-rates-heading h2 {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.qatar-rates-heading > p:last-child {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.qatar-rates-table-wrap {
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.qatar-rates-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: left;
}

.qatar-rates-table th,
.qatar-rates-table td {
    padding: 17px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.qatar-rates-table th {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.qatar-rates-table td {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.qatar-rates-table td:first-child,
.qatar-rates-table .qatar-rate-value {
    color: var(--green-dark);
    font-weight: 800;
}

.qatar-rates-table a {
    color: var(--green-dark);
    text-underline-offset: 3px;
}

.qatar-rates-table small {
    display: block;
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.45;
}

.qatar-rates-note {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.qatar-rates-note p {
    margin: 5px 0 0;
}

#qatar-rates-status {
    color: var(--green-dark);
    font-weight: 700;
}

@media (max-width: 760px) {
    .qatar-rates-section {
        padding: 56px 0;
    }

    .qatar-rates-table,
    .qatar-rates-table tbody,
    .qatar-rates-table tr,
    .qatar-rates-table td {
        display: block;
        width: 100%;
    }

    .qatar-rates-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .qatar-rates-table tr {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .qatar-rates-table td {
        display: grid;
        grid-template-columns: minmax(118px, 0.45fr) minmax(0, 1fr);
        gap: 12px;
        padding: 5px 0;
        border: 0;
    }

    .qatar-rates-table td::before {
        content: attr(data-label);
        grid-column: 1;
        grid-row: 1 / span 2;
        color: var(--text-soft);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .qatar-rates-table td > * {
        grid-column: 2;
    }
}

.provider-coverage-heading {
    max-width: 780px;
}

.provider-coverage-heading h2 {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.provider-coverage-heading > p:last-child {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.provider-coverage-table-wrap {
    margin-top: 34px;
    max-width: 100%;
    overflow: visible;
    border-top: 1px solid var(--border);
}

.provider-coverage-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: left;
}

.provider-coverage-table th,
.provider-coverage-table td {
    padding: 17px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.provider-coverage-table th:nth-child(1) { width: 17%; }
.provider-coverage-table th:nth-child(2) { width: 14%; }
.provider-coverage-table th:nth-child(3) { width: 19%; }
.provider-coverage-table th:nth-child(4) { width: 23%; }
.provider-coverage-table th:nth-child(5) { width: 27%; }

.provider-coverage-table th {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.provider-coverage-table td {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.provider-coverage-table td:first-child {
    color: var(--green-dark);
    font-weight: 800;
}

.provider-coverage-table a {
    color: var(--green-dark);
    text-underline-offset: 3px;
}

.provider-coverage-note {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.provider-coverage-note p {
    margin: 0;
}

.provider-coverage-note p:first-child {
    max-width: 720px;
}

.corridor-availability-notice {
    max-width: 820px;
    margin-top: 34px;
    padding: 24px 26px;
    border-left: 4px solid var(--green-dark);
    background: var(--green-pale);
}

.corridor-availability-notice strong {
    display: block;
    margin-bottom: 7px;
    color: var(--green-dark);
    font-size: 17px;
}

.corridor-availability-notice p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.saudi-corridor-content {
    padding-top: 70px;
}

.saudi-corridor-content .corridor-details {
    max-width: 780px;
}

.saudi-corridor-content .corridor-details > div {
    margin-top: 46px;
}

.saudi-corridor-content .corridor-details ul {
    color: var(--text-soft);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .provider-coverage-section {
        padding: 56px 0;
    }

    .provider-coverage-table-wrap {
        overflow: visible;
        border-top: 0;
    }

    .provider-coverage-table,
    .provider-coverage-table tbody,
    .provider-coverage-table tr,
    .provider-coverage-table td {
        display: block;
        width: 100%;
    }

    .provider-coverage-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .provider-coverage-table tr {
        padding: 18px 0;
        border-top: 1px solid var(--border);
    }

    .provider-coverage-table td {
        display: grid;
        grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr);
        gap: 14px;
        padding: 5px 0;
        border: 0;
    }

    .provider-coverage-table td::before {
        content: attr(data-label);
        color: var(--text-soft);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .provider-coverage-note {
        flex-direction: column;
        gap: 8px;
    }
}

.results-interpretation {
    padding: 18px 0 76px;
    background: #f5f1e8;
}

.homepage-results-interpretation {
    padding-bottom: 38px;
}

.interpretation-copy {
    max-width: 920px;
    padding-left: 30px;
    border-left: 3px solid var(--green-dark);
}

.interpretation-copy > .section-label {
    margin: 0 0 12px;
}

.interpretation-copy > h2 {
    max-width: 700px;
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.interpretation-summary {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--green-dark);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.45;
}

.interpretation-summary strong {
    font-family: "DM Mono", monospace;
    font-weight: 500;
}

.interpretation-explanation,
.interpretation-check {
    max-width: 690px;
    margin: 14px 0 0;
    color: #596b63;
    line-height: 1.7;
}

.interpretation-check {
    font-size: 13px;
}

.yearly-impact-gateway {
    max-width: 920px;
    margin-top: 54px;
    padding: 30px;
    border: 1px solid rgba(18, 63, 53, 0.12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(18, 63, 53, 0.06);
}

.results-interpretation + .corridor-content {
    padding-top: 46px;
}

.yearly-impact-gateway .section-label {
    margin: 0 0 12px;
}

.yearly-impact-gateway h2 {
    max-width: 680px;
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(21px, 2.7vw, 29px);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.yearly-impact-gateway h2 span {
    font-family: "DM Mono", monospace;
    font-weight: 500;
}

.yearly-impact-gateway p:not(.section-label) {
    max-width: 620px;
    margin: 12px 0 0;
    color: #596b63;
    line-height: 1.65;
}

.yearly-impact-gateway > a {
    margin-top: 24px;
    padding-bottom: 4px;
    display: inline-block;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

@media (max-width: 700px) {
    .results-interpretation {
        padding: 8px 0 58px;
    }

    .homepage-results-interpretation {
        padding-bottom: 30px;
    }

    .interpretation-copy {
        padding-left: 20px;
    }

    .yearly-impact-gateway {
        margin-top: 42px;
        padding: 24px;
    }

}

@media (max-width: 700px) {
    .ranking-explanation {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ranking-explanation strong {
        white-space: normal;
    }

    .ranking-explanation a {
        margin-left: 0;
    }
}

/* =========================
   Recipient details sections
========================= */

.recipient-details li {
    margin-bottom: 0.7rem;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.recipient-details li:last-child {
    margin-bottom: 0;
}

/* =========================
   Temporary sections
========================= */

.placeholder-section {
    padding: 70px 0;
    background-color: white;
    border-top: 1px solid var(--border-soft);
}

.placeholder-section h2 {
    margin: 0;
    color: var(--green-dark);
}


/* =========================
   Mobile
========================= */

@media (max-width: 760px) {
    .container,
    .navbar-container {
        width: min(100% - 28px, 1160px);
    }

    .navbar-container {
        min-height: 68px;
        grid-template-columns: 1fr auto;
    }

    .main-navigation {
        justify-self: end;
        gap: 16px;
    }

    .main-navigation a {
        font-size: 12px;
    }

    .navbar-spacer {
        display: none;
    }

    .hero {
        padding: 62px 0 150px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 55px);
        line-height: 1.02;
    }

    .hero-description {
        font-size: 16px;
    }

.supported-destinations {
    gap: 12px;
}

}

/* =========================
   First online transfer guide
========================= */

.first-transfer-hero .guide-hero-content {
    max-width: 790px;
}

.first-transfer-narrow {
    max-width: 980px;
}

.first-transfer-before {
    padding: 70px 0 78px;
    background: white;
}

.first-transfer-before h2,
.first-transfer-journey h2,
.first-transfer-cost h2,
.first-transfer-safety h2 {
    max-width: 720px;
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.first-transfer-lead {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.first-transfer-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.first-transfer-details h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 18px;
}

.first-transfer-details p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.first-transfer-journey {
    padding: 82px 0;
    background: #f5f1e8;
}

.first-transfer-steps {
    margin-top: 48px;
    border-top: 1px solid var(--border);
}

.first-transfer-steps article {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.first-transfer-step-heading {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.first-transfer-step-heading > span {
    flex: 0 0 58px;
    color: var(--green-light);
    font-family: "DM Mono", monospace;
    font-size: 28px;
    font-weight: 500;
}

.first-transfer-steps h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 20px;
}

.first-transfer-steps p {
    max-width: 690px;
    margin: 10px 0 0 82px;
    color: var(--text-soft);
    line-height: 1.7;
}

.first-transfer-cost {
    padding: 82px 0;
    background: white;
}

.first-transfer-cost-heading > p:last-child {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.first-transfer-cost-list {
    margin-top: 44px;
    border-top: 1px solid var(--border);
}

.first-transfer-cost-list > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.first-transfer-cost-list span {
    color: var(--green-dark);
    font-weight: 800;
}

.first-transfer-cost-list p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.first-transfer-cost-note {
    max-width: 720px;
    margin: 26px 0 0;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.first-transfer-example {
    max-width: 720px;
    margin-top: 34px;
    padding-left: 24px;
    border-left: 3px solid var(--green-dark);
}

.first-transfer-example h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 22px;
}

.first-transfer-example > p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.first-transfer-example dl {
    margin: 20px 0;
}

.first-transfer-example dl > div {
    display: grid;
    grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr);
    gap: 24px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.first-transfer-example dt {
    color: var(--text-soft);
}

.first-transfer-example dd {
    margin: 0;
    color: var(--green-dark);
    font-weight: 800;
}

.first-transfer-example .first-transfer-example-note {
    font-size: 14px;
}

.first-transfer-safety {
    padding: 76px 0;
    background: var(--green-dark);
}

.first-transfer-safety .section-label {
    color: #b8dbb7;
}

.first-transfer-safety h2 {
    color: white;
}

.first-transfer-safety > .container > p:not(.section-label) {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.first-transfer-safety ul {
    max-width: 760px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.first-transfer-safety li {
    position: relative;
    padding: 17px 0 17px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.first-transfer-safety li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #b8dbb7;
}

.first-transfer-next {
    padding: 80px 0 20px;
}

.first-transfer-next .guide-corridors {
    margin-top: 0;
}

.first-transfer-next-intro {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.first-transfer-next-intro + .corridor-other-grid {
    margin-top: 34px;
}

.first-transfer-faq {
    padding-top: 70px;
}

@media (max-width: 760px) {
    .first-transfer-before,
    .first-transfer-journey,
    .first-transfer-cost,
    .first-transfer-safety {
        padding: 58px 0;
    }

    .first-transfer-details {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 36px;
    }

    .first-transfer-step-heading {
        gap: 14px;
    }

    .first-transfer-step-heading > span {
        flex-basis: 42px;
        font-size: 22px;
    }

    .first-transfer-steps p {
        margin-left: 56px;
    }

    .first-transfer-cost-list > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .first-transfer-example dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .first-transfer-next {
        padding-top: 58px;
    }
}

@media (max-width: 760px) {

.destination-chip {
    font-size: 13px;
}

.destination-flag {
    width: 22px;
    height: 22px;
}

    .comparison-section {
        margin-top: -100px;
    }

    .calculator-card {
        padding: 22px;
        border-radius: 20px;
    }

    .currency-row {
        grid-template-columns: minmax(0, 1fr) 124px;
    }

    .amount-input {
        height: 62px;
        font-size: 24px;
    }

    .currency-selector {
        height: 62px;
    }

    .flag {
        width: 27px;
        height: 27px;
    }

    .results {
        padding-top: 60px;
    }
}

@media (max-width: 540px) {

    .navbar-container {
        display: flex;
        justify-content: center;
    }

    .logo {
        justify-self: center;
    }

    .main-navigation {
        display: none;
    }

    .hero {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .calculator-card {
        padding: 18px;
    }

    .currency-row {
        grid-template-columns: minmax(0, 1fr) 112px;
    }

    .amount-input {
        padding-inline: 13px;
        font-size: 21px;
    }

    .currency-selector {
        padding-inline: 9px;
        gap: 7px;
    }

    .currency-selector select {
        font-size: 14px;
    }

    .flag {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 600px) {
    .comparison-trust {
        padding: 0 20px;
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .hero .supported-destinations {
        position: static;
        transform: none;

        width: 100%;

        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 12px;

        margin: 0 0 28px;
    }

    .hero .destination-chip {
        font-size: 11px;
    }

    .hero .destination-flag {
        width: 17px;
        height: 17px;
    }
}

/* =========================
   Mobile card for results
========================= */

@media (max-width: 760px) {
    .table-card {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .table-scroll {
        max-height: none;
        overflow: visible;
    }

    table {
        min-width: 0;
        border-collapse: separate;
    }

    thead {
        display: none;
    }

    tbody {
        display: grid;
        gap: 16px;
    }

    tbody tr {
        display: block;
        overflow: hidden;

        background-color: white;
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(18, 60, 47, 0.07);
    }

    tbody tr.best-option {
        background-color: white;
        border-color: rgba(18, 60, 47, 0.28);
    }

    tbody tr:hover,
    tbody tr.best-option:hover {
        background-color: white;
    }

    td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        padding: 13px 18px;
        border-top: 1px solid var(--border-soft);
        white-space: normal;
        text-align: right;
    }

    td:first-child {
        padding-top: 18px;
        padding-bottom: 18px;
        border-top: 0;
    }

    td::before {
        content: attr(data-label);
        color: var(--text-soft);
        font-family: "Nunito", sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-align: left;
    }

    td:first-child::before,
    td:last-child::before {
        display: none;
    }

    .provider-name {
        width: 100%;
    }

    td:nth-child(2) {
        padding-top: 18px;
        padding-bottom: 18px;
        background-color: var(--green-pale);
    }

    td:nth-child(2)::before {
        color: var(--green-dark);
        font-weight: 800;
    }

    td:nth-child(2) strong,
    tbody tr.best-option td:nth-child(2) strong {
        color: var(--green-dark);
        font-size: 22px;
        font-weight: 900;
    }

    td:nth-child(2) .unavailable-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    }

    td:last-child {
        padding: 0;
        border-top: 0;
    }

    .provider-link {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;

        justify-content: center;

        background-color: var(--green-dark);
        color: white;
        text-decoration: none;
    }

    .provider-link:hover {
        background-color: var(--green);
        text-decoration: none;
    }
}

/* =========================
   Corridor content
========================= */

.guide-hero {
    padding: 82px 0 36px;
}

.guide-hero-content {
    max-width: 780px;
}

.guide-hero-content .section-label {
    margin-bottom: 16px;
}

.guide-hero-content h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--green-dark);
    font-size: clamp(42px, 6vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.guide-hero-content > p:not(.section-label):not(.guide-review-date) {
    max-width: 650px;
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.guide-hero-content .guide-review-date {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.guide-introduction {
    padding: 40px 0 18px;
    background: var(--background);
}

.guide-introduction .corridor-intro {
    padding-left: 24px;
    border-left: 3px solid var(--green-dark);
}

.guide-overview {
    padding: 28px 0 34px;
    background: var(--background);
}

.guide-option-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    max-width: 760px;
    margin-top: 0;
}

.guide-option-grid h2,
.guide-decision h2,
.guide-corridors h2 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.guide-option-grid p {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.guide-option-grid .recipient-details {
    margin: 18px 0;
}

.guide-option-grid .guide-provider-note {
    margin-bottom: 0;
    font-size: 14px;
}

.guide-decision {
    padding: 42px 0 24px;
}

.guide-decision-content {
    max-width: 760px;
}

.guide-decision-content > p {
    color: var(--text-soft);
    line-height: 1.7;
}

.guide-comparison-checklist {
    margin-top: 22px;
}

.guide-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 26px;
}

.guide-choice-grid h3 {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 17px;
    line-height: 1.4;
}

.guide-choice-grid .recipient-details {
    margin-bottom: 0;
}

.guide-corridors .corridor-other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-faq {
    padding-top: 72px;
}

.guide-faq .container {
    max-width: 920px;
}

/* Guide library */

.guide-library-hero {
    padding-bottom: 64px;
}

.guide-library-hero .guide-hero-content {
    max-width: 820px;
}

.guide-library-hero .guide-hero-content h1 {
    max-width: 800px;
    font-size: clamp(38px, 5vw, 56px);
}

.results {
    scroll-margin-top: 24px;
}

.guide-library {
    padding: 72px 0;
    background: white;
}

.guide-library-list {
    max-width: 920px;
    border-top: 1px solid var(--border);
}

.guide-library-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 38px 4px;
    border-bottom: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
}

.guide-library-item > div {
    max-width: 720px;
}

.guide-library-item .section-label {
    margin-bottom: 12px;
}

.guide-library-item h2 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.guide-library-item p:last-child {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.guide-library-item > span {
    color: var(--green-dark);
    font-size: 26px;
    transition: transform 160ms ease;
}

.guide-library-item:hover h2 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.guide-library-item:hover > span {
    transform: translateX(5px);
}

.guide-library-compare {
    padding: 76px 0 20px;
}

.guide-library-compare-inner {
    max-width: 920px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
}

.guide-library-compare-inner h2 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.guide-library-compare-inner p:not(.section-label) {
    max-width: 650px;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.guide-library-compare-inner > a {
    display: inline-block;
    margin-top: 24px;
    color: var(--green-dark);
    font-weight: 800;
    text-underline-offset: 5px;
}

@media (max-width: 760px) {
    .guide-library-hero {
        padding-bottom: 48px;
    }

    .guide-library {
        padding: 52px 0;
    }

    .guide-library-item {
        gap: 20px;
        padding: 30px 2px;
    }

    .guide-library-compare {
        padding-top: 52px;
    }

    .guide-library-compare-inner {
        padding: 26px;
    }
}

@media (max-width: 760px) {
    .guide-hero {
        padding: 56px 0 30px;
    }

    .guide-hero-content h1 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .guide-introduction {
        padding: 36px 0 16px;
    }

    .guide-introduction .corridor-intro {
        padding-left: 18px;
    }

    .guide-overview {
        padding: 26px 0 28px;
    }

    .guide-decision {
        padding-top: 36px;
    }

    .guide-option-grid,
    .guide-choice-grid,
    .guide-corridors .corridor-other-grid {
        grid-template-columns: 1fr;
    }

    .guide-option-grid {
        gap: 36px;
        margin-top: 0;
    }

    .guide-choice-grid {
        gap: 28px;
    }
}

.corridor-content {
    padding: 88px 0 24px;
}

.corridor-intro {
    max-width: 760px;
}

.corridor-intro h2,
.corridor-details h2 {
    margin: 0 0 16px;

    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.corridor-intro p:not(.section-label),
.corridor-details p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.corridor-details .content-source {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 13px;
}

.content-source a {
    color: var(--green-dark);
    text-underline-offset: 3px;
}

.corridor-intro p {
    margin: 0 0 14px;
}

.corridor-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 40px;
}

.corridor-factor {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
}

.corridor-factor h3 {
    margin: 0 0 10px;

    color: var(--green-dark);
    font-size: 18px;
}

.corridor-factor p {
    margin: 0;

    color: var(--text-soft);
    line-height: 1.65;
}

.corridor-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;

    max-width: 760px;
    margin-top: 80px;
}

.corridor-details p {
    margin: 0 0 14px;
}

.corridor-details > div:first-child > p:first-of-type {
    max-width: 760px;
}

.receiving-why {
    max-width: 760px;
    margin-top: 36px;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--green-dark);
}

.receiving-why .section-label {
    margin-bottom: 9px;
}

.receiving-why p:last-child {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.corridor-other {
    max-width: none;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.corridor-other .section-label {
    margin-bottom: 18px;
}

.corridor-other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 760px) {
    .corridor-other-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .corridor-content {
        padding-top: 64px;
    }

    .corridor-factors,
    .corridor-details {
        grid-template-columns: 1fr;
    }

    .corridor-details {
        gap: 28px;
    }
}

/* =========================
   Homepage corridors
========================= */

.homepage-corridors {
    padding: 88px 0;
}

.homepage-results-interpretation + .homepage-corridors {
    padding-top: 48px;
}

.homepage-corridors-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.homepage-corridors-heading h2 {
    margin: 0 0 14px;

    color: var(--green-dark);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.homepage-corridors-heading p:not(.section-label) {
    margin: 0;

    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.corridor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.corridor-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;

    min-height: 0;
    padding: 18px 20px;

    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;

    color: inherit;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.corridor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 61, 50, 0.24);
    box-shadow: 0 10px 24px rgba(16, 61, 50, 0.08);
}

.corridor-card-flag {
    margin: 0;
}

.corridor-card-content h3 {
    margin: 0 0 3px;

    color: var(--green-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.corridor-card-content p {
    margin: 0;

    color: var(--text-soft);
    font-size: 14px;
}

.corridor-card-action {
    margin: 0;
    padding: 0;

    color: var(--green-dark);
    font-size: 20px;
    font-weight: 700;

    transition: transform 0.2s ease;
}

.corridor-card:hover .corridor-card-action {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .corridor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .homepage-corridors {
        padding: 64px 0;
    }

    .homepage-results-interpretation + .homepage-corridors {
        padding-top: 36px;
    }

    .corridor-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   About
========================= */

#about {
    padding: 96px 0;
}

.about-intro {
    max-width: 720px;
}

.section-label {
    margin: 0 0 12px;

    color: var(--green-light);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#about h2 {
    margin: 0 0 18px;

    color: var(--green-dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-lead {
    margin: 0 0 14px;

    color: var(--green-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.about-identity {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.about-intro > p:not(.section-label):not(.about-lead):not(.about-identity) {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.about-intro > p:last-child {
    margin-bottom: 0;
}

.about-contact {
    max-width: 720px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.about-contact h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 18px;
}

.about-contact p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.about-contact a {
    color: var(--green-dark);
    font-weight: 700;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .receiving-why {
        margin-top: 30px;
        padding-left: 17px;
    }

}

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

.faq-section {
    padding: 96px 0;
}

.faq-section h2 {
    margin-bottom: 32px;

    color: var(--green-dark);
    font-family: "Manrope", serif;
    font-size: clamp(25px, 3vw, 34px);
}

.faq-section details {
    margin-bottom: 16px;

    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
}

.faq-section summary {
    padding: 20px 24px;

    cursor: pointer;
    list-style: none;

    font-weight: 700;
    color: var(--green-dark);
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after {
    content: "+";
    float: right;

    font-size: 22px;
    font-weight: 400;
}

.faq-section details[open] summary::after {
    content: "−";
}

.faq-section details p {
    margin: 0;
    padding: 0 24px 24px;

    color: var(--text-soft);
    line-height: 1.7;
}

/* =========================
   Footer
========================= */

.site-footer {
    margin-top: 80px;
    padding: 60px 0 40px;

    background: var(--green-dark);
    color: white;
}

.footer-top {
    max-width: 600px;
}

.footer-top h2 {
    margin: 0 0 12px;

    font-size: 32px;
    font-family: "Manrope", serif;
}

.footer-top p {
    margin: 0;

    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
    margin: 36px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column-title {
    margin-bottom: 4px;
    color: white;
    font-weight: 800;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 600;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.footer-disclaimer {
    padding: 28px 0;

    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer-disclaimer p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 18px;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 540px) {
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* =========================
   Information pages
========================= */

.info-page {
    padding: 72px 0 96px;
}

.info-content {
    max-width: 780px;
    margin-inline: auto;
}

.info-content h1 {
    margin: 0 0 16px;

    color: var(--green-dark);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.info-updated {
    margin: 0 0 40px;
    color: var(--text-soft);
    font-size: 14px;
}

.info-content section {
    margin-top: 36px;
}

.info-content h2 {
    margin: 0 0 12px;

    color: var(--green-dark);
    font-size: 23px;
    line-height: 1.3;
}

.info-content h3 {
    margin: 24px 0 8px;
    color: var(--green-dark);
    font-size: 18px;
    line-height: 1.35;
}

.info-content p,
.info-content li {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.info-content p {
    margin: 0 0 16px;
}

.info-content ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.info-content a {
    color: var(--green);
    font-weight: 700;
}

.source-list {
    margin: 24px 0 34px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    overflow: hidden;
}

.source-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}

.source-item:last-child {
    border-bottom: 0;
}

.info-content .source-name h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.source-name span {
    color: var(--text-soft);
    font-size: 12px;
}

.source-details {
    margin: 0;
}

.source-details div {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 7px;
}

.source-details div:last-child {
    margin-bottom: 0;
}

.source-details dt {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
}

.source-details dd {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .info-page {
        padding: 52px 0 72px;
    }

    .info-content section {
        margin-top: 30px;
    }

    .source-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }
}
/* =========================
   Unavailable providers
========================= */

.unavailable-option {
    opacity: 0.68;
}

.unavailable-text {
    color: var(--text-soft);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.provider-unavailable {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   Currency / conversion page
========================= */

.currency-hero {
    padding: 96px 0 34px;
    text-align: center;
}

.currency-hero h1 {
    max-width: 820px;
    margin: 0 auto 16px;

    color: var(--green-dark);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.currency-hero-description {
    max-width: 650px;
    margin: 0 auto;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.currency-rate-line {
    margin-top: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    color: var(--green-dark);
}

.currency-rate-line strong {
    font-size: 20px;
}

.currency-updated {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
}

.currency-converter-section {
    padding: 0 0 48px;
}

.currency-calculator-card {
    width: min(100%, 760px);
    margin-top: 0;
    padding: 18px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    align-items: end;
    gap: 14px;

    border: 1px solid rgba(18, 63, 53, 0.15);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(18, 63, 53, 0.08);
}

.currency-calculator-card .transfer-field {
    min-width: 0;
}

.currency-calculator-card .transfer-field label {
    margin-bottom: 8px;

    color: #66756d;
    font-size: 11px;
    letter-spacing: normal;
    text-transform: none;
}

.currency-calculator-card .currency-row {
    display: flex;
    align-items: center;
    gap: 12px;

    border-bottom: 1px solid var(--green-dark);
}

.currency-calculator-card .amount-input {
    min-width: 0;
    height: auto;
    padding: 4px 0 7px;

    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;

    font-family: "DM Mono", monospace;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.currency-calculator-card .amount-input:focus {
    border: 0;
    box-shadow: none;
}

.currency-calculator-card .amount-input[readonly] {
    background: transparent;
    color: var(--green-dark);
}

.currency-calculator-card .transfer-divider {
    align-self: center;
    margin: 0;
    transform: rotate(-90deg);
}

.currency-calculator-card .transfer-divider span {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #eeeee8;
    color: var(--green);
}

.currency-selector-static {
    flex: 0 0 auto;
    justify-content: flex-end;

    width: auto;
    height: auto;
    padding: 0 0 7px;

    border: 0;
    border-radius: 0;
    background: transparent;
}

.currency-selector-static strong {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 800;
}

.currency-rate-note {
    grid-column: 1 / -1;
    margin: 0 2px;

    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.currency-transfer-bridge {
    width: min(100%, 920px);
    margin: 56px 0 0;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;

    text-align: left;
}

.currency-transfer-bridge > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    padding-left: 20px;
    border-left: 3px solid var(--green-dark);
}

.currency-transfer-bridge .section-label {
    display: none;
}

.currency-transfer-bridge h2 {
    margin: 0 0 4px;

    color: var(--green-dark);
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.currency-transfer-bridge p:not(.section-label) {
    max-width: 620px;
    margin: 0;

    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.currency-transfer-detail {
    display: block;
    max-width: none;
    margin-top: 12px;
    white-space: nowrap;
}

.currency-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 320px;
    min-height: 48px;
    padding: 0 18px;

    border-radius: 12px;
    background: var(--green-dark);
    color: white;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.currency-primary-cta:hover {
    background: var(--green);
}

.currency-content-section {
    padding: 72px 0;
    border-top: 1px solid var(--border-soft);
}

#popular-conversions {
    padding-bottom: 48px;
}

.currency-content-heading,
.currency-text-block {
    max-width: 760px;
}

.currency-content-heading h2,
.currency-text-block h2 {
    margin: 0 0 16px;

    color: var(--green-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.currency-table-card {
    max-width: 760px;
    margin-top: 28px;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.currency-conversion-table {
    min-width: 0;
}

.currency-conversion-table thead {
    position: static;
}

.currency-conversion-table th,
.currency-conversion-table td {
    width: 50%;
}

.currency-conversion-table td:last-child {
    color: var(--green-dark);
    font-weight: 800;
}

.currency-explanation-section {
    background: white;
}

.currency-text-block p:not(.section-label) {
    margin: 0 0 18px;

    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.currency-text-link {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .currency-hero {
        padding: 62px 0 28px;
    }

    .currency-transfer-bridge {
        margin-top: 44px;
    }

    .currency-calculator-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .currency-calculator-card .transfer-divider {
        justify-self: center;
        transform: none;
    }

    .currency-calculator-card .amount-input {
        font-size: clamp(27px, 9vw, 36px);
    }

    .currency-transfer-detail {
        white-space: normal;
    }

    .currency-primary-cta {
        justify-content: center;
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .currency-content-section {
        padding: 56px 0;
    }

    .currency-conversion-table,
    .currency-conversion-table tbody,
    .currency-conversion-table tr,
    .currency-conversion-table td {
        display: revert;
    }

    .currency-conversion-table thead {
        display: table-header-group;
    }

    .currency-conversion-table tbody {
        display: table-row-group;
    }

    .currency-conversion-table tr {
        display: table-row;
    }

    .currency-conversion-table td {
        display: table-cell;
        padding: 16px 18px;
        text-align: left;
        background: white;
    }

    .currency-conversion-table td::before {
        display: none;
    }
}

.corridor-reference-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}

.corridor-reference-link:hover {
    text-decoration: underline;
}

/* =========================
   Calculator questions
========================= */

.calculator-question {
    margin-bottom: 14px;
}

.calculator-question > label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f4a3c;
}


/* Route */

.route-row {
    min-height: 68px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #d9dedb;
    border-radius: 14px;
    background: #ffffff;
}

.route-country {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;
    color: #123f35;
}

.route-country-select {
    position: relative;
    cursor: pointer;
}

.route-country-select select {
    position: absolute;
    inset: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    padding: 0;

    border: 0;
    outline: 0;
    opacity: 0;
    cursor: pointer;
}

.route-country-select:has(select:focus-visible) {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}

.route-arrow {
    color: #6d7772;
    font-size: 18px;
}

/* Send / receive toggle */

.calculation-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;

    border: 1px solid #d9dedb;
    border-radius: 12px;
    overflow: hidden;
}

.calculation-mode-button {
    min-height: 44px;

    border: 0;
    background: #ffffff;

    font: inherit;
    font-size: 13px;
    font-weight: 700;

    color: #123f35;
    cursor: pointer;
}

.calculation-mode-button + .calculation-mode-button {
    border-left: 1px solid #d9dedb;
}

.calculation-mode-button.active {
    background: #eef4f1;
    color: #0f4a3c;
}


/* Compare */

.compare-providers-button {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;

    border: 0;
    border-radius: 12px;

    background: #0f4a3c;
    color: #ffffff;

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

.compare-providers-button:hover {
    opacity: 0.92;
}
