:root {
    --green: #2d5f43;
    --green-deep: #204430;
    --green-soft: #3d7154;
    --green-muted: #86b497;
    --pink: #f76f8e;
    --pink-soft: #ffefee;
    --white: #ffffff;
    --paper: #fbfbf9;
    --ink: #111111;
    --muted: #70766c;
    --line: rgba(17, 17, 17, 0.08);
    --shadow: 0 28px 60px rgba(11, 25, 18, 0.18);
    --shadow-soft: 0 20px 40px rgba(11, 25, 18, 0.06);
    --radius-xl: 26px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --whatsapp: #25d366;
    --telegram: #0088cc;
}

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

html {
    scroll-behavior: smooth;
}

#exchange,
#blog,
#partner,
#faq,
#media,
#contact {
    scroll-margin-top: 20px;
}

body {
    background: var(--green);
    color: var(--ink);
    font-family: "Golos Text", sans-serif;
    min-height: 100vh;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.page-shell {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1240px;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header {
    align-items: center;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1240px;
    padding: 20px 40px;
    width: 100%;
}

.brand img {
    height: 64px;
    width: auto;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 26px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-pill {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 9px 16px;
}

.nav-pill-active {
    background: rgba(255, 255, 255, 0.05);
}

.header-tools {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-self: end;
}

.header-icon {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-icon svg {
    height: 18px;
    width: 18px;
}

.hero {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 24px;
    text-align: left;
}

.hero-copy {
    color: var(--white);
    order: 2;
}

.hero-copy h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(3.5rem, 12vw, 7.5rem);
    letter-spacing: -0.06em;
    line-height: 0.85;
    margin: 0 0 24px 0;
    max-width: 10ch;
    text-transform: lowercase;
}

.hero-copy h1::first-letter {
    text-transform: uppercase;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 28ch;
}

.hero-art {
    margin-bottom: 20px;
    order: 1;
}

.hero-art img {
    filter: none;
    transform: none;
    width: min(100%, 800px);
}

.exchange-section {
    padding-bottom: 56px;
}

.exchange-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.exchange-header {
    padding: 42px 42px 0;
}

.exchange-header h2,
.panel-title,
.transfers-inner h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-align: center;
}

.exchange-main-layout {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    padding: 36px 42px 30px;
}

.exchange-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
}

.exchange-kicker {
    color: var(--green-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.exchange-content h3 {
    color: var(--ink);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.exchange-text {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.7;
    max-width: 48ch;
}

.exchange-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exchange-badges span {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 9px 14px;
}

.exchange-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.btn-contact {
    align-items: center;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    color: var(--white);
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact:hover {
    box-shadow: 0 16px 28px rgba(11, 25, 18, 0.1);
    transform: translateY(-2px);
}

.btn-contact.whatsapp {
    background: var(--whatsapp);
}

.btn-contact.telegram {
    background: var(--telegram);
}

.btn-contact img,
.btn-contact svg {
    flex: 0 0 auto;
    height: 22px;
    width: 22px;
}

.btn-contact img {
    object-fit: contain;
}

.btn-contact svg {
    fill: currentColor;
    stroke: none;
}

.btn-contact span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.exchange-note {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.exchange-calculator-widget {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.calc-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 18px;
}

.calc-header strong {
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.badge-rate {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    white-space: nowrap;
}

.calc-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-input-group label,
.calc-output-label {
    color: var(--muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.calc-input-wrapper {
    align-items: center;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 16px;
    display: flex;
    gap: 16px;
    min-height: 74px;
    padding: 0 20px;
    transition: border-color 0.2s ease;
}

.calc-input-wrapper:focus-within {
    border-color: var(--green-soft);
}

.calc-input-wrapper input {
    appearance: textfield;
    background: transparent;
    border: 0;
    color: var(--ink);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: -0.05em;
    min-width: 0;
    outline: none;
    width: 100%;
}

.calc-input-wrapper input::-webkit-outer-spin-button,
.calc-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.currency {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calc-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: -4px;
}

.calc-currency-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-currency-switch {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px;
}

.calc-currency-option {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    min-height: 42px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.calc-currency-option:hover,
.calc-currency-option[aria-pressed="true"] {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-1px);
}

.exchange-rate-chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green-deep);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    min-height: 40px;
    padding: 0 16px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.exchange-rate-chip:hover,
.exchange-rate-chip[aria-pressed="true"] {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-1px);
}

.calc-output-wrapper {
    background: var(--green);
    border-radius: 18px;
    color: var(--white);
    padding: 24px;
    text-align: center;
}

.calc-output-wrapper strong {
    display: block;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.exchange-features-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 42px 42px;
}

.feature-item {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    gap: 16px;
    min-height: 96px;
    padding: 20px;
}

.feature-icon {
    align-items: center;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(11, 25, 18, 0.06);
    color: var(--green);
    display: flex;
    flex: 0 0 auto;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.feature-icon svg {
    height: 24px;
    width: 24px;
    stroke-width: 1.6;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.feature-text span {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.make-order,
.outline-link,
.solid-link,
.solid-link-light {
    border-radius: 6px;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 52px;
    text-transform: uppercase;
}

.make-order {
    border: 2px solid #171717;
    color: #111111;
    margin-top: 4px;
    padding: 0 18px;
}

.benefits-strip {
    background: var(--pink-soft);
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 60px 42px;
}

.benefit-card {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.benefit-card svg {
    color: var(--ink);
    height: 34px;
    width: 34px;
    stroke-width: 1.3;
}

.benefit-card h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ink);
}

.benefit-card p {
    color: #4a4e46;
    font-size: 0.88rem;
    line-height: 1.55;
}

.stack {
    display: grid;
    gap: 26px;
    padding-bottom: 32px;
}

.panel {
    border-radius: var(--radius-xl);
    padding: 42px;
}

.panel-white {
    background: var(--white);
}

.panel-blush {
    background: var(--pink-soft);
}

.panel-green {
    background: #2a563d;
    color: var(--white);
}

.panel-title {
    margin-bottom: 30px;
}

.panel-title-light {
    color: var(--white);
}

.reviews-grid,
.blog-grid,
.partner-grid,
.media-grid {
    display: grid;
    gap: 18px;
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
}

.review-card {
    background: #f7f7f5;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 18px;
    padding: 20px;
}

.review-header {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.review-header strong {
    display: block;
    font-size: 0.97rem;
    margin-bottom: 2px;
}

.review-header small {
    color: var(--muted);
}

.review-card p {
    color: #44483f;
    font-size: 0.96rem;
    line-height: 1.6;
}

.avatar {
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.avatar-one {
    background: linear-gradient(135deg, #d7b16f, #8d5f31);
}

.avatar-two {
    background: linear-gradient(135deg, #8898d6, #4558a6);
}

.avatar-three {
    background: linear-gradient(135deg, #df8f7d, #943d34);
}

.outline-link,
.solid-link,
.solid-link-light {
    align-items: center;
    margin: 0 auto;
    padding: 0 24px;
    width: fit-content;
}

.outline-link {
    border: 2px solid #181818;
    color: #181818;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
}

.blog-card img {
    aspect-ratio: 1.3 / 1;
    object-fit: cover;
    width: 100%;
}

.blog-card-body {
    padding: 18px;
}

.blog-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.blog-card p {
    color: #5b5f57;
    line-height: 1.5;
}

.partner-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: var(--pink);
}

.partner-icon-box {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    background: var(--pink-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
}

.partner-icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.partner-body h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.partner-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

#partner .solid-link {
    display: flex;
    margin: 0 auto;
    background: var(--ink);
    color: var(--white);
    border: none;
    transition: opacity 0.2s;
}

#partner .solid-link:hover {
    opacity: 0.9;
}

.solid-link {
    background: var(--white);
    border: 2px solid #181818;
    color: #181818;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
    padding: 20px 38px 20px 0;
    position: relative;
}

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

.faq-list summary::after {
    color: #51564d;
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 18px;
}

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

.faq-list p {
    color: #5c6158;
    line-height: 1.65;
    padding: 0 0 20px;
}

.media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
    background: var(--white);
    border-radius: 20px;
    color: #20241f;
    display: flex;
    flex-direction: column;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.media-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.media-logo {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-transform: uppercase;
}

.quote-icon {
    width: 24px;
    height: 24px;
    color: var(--green-muted);
    opacity: 0.4;
}

.media-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4e46;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.media-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--green-deep);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.media-read svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.media-read:hover {
    color: var(--pink);
}

.media-read:hover svg {
    transform: translateX(4px);
}

.transfers-band {
    background:
        radial-gradient(circle at 12% 35%, rgba(118, 180, 136, 0.14), transparent 18%),
        radial-gradient(circle at 82% 60%, rgba(118, 180, 136, 0.11), transparent 22%),
        linear-gradient(180deg, #2a563d 0%, #204230 100%);
    padding: 34px 0 42px;
    position: relative;
}

.transfers-band::before {
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 66%),
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 38%);
    content: "";
    inset: 0;
    position: absolute;
}

.transfers-inner {
    align-items: center;
    color: var(--white);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.transfers-inner h2 {
    margin-bottom: 12px;
    max-width: 12ch;
    text-align: left;
}

.transfers-inner p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 42ch;
}

.solid-link-light {
    background: var(--white);
    color: var(--green-deep);
    flex: 0 0 auto;
}

/* --- FOOTER PREMIUM --- */
.site-footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-brand .brand {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand-img img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.footer-columns {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-col strong {
    color: var(--white);
    font-family: "Archivo Black", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-col a {
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-3px);
}

.footer-socials svg {
    height: 18px;
    width: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal a {
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

.floating-links {
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    right: 18px;
    z-index: 20;
}

.floating-link {
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 16px 30px rgba(10, 31, 55, 0.28);
    color: var(--white);
    display: inline-flex;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.whatsapp-float {
    background: #20c863;
}

.whatsapp-float img {
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.telegram-float {
    background: #2aabee;
}

.telegram-float svg {
    height: 24px;
    width: 24px;
}

@media (max-width: 1100px) {
    .benefits-strip,
    .reviews-grid,
    .blog-grid,
    .partner-grid,
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transfers-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .transfers-inner h2 {
        max-width: none;
    }

    .exchange-main-layout {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .exchange-content {
        max-width: none;
    }
}

@media (max-width: 820px) {
    .site-header {
        align-items: center;
        gap: 12px;
        grid-template-columns: auto 1fr auto;
        padding: 16px 18px 8px;
        row-gap: 14px;
    }

    .main-nav {
        gap: 10px;
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        width: 100%;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a,
    .header-icon {
        font-size: 11px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .nav-pill {
        padding: 8px 12px;
    }

    .hero {
        align-items: flex-start;
        padding: 26px 18px 34px;
        text-align: left;
    }

    .hero-copy {
        order: 1;
        width: 100%;
    }

    .hero-art {
        margin: 12px auto 0;
        order: 2;
        width: 100%;
    }

    .hero-art img {
        margin: 0 auto;
        width: min(100%, 560px);
    }

    .exchange-header {
        padding: 28px 18px 0;
    }

    .exchange-main-layout {
        gap: 24px;
        padding: 20px 18px 24px;
    }

    .exchange-content h3 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .exchange-text {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .exchange-badges span {
        font-size: 0.68rem;
        padding: 8px 12px;
    }

    .exchange-actions {
        flex-direction: column;
    }

    .btn-contact {
        width: 100%;
    }

    .exchange-note {
        font-size: 0.74rem;
    }

    .exchange-calculator-widget {
        border-radius: 20px;
        padding: 22px 18px;
    }

    .calc-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .calc-input-wrapper {
        min-height: 68px;
        padding: 0 16px;
    }

    .calc-input-wrapper input {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .calc-currency-switch {
        grid-template-columns: 1fr;
    }

    .calc-output-wrapper {
        padding: 20px 18px;
    }

    .calc-output-wrapper strong {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .exchange-features-row {
        grid-template-columns: 1fr;
        padding: 0 18px 20px;
    }

    .feature-item {
        min-height: 0;
        padding: 18px;
    }

    .make-order,
    .outline-link,
    .solid-link,
    .solid-link-light {
        font-size: 0.68rem;
        min-height: 42px;
        padding: 0 16px;
    }

    .benefits-strip {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px 12px 18px;
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.38);
        border: 1px solid rgba(17, 17, 17, 0.05);
        border-radius: 14px;
        padding: 14px 10px;
    }

    .benefit-card:last-child {
        grid-column: 1 / -1;
    }

    .benefit-card h3 {
        font-size: 0.76rem;
    }

    .benefit-card p {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .panel {
        border-radius: 22px;
        padding: 26px 18px;
    }

    .reviews-grid,
    .blog-grid,
    .partner-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .review-card,
    .blog-card,
    .media-card {
        border-radius: 16px;
    }

    .panel-title {
        margin-bottom: 22px;
    }

    .review-card p,
    .blog-card p,
    .partner-card p,
    .media-card p,
    .faq-list p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .blog-card-body,
    .media-card {
        padding: 16px;
    }

    .partner-card {
        background: rgba(255, 255, 255, 0.52);
        border-radius: 16px;
        padding: 16px;
    }

    .faq-list summary {
        font-size: 0.94rem;
        padding: 16px 28px 16px 0;
    }

    .faq-list summary::after {
        top: 14px;
    }

    .media-card {
        min-height: 0;
    }

    .transfers-band {
        padding: 28px 0 34px;
    }

    .transfers-inner {
        gap: 16px;
    }

    .transfers-inner p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .solid-link-light {
        width: 100%;
    }

    /* --- NEW FOOTER MOBILE LAYOUT --- */
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-links {
        bottom: 14px;
        gap: 10px;
        right: 14px;
    }

    .floating-link {
        height: 50px;
        width: 50px;
    }

    .whatsapp-float img {
        height: 28px;
        width: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 15vw, 4.5rem);
        margin-bottom: 10px;
        max-width: 6.5ch;
    }
}

@media (max-width: 620px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header {
        padding: 14px 12px 6px;
    }

    .brand img {
        height: 46px;
    }

    .main-nav {
        gap: 8px;
        padding-bottom: 2px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .header-lang span {
        display: none;
    }

    .header-tools {
        gap: 8px;
    }

    .header-icon svg {
        height: 15px;
        width: 15px;
    }

    .hero {
        padding: 18px 12px 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 15vw, 3.6rem);
        line-height: 0.9;
        max-width: 6ch;
    }

    .hero-copy p {
        max-width: none;
    }

    .exchange-card,
    .panel {
        border-radius: 20px;
    }

    .exchange-header {
        padding: 24px 14px 0;
    }

    .exchange-main-layout {
        gap: 20px;
        padding: 16px 14px 18px;
    }

    .exchange-content {
        gap: 14px;
    }

    .exchange-content h3 {
        font-size: clamp(1.55rem, 9vw, 2.1rem);
    }

    .exchange-text {
        font-size: 0.88rem;
    }

    .exchange-badges span {
        font-size: 0.64rem;
        padding: 7px 10px;
    }

    .btn-contact {
        min-height: 50px;
        padding: 0 16px;
    }

    .btn-contact svg,
    .btn-contact img {
        height: 20px;
        width: 20px;
    }

    .btn-contact span {
        font-size: 0.85rem;
    }

    .exchange-calculator-widget {
        border-radius: 20px;
        padding: 18px 14px;
    }

    .calc-input-wrapper {
        border-radius: 14px;
        min-height: 62px;
        padding: 0 14px;
    }

    .calc-output-wrapper {
        border-radius: 16px;
        padding: 18px 14px;
    }

    .calc-currency-switch {
        border-radius: 14px;
        padding: 6px;
    }

    .calc-currency-option {
        border-radius: 10px;
        min-height: 40px;
    }

    .exchange-rate-chip {
        min-height: 38px;
        padding: 0 14px;
    }

    .exchange-features-row {
        gap: 14px;
        padding: 0 14px 16px;
    }

    .feature-item {
        border-radius: 16px;
        gap: 12px;
        padding: 14px;
    }

    .feature-icon {
        border-radius: 12px;
        height: 44px;
        width: 44px;
    }

    .feature-icon svg {
        height: 20px;
        width: 20px;
    }

    .feature-text strong {
        font-size: 0.88rem;
    }

    .feature-text span {
        font-size: 0.78rem;
    }

    .benefits-strip {
        grid-template-columns: 1fr;
        padding: 14px 10px 16px;
    }

    .benefit-card:last-child {
        grid-column: auto;
    }

    .panel {
        padding: 22px 14px;
    }

    .blog-card img {
        aspect-ratio: 1.45 / 1;
    }

    .site-footer {
        padding: 24px 0 88px;
    }
}

@media (max-width: 440px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .header-tools > .header-icon:first-child {
        display: none;
    }

    .nav-pill,
    .main-nav a {
        font-size: 9px;
    }

    .hero-art img {
        width: min(100%, 420px);
    }

    .exchange-content h3,
    .panel-title,
    .transfers-inner h2 {
        font-size: clamp(1.45rem, 8.5vw, 2rem);
    }
}

/* --- CAROUSEL HORIZONTAL POUR LES AVANTAGES SUR MOBILE --- */
@media (max-width: 820px) {
    .benefits-strip {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
        padding: 24px 20px !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .benefits-strip::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        flex: 0 0 250px !important;
        scroll-snap-align: center;
    }
}
