/* ----------------------------------------------------------
   GoUzbekistan — landing styles
   ---------------------------------------------------------- */

:root {
    --c-blue:        #0099B5;
    --c-blue-dark:   #007a90;
    --c-blue-soft:   #e6f5f8;
    --c-navy:        #1B3D6B;
    --c-navy-soft:   #f1f5fa;
    --c-green:       #1EB53A;
    --c-red:         #CE1126;
    --c-bg:          #FFFFFF;
    --c-text:        #1B3D6B;
    --c-muted:       #5b6b85;
    --c-line:        #e2eef2;
    --c-line-2:      #dbe7ec;

    --shadow-sm:  0 2px 8px  rgba(27, 61, 107, 0.06);
    --shadow-md:  0 12px 32px rgba(27, 61, 107, 0.10);
    --shadow-lg:  0 24px 60px rgba(27, 61, 107, 0.16);

    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --container:  1200px;

    --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    z-index: 100;
    background: var(--c-navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: top .15s;
}
.skip-link:focus { top: 12px; color: #fff; outline: 3px solid var(--c-blue); }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-blue); }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    text-decoration: none;
}
.btn--primary { background: var(--c-blue); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--c-blue-dark); transform: translateY(-1px); color: #fff; }
.btn--ghost {
    background: transparent;
    color: var(--c-navy);
    box-shadow: inset 0 0 0 1.5px var(--c-line-2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--c-blue); color: var(--c-blue); transform: translateY(-1px); }

.section-head { margin: 0 auto 48px; max-width: 760px; }
.section-head--center { text-align: center; }
.section-kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { color: var(--c-muted); font-size: clamp(15px, 1.6vw, 18px); margin-top: 14px; }

/* ============== NAV ============== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(27, 61, 107, 0.06);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}
.nav__brand {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
}
.nav__logo {
    width: 80px;
    height: 80px;
    display: block;
    transition: transform .2s ease;
}
.nav__brand:hover .nav__logo { transform: scale(1.05); }
@media (max-width: 720px) {
    .nav__inner { height: 76px; }
    .nav__logo { width: 60px; height: 60px; }
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    font-size: 14px;
    color: var(--c-text);
}
.nav__links > a:hover { color: var(--c-blue); }

.nav__lang {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--c-line-2);
    border-radius: 999px;
    padding: 4px;
    background: #fff;
    margin-left: 8px;
}
.nav__lang-btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--c-muted);
    transition: background .15s, color .15s;
}
.nav__lang-btn:hover { color: var(--c-blue); }
.nav__lang-btn.is-active { background: var(--c-blue); color: #fff; }

.nav__cta {
    background: var(--c-navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.01em;
    transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--c-blue); color: #fff; transform: translateY(-1px); }

.nav__burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--c-line-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav__burger span { width: 18px; height: 2px; background: var(--c-navy); border-radius: 2px; transition: transform .2s; }

/* ============== HERO ============== */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 70vh, 760px);
    padding: clamp(56px, 8vw, 96px) 0;
    background: #eaf5f8;
}
.hero__blob,
.hero__pattern-mobile { display: none; }
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    animation: heroBgIn 1.2s cubic-bezier(.2,.7,.2,1) both;
}
.hero__inner {
    position: relative;
    width: 100%;
}

.hero__copy { max-width: 540px; }
.hero__copy > * {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__copy > .hero__eyebrow { animation-delay: 0.10s; }
.hero__copy > .hero__headline { animation-delay: 0.25s; }
.hero__copy > .hero__sub { animation-delay: 0.45s; }
.hero__copy > .hero__badges { animation-delay: 0.65s; }
.hero__copy > .hero__caption { animation-delay: 0.85s; }

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(0, 153, 181, 0.18);
}

.hero__headline {
    font-size: clamp(34px, 5.4vw, 60px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--c-navy);
}
.hero__line { display: inline; }
.hero__post { display: inline; color: var(--c-navy); }
.hero__accent {
    display: inline-block;
    background: linear-gradient(120deg,
        var(--c-blue) 0%,
        #3fc3d6   25%,
        var(--c-green) 50%,
        #3fc3d6   75%,
        var(--c-blue) 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    animation: heroShine 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.hero__sub {
    margin-top: 22px;
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.55;
    color: var(--c-muted);
}
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.hero__caption {
    margin-top: 18px;
    font-size: 13px;
    color: var(--c-muted);
}

.store-badge { display: inline-block; transition: transform .2s, box-shadow .2s; border-radius: 12px; }
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge img { width: 180px; height: 60px; }
.store-badge--lg img { width: 200px; height: 64px; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBgIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes heroShine {
    0%   { background-position:   0% 50%; }
    100% { background-position: 250% 50%; }
}

/* ============== SECTIONS GRID ============== */
.sg { padding: clamp(64px, 10vw, 120px) 0; background: #fff; position: relative; }
.sg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/bg-pattern.jpg');
    background-image: image-set(url('/img/bg-pattern.webp') type('image/webp'),
                                url('/img/bg-pattern.jpg') type('image/jpeg'));
    background-size: 360px 360px;
    background-repeat: repeat;
    opacity: 0.10;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.sg__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
}
.sg__grid > .sg-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.sg__grid > .sg-tile:nth-child(1) .sg-tile__media { aspect-ratio: 4 / 3; }

.sg-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-line);
    transition: transform .25s ease, box-shadow .25s ease;
    isolation: isolate;
}
.sg-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sg-tile__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.sg-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.sg-tile:hover .sg-tile__media img { transform: scale(1.05); }
.sg-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 153, 181, 0) 40%, rgba(27, 61, 107, 0.55) 100%);
    transition: background .3s;
    pointer-events: none;
}
.sg-tile:hover .sg-tile__overlay {
    background: linear-gradient(180deg, rgba(0, 153, 181, 0.25) 0%, rgba(27, 61, 107, 0.65) 100%);
}
.sg-tile__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 20px;
    color: #fff;
    z-index: 1;
}
.sg-tile__title { font-size: 20px; font-weight: 800; }
.sg-tile__sub   { margin-top: 4px; font-size: 13px; opacity: 0.9; font-weight: 500; }

.sg__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.sg-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px dashed var(--c-blue);
    color: var(--c-blue);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    background: var(--c-blue-soft);
}

/* ============== FEATURES ============== */
.ft { padding: clamp(64px, 10vw, 120px) 0; background: var(--c-navy-soft); }
.ft__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ft-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ft-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ft-card__icon {
    --c: var(--c-blue);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--c) 14%, white);
    color: var(--c);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.ft-card__title { font-size: 21px; color: var(--c-navy); }
.ft-card__body  { margin-top: 12px; color: var(--c-muted); font-size: 15px; line-height: 1.6; }

/* ============== FLOW ============== */
.flow { padding: clamp(64px, 10vw, 120px) 0; background: #fff; position: relative; }
.flow__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    counter-reset: flow;
}
.flow__list::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--c-blue) 0 8px, transparent 8px 16px);
    opacity: 0.4;
    z-index: 0;
}
.flow__step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.flow__num {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}
.flow__phone { width: 130px; margin: 0 auto 18px; filter: drop-shadow(0 14px 28px rgba(27, 61, 107, 0.18)); }
.flow__title { font-size: 20px; color: var(--c-navy); }
.flow__body  { margin-top: 8px; color: var(--c-muted); font-size: 14px; max-width: 260px; margin-left: auto; margin-right: auto; }

/* ============== PARTNERS ============== */
.partners {
    padding: clamp(64px, 10vw, 120px) 0;
    background: linear-gradient(135deg, var(--c-navy) 0%, #0a2649 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/bg-pattern.jpg');
    background-image: image-set(url('/img/bg-pattern.webp') type('image/webp'),
                                url('/img/bg-pattern.jpg') type('image/jpeg'));
    background-size: 320px 320px;
    background-repeat: repeat;
    opacity: 0.18;
    filter: invert(1);
    mix-blend-mode: screen;
    pointer-events: none;
}
.partners__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}
.partners .section-kicker { background: rgba(255, 255, 255, 0.10); color: #cdeef5; }
.partners .section-title  { color: #fff; max-width: 560px; }
.partners .section-sub    { color: #cdeef5; }

.partners__list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.partners__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.partners__visual {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 8px;
}
.partners__card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    color: var(--c-navy);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.partners__card strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.partners__card span { font-size: 12px; color: var(--c-muted); }
.partners__card-icon {
    --c: var(--c-blue);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--c) 14%, white);
    color: var(--c);
    display: grid;
    place-items: center;
}
.partners__card--1 { transform: rotate(-2deg); }
.partners__card--2 { transform: translateX(20px); }
.partners__card--3 { transform: rotate(2deg); margin-left: 16px; }

.partners__pill {
    background: color-mix(in srgb, var(--c-blue) 14%, white);
    color: var(--c-blue);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.partners__pill--ok { background: color-mix(in srgb, var(--c-green) 14%, white); color: var(--c-green); }

.partners .btn--primary {
    margin-top: 32px;
    background: #fff;
    color: var(--c-navy);
}
.partners .btn--primary:hover { background: var(--c-green); color: #fff; }

/* ============== LANGUAGES & CITIES ============== */
.lang { padding: clamp(64px, 10vw, 120px) 0; background: var(--c-navy-soft); }

.lang__cities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 880px;
    margin: 16px auto 0;
}
.lang-city {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--c-navy);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lang-city:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--c-blue) 30%, white);
}
.lang-city__pin {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    flex-shrink: 0;
}
.lang-city__name { line-height: 1.2; }

@media (max-width: 720px) {
    .lang__cities { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .lang-city { padding: 14px 16px; font-size: 15px; }
}

/* ============== DOWNLOAD CTA ============== */
.dl {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 10vw, 120px) 0;
    background: linear-gradient(135deg, var(--c-blue) 0%, #007a90 100%);
    color: #fff;
    text-align: center;
}
.dl__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/bg-pattern.jpg');
    background-image: image-set(url('/img/bg-pattern.webp') type('image/webp'),
                                url('/img/bg-pattern.jpg') type('image/jpeg'));
    background-size: 280px 280px;
    background-repeat: repeat;
    opacity: 0.20;
    filter: invert(1);
    mix-blend-mode: screen;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.dl__inner { position: relative; }
.dl__title  { font-size: clamp(32px, 5vw, 52px); }
.dl__sub    { margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); color: #cdeef5; }
.dl__badges {
    margin-top: 36px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ============== FOOTER ============== */
.ft-foot { background: #0a2649; color: #cdeef5; padding-top: 56px; }
.ft-foot__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.ft-foot__logo { display: flex; align-items: center; }
.ft-foot__logo-img {
    width: 120px;
    height: 120px;
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 10px;
}
.ft-foot__tag { margin-top: 12px; font-size: 13px; opacity: 0.7; }

.ft-foot__contacts {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}
.ft-foot__contacts a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
    min-width: 0;
}
.ft-foot__contacts a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 153, 181, 0.45);
    box-shadow: 0 6px 18px -10px rgba(0, 153, 181, 0.6);
    transform: translateY(-1px);
    color: #fff;
}
.ft-foot__contact-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(0, 153, 181, 0.30), rgba(0, 153, 181, 0.12));
    color: #cdeef5;
    flex-shrink: 0;
}
.ft-foot__contacts a:hover .ft-foot__contact-icon {
    background: linear-gradient(135deg, var(--c-blue), #007a90);
    color: #fff;
}
.ft-foot__contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    flex: 1;
}
.ft-foot__contact-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(205, 238, 245, 0.55);
    font-weight: 700;
}
.ft-foot__contact-value {
    margin-top: 3px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}
.ft-foot__col h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.ft-foot__col a { display: block; padding: 6px 0; font-size: 14px; opacity: 0.85; }
.ft-foot__col a:hover { color: #fff; opacity: 1; }
.ft-foot__social { display: flex; gap: 12px; margin-top: 4px; }
.ft-foot__social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: background .2s, transform .15s;
}
.ft-foot__social a:hover { background: var(--c-blue); transform: translateY(-2px); }

.ft-foot__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0; }
.ft-foot__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 12px;
    color: rgba(205, 238, 245, 0.7);
}
.ft-foot__rights { flex: 1 1 auto; }
.ft-foot__credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(205, 238, 245, 0.55);
}
.ft-foot__credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    background: rgba(0, 153, 181, 0.18);
    border: 1px solid rgba(0, 153, 181, 0.35);
    transition: background .2s, border-color .2s, transform .15s, color .2s;
}
.ft-foot__credit-link:hover {
    background: var(--c-blue);
    border-color: var(--c-blue);
    color: #fff;
    transform: translateY(-1px);
}
.ft-foot__credit-link svg { color: var(--c-green); transition: color .2s; }
.ft-foot__credit-link:hover svg { color: #fff; }

/* ============== PARTNER PAGE ============== */
.partner-page {
    position: relative;
    padding: clamp(56px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
    background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 60%);
    overflow: hidden;
}
.partner-page__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/bg-pattern.jpg');
    background-image: image-set(url('/img/bg-pattern.webp') type('image/webp'),
                                url('/img/bg-pattern.jpg') type('image/jpeg'));
    background-size: 320px 320px;
    background-repeat: repeat;
    opacity: 0.14;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.partner-page__inner { position: relative; max-width: 760px; }
.partner-page__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--c-blue);
    margin-bottom: 32px;
}
.partner-page__title { font-size: clamp(32px, 5vw, 52px); color: var(--c-navy); }
.partner-page__lead { margin-top: 18px; color: var(--c-muted); font-size: 18px; line-height: 1.6; }
.partner-page__sub  { margin-top: 56px; font-size: 26px; color: var(--c-navy); }
.partner-page__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.partner-step {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.partner-step__title { color: var(--c-blue); font-size: 17px; }
.partner-step__body  { margin-top: 8px; color: var(--c-muted); font-size: 14px; }
.partner-page__contact { margin-top: 24px; }
.partner-page__contact p { margin: 16px 0; color: var(--c-muted); }
.partner-page__contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
    .nav__cta { display: none; }

    /* Hide banner; rebuild hero with CSS art */
    .hero__bg { display: none; }
    .hero {
        min-height: auto;
        padding: clamp(56px, 14vw, 96px) 0 clamp(64px, 16vw, 104px);
        background:
            radial-gradient(ellipse 80% 60% at 90% -10%, rgba(0, 153, 181, 0.20) 0%, transparent 60%),
            radial-gradient(ellipse 80% 60% at 10% 110%, rgba(30, 181, 58, 0.16) 0%, transparent 60%),
            linear-gradient(180deg, #eaf5f8 0%, #ffffff 92%);
    }

    .hero__pattern-mobile {
        display: block;
        position: absolute;
        inset: 0;
        z-index: -2;
        pointer-events: none;
        background-image: url('/img/bg-pattern.jpg');
        background-image: image-set(url('/img/bg-pattern.webp') type('image/webp'),
                                    url('/img/bg-pattern.jpg') type('image/jpeg'));
        background-size: 320px 320px;
        background-repeat: repeat;
        opacity: 0.10;
        mix-blend-mode: multiply;
    }

    .hero__blob {
        display: block;
        position: absolute;
        border-radius: 50%;
        filter: blur(48px);
        z-index: -2;
        pointer-events: none;
    }
    .hero__blob--1 {
        top: -120px; right: -120px;
        width: 360px; height: 360px;
        background: radial-gradient(circle, rgba(0, 153, 181, 0.45) 0%, transparent 70%);
    }
    .hero__blob--2 {
        bottom: -160px; left: -120px;
        width: 380px; height: 380px;
        background: radial-gradient(circle, rgba(30, 181, 58, 0.32) 0%, transparent 70%);
    }

    .hero__inner {
        position: relative;
        z-index: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero__copy { max-width: 540px; margin: 0 auto; text-align: center; }
    .hero__eyebrow { box-shadow: inset 0 0 0 1px rgba(0,153,181,0.22), 0 4px 14px -6px rgba(0,153,181,0.35); }
    .hero__headline { font-size: clamp(34px, 7.5vw, 48px); }
    .hero__sub { margin-top: 18px; }
    .hero__badges { justify-content: center; margin-top: 28px; gap: 10px; }
    .hero__caption { margin-top: 16px; }

    .sg__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sg__grid > .sg-tile:nth-child(1) { grid-column: span 2; grid-row: auto; }
    .sg__grid > .sg-tile:nth-child(1) .sg-tile__media { aspect-ratio: 16 / 9; }
    .ft__grid { grid-template-columns: 1fr; }
    .flow__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
    .flow__list::before { display: none; }
    .partners__inner { grid-template-columns: 1fr; gap: 40px; }
    .ft-foot__inner { grid-template-columns: 1fr 1fr; }
    .partner-page__steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav__links {
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 16px;
        background: #fff;
        border-radius: var(--radius-md);
        border: 1px solid var(--c-line);
        box-shadow: var(--shadow-md);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s, transform .2s;
    }
    .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .nav__links > a { padding: 10px 4px; border-bottom: 1px solid var(--c-line); }
    .nav__lang { margin: 8px 0 0; align-self: flex-start; }
    .nav__cta { display: inline-flex; margin-top: 8px; }
    .nav__burger { display: inline-flex; }

    .hero { padding: 48px 0 64px; min-height: auto; }
    .hero__headline { font-size: clamp(30px, 9vw, 40px); }
    .hero__blob--1 { width: 280px; height: 280px; top: -100px; right: -100px; }
    .hero__blob--2 { width: 300px; height: 300px; bottom: -140px; left: -100px; }
    .store-badge img { width: 158px; height: 52px; }

    .sg__grid { grid-template-columns: 1fr; }
    .sg__grid > .sg-tile:nth-child(1) { grid-column: span 1; }
    .flow__list { grid-template-columns: 1fr; }
    .ft-foot__inner { grid-template-columns: 1fr; gap: 28px; }

    .partners__visual { padding: 0; }
    .partners__card--1, .partners__card--2, .partners__card--3 { transform: none; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
    html { scroll-behavior: auto; }
}
