:root {
    --navy: #07111f;
    --navy-2: #0b192b;
    --navy-3: #10233b;
    --blue: #1b6cff;
    --blue-light: #4d92ff;
    --gold: #d6a84f;
    --gold-light: #f0c96c;
    --white: #ffffff;
    --text: #172235;
    --muted: #667085;
    --light: #f5f7fa;
    --border: #e5e9f0;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(7, 17, 31, .10);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Heebo", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    color: #fff;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;
    background: rgba(255,255,255,.08);
}

.logo-mark span {
    width: 5px;
    border-radius: 5px;
    background: var(--gold-light);
}

.logo-mark span:nth-child(1) {
    height: 12px;
}

.logo-mark span:nth-child(2) {
    height: 19px;
}

.logo-mark span:nth-child(3) {
    height: 25px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #fff;
}

.logo-text strong,
.logo-text em {
    font-size: 21px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: -.7px;
}

.logo-text em {
    color: var(--gold-light);
    display: inline;
}

.logo-text small {
    font-size: 8px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    direction: rtl;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: rgba(255,255,255,.78);
    font-size: 15px;
    font-weight: 500;
    transition: .25s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-business-link {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    min-height: 43px;
    padding-inline: 18px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 30px rgba(27,108,255,.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 35px rgba(27,108,255,.36);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.04);
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
    transition: .25s;
}

.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(38,111,255,.18), transparent 30%),
        linear-gradient(135deg, #06101d 0%, #09192b 55%, #07111f 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    width: 480px;
    height: 480px;
    right: -180px;
    top: 130px;
    background: rgba(27,108,255,.08);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    left: -130px;
    bottom: -100px;
    background: rgba(214,168,79,.08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.72);
    font-size: 13px;
    margin-bottom: 23px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 5px rgba(240,201,108,.08);
}

.hero h1 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-text {
    max-width: 520px;
    color: rgba(255,255,255,.65);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 20px;
    color: #fff;
}

.trust-item span {
    color: rgba(255,255,255,.45);
    font-size: 12px;
}

.trust-divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,.12);
}


/* EXCHANGE CARD */

.hero-card-wrap {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-card {
    position: relative;
    z-index: 3;
    width: min(100%, 440px);
    padding: 28px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 28px;
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(24px);
    box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.exchange-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.card-label {
    display: block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.exchange-card h2 {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.live-dot {
    height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 100px;
    background: rgba(82,214,130,.08);
    color: #75e29a;
    font-size: 11px;
    white-space: nowrap;
}

.live-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #51d37c;
}

.currency-box {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(4,12,23,.42);
}

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

.currency-flag {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #3e7eff, #1559d4);
    font-size: 20px;
    font-weight: 700;
}

.currency-flag.shekel {
    background: linear-gradient(135deg, #d9ad55, #aa7827);
}

.currency-info div {
    display: flex;
    flex-direction: column;
}

.currency-info small {
    color: rgba(255,255,255,.38);
    font-size: 11px;
}

.currency-info strong {
    color: #fff;
    font-size: 14px;
}

.available-currencies {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 3px 2px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
}

.available-currencies strong {
    padding: 3px 7px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    color: rgba(255,255,255,.75);
    font-size: 10px;
}

.rate-note {
    padding: 16px 3px 18px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
}

.rate-note span {
    color: var(--gold-light);
}

.exchange-cta {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    transition: .25s;
}

.exchange-cta:hover {
    background: var(--gold-light);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 15px;
    background: rgba(14,29,48,.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: #fff;
    font-size: 12px;
}

.floating-card small {
    color: rgba(255,255,255,.4);
    font-size: 9px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(61,145,255,.12);
    color: #70a8ff;
    font-weight: 800;
}

.floating-icon.gold {
    color: var(--gold-light);
    background: rgba(214,168,79,.1);
}

.floating-card-top {
    top: 88px;
    right: auto;
    left: -20px;
}

.floating-card-bottom {
    bottom: 45px;
    left: -20px;
}


/* GENERAL SECTIONS */

.section {
    padding: 120px 0;
}

.section-kicker {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 13px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.rates-heading h2,
.center-heading h2 {
    font-size: clamp(36px, 4.2vw, 53px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.section-heading h2 span,
.about-content h2 span,
.rates-heading h2 span,
.center-heading h2 span {
    color: var(--blue);
}

.section-heading > p {
    max-width: 400px;
    color: var(--muted);
    line-height: 1.9;
}


/* SERVICES */

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    min-height: 370px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27,108,255,.25);
    box-shadow: var(--shadow);
}

.service-card.featured-service {
    color: #fff;
    border-color: transparent;
    background: var(--navy);
}

.service-card.featured-service h3 {
    color: #fff;
}

.service-card.featured-service p {
    color: rgba(255,255,255,.55);
}

.service-number {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #dfe4ec;
    font-size: 11px;
    font-weight: 700;
}

.featured-service .service-number {
    color: rgba(255,255,255,.28);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    border-radius: 15px;
    color: var(--blue);
    background: #f0f5ff;
}

.featured-service .service-icon {
    color: var(--gold-light);
    background: rgba(214,168,79,.1);
}

.service-icon svg {
    width: 25px;
    height: 25px;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.service-link {
    position: absolute;
    bottom: 28px;
    right: 28px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.featured-service .service-link {
    color: var(--gold-light);
}

.service-link span {
    transition: transform .2s;
}

.service-link:hover span {
    transform: translateX(-4px);
}


/* ABOUT */

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 110px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(27,108,255,.1);
}

.circle-one {
    width: 480px;
    height: 480px;
}

.circle-two {
    width: 360px;
    height: 360px;
}

.about-main-card {
    position: relative;
    z-index: 2;
    width: 310px;
    height: 360px;
    padding: 38px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(60,133,255,.3), transparent 35%),
        var(--navy);
    box-shadow: 0 30px 80px rgba(7,17,31,.18);
    overflow: hidden;
}

.about-main-card::after {
    content: "₪";
    position: absolute;
    bottom: -70px;
    left: -20px;
    color: rgba(255,255,255,.035);
    font-size: 250px;
    line-height: 1;
    font-weight: 900;
}

.about-logo .logo-mark {
    width: 44px;
    height: 44px;
}

.about-big-number {
    margin-top: 68px;
    font-size: 86px;
    line-height: .9;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: -5px;
}

.about-label {
    margin-top: 12px;
    color: rgba(255,255,255,.55);
    font-size: 15px;
}

.about-line {
    width: 45px;
    height: 2px;
    margin: 30px 0 16px;
    background: var(--blue-light);
}

.about-mini-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.about-content .lead {
    max-width: 640px;
    margin: 25px 0 17px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.9;
}

.about-content > p:not(.lead) {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.9;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 25px;
    margin-top: 32px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.check {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--blue);
    background: #e8f0ff;
    font-size: 12px;
}


/* RATES */

.rates-section {
    background: #fff;
}

.rates-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 48px;
}

.rates-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42c878;
    box-shadow: 0 0 0 5px rgba(66,200,120,.1);
}

.rates-panel {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fafbfd;
}

.rates-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.rates-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--gold);
    background: #fff7e6;
    font-size: 23px;
    font-weight: 800;
}

.rates-intro h3 {
    font-size: 20px;
    margin-bottom: 3px;
}

.rates-intro p {
    color: var(--muted);
    font-size: 13px;
}

.currency-list {
    margin-top: 10px;
}

.currency-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 10px;
    border-bottom: 1px solid var(--border);
}

.currency-name {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 220px;
}

.currency-circle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
}

.currency-circle.usd {
    background: #3578e5;
}

.currency-circle.eur {
    background: #4565a5;
}

.currency-circle.gbp {
    background: #733d9c;
}

.currency-name strong,
.currency-name small {
    display: block;
}

.currency-name strong {
    font-size: 14px;
}

.currency-name small {
    color: var(--muted);
    font-size: 10px;
    direction: ltr;
    text-align: right;
}

.currency-direction {
    color: var(--muted);
    font-size: 12px;
}

.currency-arrow {
    color: var(--blue);
    font-size: 20px;
}

.rates-disclaimer {
    margin-top: 22px;
    color: #9299a7;
    font-size: 11px;
}


/* WHY */

.why-section {
    background: var(--light);
}

.center-heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.center-heading p {
    margin-top: 17px;
    color: var(--muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    padding: 30px;
    min-height: 240px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 12px;
    color: var(--blue);
    background: #eef4ff;
    font-size: 11px;
    font-weight: 800;
}

.benefit-card h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.benefit-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}


/* CTA */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
    background: var(--navy);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 65px 65px;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: -250px;
    border-radius: 50%;
    background: rgba(27,108,255,.13);
    filter: blur(20px);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 90px;
}

.section-kicker.light {
    color: var(--gold-light);
}

.cta-content h2 {
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--gold-light);
}

.cta-content p {
    max-width: 540px;
    color: rgba(255,255,255,.53);
    line-height: 1.9;
    margin-bottom: 30px;
}

.btn-white {
    color: var(--navy);
    background: #fff;
}

.btn-white:hover {
    background: var(--gold-light);
}

.contact-card {
    padding: 27px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 23px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(15px);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.contact-badge {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
}

.contact-open {
    color: #6be29a;
    font-size: 10px;
}

.contact-info {
    padding: 10px 0;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}

.contact-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    color: var(--gold-light);
    background: rgba(214,168,79,.09);
}

.contact-row small,
.contact-row strong {
    display: block;
}

.contact-row small {
    margin-bottom: 2px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
}

.contact-row strong {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #7eafff;
    font-size: 12px;
    font-weight: 700;
}


/* FOOTER */

.footer {
    padding: 65px 0 25px;
    color: #fff;
    background: #040b14;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr .7fr .9fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand p {
    max-width: 260px;
    margin-top: 18px;
    color: rgba(255,255,255,.35);
    font-size: 12px;
    line-height: 1.9;
}

.footer-links,
.footer-licenses {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer h4 {
    margin-bottom: 10px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.4);
    font-size: 12px;
    transition: .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-licenses p {
    color: rgba(255,255,255,.36);
    font-size: 11px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.25);
    font-size: 10px;
}

.footer-bottom a {
    transition: .2s;
}

.footer-bottom a:hover {
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .header-business-link {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 60px;
    }

    .footer-top {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-licenses {
        grid-column: span 3;
    }
}


@media (max-width: 800px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        min-height: 76px;
    }

    .desktop-nav,
    .header-business-link {
        display: none;
    }

    .header-actions .btn-small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 76px;
        right: 16px;
        left: 16px;
        display: flex;
        flex-direction: column;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 17px;
        background: rgba(7,17,31,.97);
        backdrop-filter: blur(20px);
        box-shadow: 0 25px 60px rgba(0,0,0,.3);
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu a {
        padding: 14px;
        border-radius: 10px;
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }

    .mobile-menu a:hover {
        background: rgba(255,255,255,.05);
        color: #fff;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .mobile-menu-btn {
        min-height: 46px;
        padding: 0 14px;
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

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

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

    .hero-card-wrap {
        min-height: 490px;
    }

    .floating-card-top {
        right: 0;
        left: auto;
    }

    .floating-card-bottom {
        left: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading,
    .rates-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 440px;
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .cta-inner {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-licenses {
        grid-column: span 2;
    }
}


@media (max-width: 560px) {

    .hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

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

    .hero-trust {
        gap: 12px;
    }

    .trust-divider {
        height: 25px;
    }

    .trust-item strong {
        font-size: 16px;
    }

    .trust-item span {
        font-size: 9px;
    }

    .hero-card-wrap {
        min-height: 450px;
    }

    .exchange-card {
        padding: 21px;
        border-radius: 21px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .floating-card-top {
        top: 42px;
        right: calc(50% + 45px);
        left: auto;
        transform: translateX(50%) scale(.85);
    }

    .floating-card-bottom {
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%) scale(.85);
    }

    .services-grid,
    .benefits-grid,
    .about-points {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

    .about-main-card {
        width: 275px;
        height: 330px;
    }

    .about-big-number {
        margin-top: 50px;
        font-size: 72px;
    }

    .about-circle.circle-one {
        width: 340px;
        height: 340px;
    }

    .about-circle.circle-two {
        width: 260px;
        height: 260px;
    }

    .rates-panel {
        padding: 22px 15px;
    }

    .currency-row {
        padding: 17px 4px;
    }

    .currency-name {
        min-width: auto;
    }

    .currency-direction {
        display: none;
    }

    .currency-arrow {
        font-size: 16px;
    }

    .cta-section {
        padding: 75px 0;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-licenses {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top,
    .footer-brand,
    .footer-links,
    .footer-licenses,
    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }
}
