/* ===================== Allmiles — site.css ===================== */
:root{
  --ink:#14213D;
  --muted:#6B7690;
  --navy:#0C1530;
  --navy-2:#102A4C;
  --teal:#0E4D4A;
  --gold:#E7D08A;
  --gold-strong:#D4AF37;
  --blue:#2E9BE6;
  --blue-2:#1668CC;
  --footer:#446E94;
  --cream:#F8F6F2;
  --line:#E7E2D8;
  --radius:18px;
  --shadow:0 18px 50px rgba(16,30,60,.12);
  --swoosh:linear-gradient(90deg,#BfE000 0%,#33C9F0 55%,#2A6CF0 100%);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scrollbar-gutter:stable}
body{
  margin:0;
  font-family:"Mulish",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
img{max-width:100%;display:block;-webkit-user-drag:none;user-select:none}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:"Mulish",sans-serif;margin:0;line-height:1.15}
.container{width:min(1200px,92%);margin-inline:auto}
section{scroll-margin-top:84px}

.g{
  background:linear-gradient(90deg,#F0DDA0,#E7D08A 40%,#D4AF37);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.g2{
  background:linear-gradient(90deg,#33C9F0,#2A6CF0);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:"Mulish",sans-serif;font-weight:600;font-size:.95rem;
  padding:.7rem 1.5rem;border-radius:999px;border:0;cursor:pointer;
  transition:transform .15s ease,box-shadow .2s ease,opacity .2s ease;white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-gold{background:linear-gradient(95deg,#E7D08A,#D4AF37);color:#3a2e05;box-shadow:0 10px 24px rgba(212,175,55,.35)}
.btn-blue{background:linear-gradient(100deg,#42688E 0%,#5E89B5 55%,#7BA1CA 100%);color:#fff;box-shadow:0 10px 24px rgba(60,100,150,.32)}
.btn-outline{background:transparent;border:1.5px solid #C9D2E4;color:var(--ink)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue-2)}
.btn.lg{padding:.95rem 2.2rem;font-size:1.05rem}

/* ---------- Intro: fly into the porthole ---------- */
/* Intro: look out the porthole into a cloudy sky, fly in, clouds part, site opens */
#intro{position:fixed;inset:0;z-index:9999;background:transparent;overflow:hidden;
  animation:introOut .85s ease 3.5s forwards}
.intro-scene{position:absolute;inset:0;transform-origin:49.3% 44.4%;will-change:transform;
  animation:introZoom 4.35s cubic-bezier(.5,0,.82,.4) forwards}
.intro-sky{position:absolute;inset:0;overflow:hidden}
.intro-cabin{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cloud{position:absolute;will-change:transform;pointer-events:none;user-select:none}
.cloud.c1{width:46%;left:14%;top:12%;animation:cdrift1 7s ease-in-out infinite alternate}
.cloud.c2{width:38%;left:44%;top:32%;animation:cdrift2 9s ease-in-out infinite alternate}
.cloud.c3{width:32%;left:4%;top:40%;opacity:.9;animation:cdrift3 8s ease-in-out infinite alternate}
@keyframes introZoom{0%,30%{transform:scale(1)}100%{transform:scale(17)}}
@keyframes cdrift1{from{transform:translate(-7%,0)}to{transform:translate(11%,-3%)}}
@keyframes cdrift2{from{transform:translate(9%,1%)}to{transform:translate(-9%,-2%)}}
@keyframes cdrift3{from{transform:translate(-5%,0)}to{transform:translate(13%,-2%)}}
@keyframes introOut{to{opacity:0;visibility:hidden}}
#intro.skip{display:none}
@media (prefers-reduced-motion:reduce){#intro{display:none}}

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:transparent;transition:background .3s ease,box-shadow .3s ease;
  padding:.6rem 0;
}
.site-header.scrolled{
  background:rgba(18,64,74,.38);
  backdrop-filter:blur(18px) saturate(1.3);-webkit-backdrop-filter:blur(18px) saturate(1.3);
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 30px rgba(0,0,0,.12);
}
.nav-row{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;column-gap:1.6rem;height:64px;position:relative}
.nav-pill{grid-column:2;justify-self:center}
.nav-pill{
  display:flex;align-items:center;gap:4rem;
  background:rgba(255,255,255,.10);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.20);
  border-radius:13px;padding:.5rem .7rem .5rem 3.5rem;
}
.brand img{height:28px;width:auto;display:block}
.main-nav{display:flex;gap:3.4rem}
.main-nav a{color:#EAF0FB;font-size:.92rem;font-weight:500;opacity:.9;transition:opacity .2s}
.main-nav a:hover{opacity:1;color:#fff}
.btn-partner{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:"Mulish",sans-serif;font-weight:700;font-size:.92rem;
  color:#fff;white-space:nowrap;cursor:pointer;
  padding:.62rem 3rem;border-radius:14px;
  background:url('/img/btn-partner2.webp') center/100% 100% no-repeat;
  box-shadow:0 6px 16px rgba(20,40,80,.25);
  transition:transform .15s ease,box-shadow .2s ease;
}
.btn-partner:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(20,40,80,.32)}
.nav-actions{grid-column:3;justify-self:end;display:flex;align-items:center;gap:1rem}
.lang-switch{display:flex;align-items:center;gap:.25rem;font-size:.9rem;font-weight:600;
  padding:.2rem .35rem;border-radius:12px;
  background:rgba(12,22,44,.28);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.18);text-shadow:0 1px 3px rgba(0,0,0,.45)}
.lang-switch a{color:#EAF1FB;padding:.3rem .55rem;border-radius:9px;transition:background .2s,color .2s}
.lang-switch a.active{color:#fff;background:rgba(255,255,255,.28);padding:.35rem .85rem;text-shadow:none}
.lang-switch a:not(.active):hover{color:#fff}
.lang-switch span{color:rgba(255,255,255,.5)}
.burger{display:none;flex-direction:column;gap:5px;background:0;border:0;cursor:pointer;padding:6px}
.burger span{width:24px;height:2px;background:#fff;border-radius:2px;transition:.25s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Hero ---------- */
/* Full hero photo is always shown in its entirety (never cropped); copy overlays the dark-left area. */
.hero{position:relative;background:#0a1026;overflow:hidden}
/* Slider: 3 posters crossfading. Container keeps slide-1 aspect ratio so height never jumps. */
.hero-slides{position:relative;width:100%;aspect-ratio:2730/1328;z-index:0}
.hero-slide-pic{display:contents}
.hero-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity 1.1s ease;will-change:opacity}
.hero-slide.is-active{opacity:1}
/* Dots */
.hero-dots{position:absolute;left:0;right:0;bottom:5%;z-index:5;display:flex;justify-content:center;gap:.55rem}
.hero-dots .hd{width:10px;height:10px;padding:0;border:none;border-radius:50%;cursor:pointer;
  background:rgba(255,255,255,.45);transition:background .3s ease,width .3s ease,border-radius .3s ease}
.hero-dots .hd:hover{background:rgba(255,255,255,.7)}
.hero-dots .hd.active{background:#fff;width:28px;border-radius:6px}
@media (prefers-reduced-motion:reduce){.hero-slide{transition:none}}
/* Left scrim keeps the white copy readable over every slide */
.hero-overlay{position:absolute;inset:0;display:flex;align-items:center;z-index:4;
  background:linear-gradient(90deg,rgba(6,14,30,.62) 0%,rgba(6,14,30,.28) 38%,rgba(6,14,30,0) 64%)}
/* Twinkling stars overlay on the sky */
.hero-stars{position:absolute;inset:0;z-index:3;pointer-events:none;overflow:hidden;transition:opacity .8s ease}
.hero-stars.off{opacity:0}
.star{position:absolute;width:var(--s);height:var(--s);border-radius:50%;background:#fff;
  box-shadow:0 0 9px 3px rgba(255,255,255,.98),0 0 20px 7px rgba(150,205,255,.6);
  opacity:.6;animation:twinkle var(--d,3.5s) ease-in-out var(--dl,0s) infinite}
.star::before,.star::after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  background:linear-gradient(currentColor,transparent);color:rgba(255,255,255,.9)}
.star::before{width:1.5px;height:640%;background:linear-gradient(180deg,transparent,rgba(255,255,255,.95),transparent)}
.star::after{height:1.5px;width:640%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent)}
@keyframes twinkle{0%,100%{opacity:.12;transform:scale(.35) rotate(0deg)}45%{opacity:1;transform:scale(1.4) rotate(15deg)}60%{opacity:.85;transform:scale(1.05) rotate(20deg)}}
@media (prefers-reduced-motion:reduce){.star{animation:none;opacity:.8}}
.hero-copy{width:52%}
.hero-title{font-family:"Mulish",sans-serif;font-weight:700;color:#fff;font-size:3.1vw;line-height:1.18;letter-spacing:-.01em}
.g-gold{background:linear-gradient(180deg,#E6D292,#C6B057);-webkit-background-clip:text;background-clip:text;color:transparent}
.g-green{background:linear-gradient(180deg,#CADDA8,#9FBE76);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-sub{color:#D2DCF0;margin:1.4vw 0 1.8vw;font-size:1.1vw;max-width:30ch}
/* Hero download CTA: QR on the left, two store badges stacked on the right */
.hero-cta{display:flex;align-items:center;gap:1rem;max-width:380px}
.hero-qr{width:40%;max-width:150px;height:auto;border-radius:10px;flex:0 0 auto}
.hero-badges{display:flex;flex-direction:column;gap:.6rem;flex:0 1 auto;min-width:0;max-width:165px}
.hero-badge{display:block}
.hero-badge img{width:100%;height:auto;display:block;transition:transform .15s ease,opacity .2s ease}
.hero-badge:hover img{transform:translateY(-2px);opacity:.9}
/* Transparent click zones over the combined QR+badges image (still used by the app section) */
.cta-wrap{position:relative}
.cta-hot{position:absolute;display:block;z-index:3;cursor:pointer}
.store-badges{display:flex;gap:.8rem;flex-wrap:wrap}
.store-badges img{height:44px;width:auto}

/* ---------- Generic section ---------- */
.section{padding:4.5rem 0}
.section-title{font-size:clamp(1.5rem,2.4vw,2.3rem);font-weight:700;color:var(--ink)}
.section-title.center{text-align:center;margin-bottom:1rem}

/* ---------- Campaigns ---------- */
.campaigns{background:#fff}
.biz-line{display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;margin:.4rem 0 2.5rem;font-family:"Mulish";font-weight:800;font-size:clamp(1.9rem,3.6vw,3.3rem)}
.biz-line b{background:linear-gradient(90deg,#E7C24A,#8FBF5A);-webkit-background-clip:text;background-clip:text;color:transparent}
.biz-line span{background:linear-gradient(90deg,#5BB07E,#2E9BC9);-webkit-background-clip:text;background-clip:text;color:transparent}
.visa-mark{height:120px;width:auto;margin-inline-start:1.1rem;vertical-align:middle}
.camp-sofa{position:relative;max-width:1040px;margin:.5rem auto 2.5rem}
.camp-couch{display:block;width:62%;max-width:760px;height:auto;margin:0 auto;
  position:relative;z-index:1;filter:drop-shadow(0 24px 40px rgba(16,24,48,.18))}
/* Iridescent token-bubbles: float gently AND spin like coins (3D rotateY).
   Wrapper handles the float; the inner img handles the coin spin so the two transforms don't clash. */
.camp-bub{position:absolute;bottom:0;width:11%;pointer-events:none;z-index:2;perspective:620px}
.camp-bub img{width:100%;height:auto;display:block;transform-style:preserve-3d;
  filter:drop-shadow(0 12px 20px rgba(16,24,48,.16))}
/* Negative delays desync every coin from the start so none move in lockstep */
.camp-bub-l{left:-2%;bottom:22%;animation:bubFloatL 4.6s ease-in-out -1.2s infinite alternate}
.camp-bub-r{right:-2%;bottom:18%;animation:bubFloatR 5.2s ease-in-out -3.1s infinite alternate}
.camp-bub-l img{animation:coinSwing 2.6s ease-in-out -0.9s infinite alternate}
.camp-bub-r img{animation:coinSwingFlip 3s ease-in-out -2.1s infinite alternate}
/* Small coins, higher up */
.camp-bub-sm{width:7%}
.camp-bub-l2{left:7%;bottom:52%;animation:bubFloatR 3.9s ease-in-out -2.4s infinite alternate}
.camp-bub-r2{right:7%;bottom:56%;animation:bubFloatL 4.3s ease-in-out -0.7s infinite alternate}
.camp-bub-l2 img{animation:coinSwing 2.3s ease-in-out -1.6s infinite alternate}
.camp-bub-r2 img{animation:coinSwingFlip 2.8s ease-in-out -0.4s infinite alternate}
@keyframes bubFloatL{from{transform:translateY(3px) rotate(-2deg)}to{transform:translateY(-12px) rotate(2deg)}}
@keyframes bubFloatR{from{transform:translateY(-3px) rotate(2deg)}to{transform:translateY(-15px) rotate(-2deg)}}
@keyframes coinSwing{from{transform:rotateY(-26deg)}to{transform:rotateY(26deg)}}
/* Right-side coins mirrored so their logo faces the sofa (toward the centre) */
@keyframes coinSwingFlip{from{transform:scaleX(-1) rotateY(-26deg)}to{transform:scaleX(-1) rotateY(26deg)}}
.camp-slider{position:relative}
.camp-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2rem;max-width:1060px;margin-inline:auto}
.camp-card{margin:0;transition:transform .2s;aspect-ratio:800/945}
.camp-card:hover{transform:translateY(-6px)}
.camp-card img{width:100%;height:100%;display:block;aspect-ratio:800/945;object-fit:cover;filter:none}
.camp-nav{display:none} /* arrows only on mobile slider */

/* ---------- Card product ---------- */
.card-section{background:#fff}
.card-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.card-lead{color:var(--muted);margin:.9rem 0 1.6rem;font-size:1.05rem}
.price-row{display:flex;gap:2.5rem;margin-bottom:1.4rem}
.pr{display:flex;flex-direction:column}
.pr-label{font-size:.8rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}
.pr-val{font-family:"Mulish";font-weight:600;font-size:1.25rem}
.pr-val s{color:#A6ACB8;font-weight:500;font-size:1rem;margin-inline-end:.4rem}
.pr-val b{color:var(--ink)}
.benefits-box{background:#F4F4F7;border-radius:18px;padding:1.3rem 1.5rem;margin:0 0 1.8rem;max-width:500px;
  display:grid;grid-template-columns:1fr 1fr;gap:1rem 1.6rem}
.bf-item{display:flex;align-items:center;gap:.7rem;font-weight:500;font-size:.97rem;color:var(--ink)}
.bf-item img{width:26px;height:26px;object-fit:contain;flex:0 0 26px}
.card-actions{display:flex;gap:1rem;flex-wrap:wrap}
.card-actions .btn{min-width:200px;padding:.95rem 1.5rem;border-radius:999px}

/* Card showcase: fan + thumbnail selector */
.card-visual{display:flex;flex-direction:column;align-items:center;gap:1.6rem}
.card-stack{position:relative;width:100%;max-width:460px;height:310px;perspective:1050px}
.stack-card{position:absolute;left:50%;top:50%;width:72%;border-radius:14px;
  transform:translate(-50%,-50%);transform-origin:center;
  filter:drop-shadow(0 16px 30px rgba(16,24,48,.28));
  transition:transform 1.15s cubic-bezier(.33,0,.18,1),opacity .9s ease,filter .6s;backface-visibility:hidden;will-change:transform,opacity}
.stack-card.is-front{filter:drop-shadow(0 26px 42px rgba(16,24,48,.4))}
.card-thumbs{display:flex;gap:.7rem;justify-content:center;flex-wrap:wrap}
.thumb{border:2px solid #D7DCE6;border-radius:9px;padding:5px;background:#fff;cursor:pointer;
  width:84px;box-shadow:0 4px 12px rgba(16,24,48,.1);transition:border-color .2s,transform .2s}
.thumb img{width:100%;display:block;border-radius:4px}
.thumb:hover{transform:translateY(-2px)}
.thumb.active{border-color:#3F86BF}

/* ---------- App / Ailə hesabı (3 columns) ---------- */
.app-section{background:#fff;overflow:hidden}
.app-grid3{display:grid;grid-template-columns:minmax(400px,1.2fr) auto 1fr;gap:2rem;align-items:center}
.app-copy .section-title{font-size:clamp(2rem,3.3vw,3.1rem);color:#000;line-height:1.14;font-weight:800;white-space:nowrap}
.app-copy .section-title .g2{background:none;-webkit-background-clip:initial;background-clip:initial;color:#000;-webkit-text-fill-color:#000}
.app-copy p{color:#000;margin:1.1rem 0 1.9rem;font-size:1.2rem;max-width:38ch}
.app-dl{display:inline-block;width:340px;max-width:92%}
.app-dl-img{width:100%;height:auto;display:block}
/* phone with drifting clouds (only these move) */
.app-phone-wrap{position:relative;display:flex;justify-content:center;align-items:center;padding:1rem 0;transform:translateX(110px)}
.app-phone-img{width:360px;max-width:76vw;position:relative;z-index:2;filter:none;
  -webkit-mask-image:linear-gradient(to bottom,#000 93%,transparent 100%);
  mask-image:linear-gradient(to bottom,#000 93%,transparent 100%)}
.pcloud{position:absolute;z-index:3;pointer-events:none;opacity:.97;will-change:transform}
.pcloud-tr{width:280px;top:-4%;right:-16%;animation:pcloudA 9s ease-in-out infinite alternate}
.pcloud-bl{width:370px;bottom:-12%;left:-36%;animation:pcloudB 12s ease-in-out infinite alternate}
.pcloud-br{width:235px;bottom:8%;right:-20%;animation:pcloudC 8s ease-in-out infinite alternate}
@keyframes pcloudA{from{transform:translate(0,0)}to{transform:translate(-34px,15px)}}
@keyframes pcloudB{from{transform:translate(0,0)}to{transform:translate(16px,6px)}}
@keyframes pcloudC{from{transform:translate(0,0)}to{transform:translate(-30px,-11px)}}
@media (prefers-reduced-motion:reduce){.pcloud{animation:none}}
/* right column: vertical round icons */
.app-icons{display:flex;flex-direction:column;align-items:center;gap:2rem;transform:translateX(45px)}
.app-icons-title{font-family:"Mulish";font-weight:700;font-size:1.8rem;color:#000;margin-bottom:.4rem}
.round-icon{width:152px;height:152px}
.round-icon img{width:100%;height:100%;object-fit:contain;filter:none}
/* Clickable train/plane icons: nice hover lift + press-down feedback */
.round-icon-btn{border:0;background:none;padding:0;cursor:pointer;
  transition:transform .18s cubic-bezier(.34,1.56,.64,1),filter .18s ease;-webkit-tap-highlight-color:transparent}
.round-icon-btn:hover{transform:translateY(-4px) scale(1.04)}
.round-icon-btn:hover img{filter:none}
.round-icon-btn:active{transform:scale(.9);transition-duration:.08s}
.round-icon-btn:focus-visible{outline:3px solid rgba(46,155,230,.6);outline-offset:4px;border-radius:50%}
/* Spin (coin-flip) when clicked */
.round-icon-btn.spin{animation:iconSpin .65s cubic-bezier(.4,0,.2,1)}
@keyframes iconSpin{from{transform:perspective(600px) rotateY(0)}to{transform:perspective(600px) rotateY(360deg)}}

/* ---------- Promo pop-up (after intro) ---------- */
.promo-popup{position:fixed;inset:0;z-index:9990;display:flex;align-items:center;justify-content:center;
  background:rgba(8,14,28,.72);backdrop-filter:blur(3px);opacity:0;visibility:hidden;
  transition:opacity .3s ease,visibility .3s ease;padding:2rem}
.promo-popup.open{opacity:1;visibility:visible}
.promo-box{position:relative;max-width:min(92vw,420px);transform:scale(.92);
  transition:transform .35s cubic-bezier(.34,1.4,.64,1)}
.promo-popup.open .promo-box{transform:scale(1)}
.promo-box a{display:block}
.promo-box img{width:100%;height:auto;display:block;border-radius:16px;box-shadow:0 30px 70px rgba(0,0,0,.5)}
.promo-close{position:absolute;top:-16px;right:-16px;width:42px;height:42px;border-radius:50%;border:none;
  background:#fff;color:#0B1426;font-size:1.7rem;line-height:1;cursor:pointer;display:grid;place-items:center;
  box-shadow:0 6px 18px rgba(0,0,0,.35)}

/* App-section icons swap the phone screenshot, with a quick fade */
.app-phone-img{transition:opacity .22s ease,transform .22s ease}
.app-phone-img.swapping{opacity:0;transform:scale(.97)}
.round-icon-btn.is-active{transform:translateY(-2px)}
.round-icon-btn.is-active img{filter:none}

/* ---------- Calculator (cloud panel) ---------- */
.calc-section{background:#fff}
.calc-wrap{position:relative;border-radius:32px;
  background:#eef3f8 url('/img/calc-bg.webp') center/cover no-repeat;
  display:grid;grid-template-columns:1.02fr .98fr;align-items:center;
  min-height:520px;padding:2.2rem 2.4rem;overflow:hidden}
/* left calculator card (glassy white) */
.calc-card{position:relative;z-index:2;background:rgba(255,255,255,.78);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.7);border-radius:26px;padding:2rem 2.1rem;
  box-shadow:0 24px 60px rgba(40,60,100,.16);max-width:480px}
.calc-title{font-family:"Mulish";font-weight:800;font-size:clamp(1.6rem,2.4vw,2.1rem);color:#0B1426}
.calc-desc{color:#5A6478;margin:.7rem 0 1.4rem;font-size:.95rem;line-height:1.5}
.calc-tabs{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1.3rem}
.ctab{padding:.5rem 1.15rem;border-radius:999px;border:1.5px solid #C9D4E2;background:rgba(255,255,255,.6);
  color:#42536B;font-weight:600;cursor:pointer;font-family:"Mulish";font-size:.88rem;transition:.2s}
.ctab.active{background:linear-gradient(120deg,#1F4E79,#2E6CA3);border-color:transparent;color:#fff;box-shadow:0 6px 14px rgba(31,78,121,.3)}
/* inner fields card */
.calc-fields{background:#fff;border-radius:18px;box-shadow:0 10px 26px rgba(40,60,100,.1);padding:.4rem 1.2rem}
.cf-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.05rem 0}
.cf-row-2{border-top:1px solid #ECEFF4}
.cf-main{flex:1;min-width:0}
.cf-label{display:block;font-size:.82rem;color:#8A93A6;margin-bottom:.25rem}
.cf-value{display:flex;align-items:baseline;gap:.4rem;font-family:"Mulish";font-weight:700;font-size:1.4rem;color:#0B1426}
.cf-value em{font-style:normal;font-weight:600;color:#0B1426}
.cf-value input{border:0;outline:0;background:transparent;font:inherit;color:inherit;width:auto;field-sizing:content;max-width:7em}
.cf-value b{font-weight:800}
.cf-side{display:flex;flex-direction:column;align-items:flex-end;gap:.4rem;color:#8A93A6}
.cf-unit{font-weight:600;font-size:.95rem}
.cf-refresh{width:34px;height:34px;border-radius:50%;border:1px solid #DCE2EC;background:#fff;color:#5A6478;
  display:grid;place-items:center;cursor:pointer;transition:.2s}
.cf-refresh:hover{color:#1F4E79;border-color:#1F4E79;transform:rotate(-40deg)}
/* bottom pick row */
.calc-pick{display:flex;align-items:center;gap:.8rem;margin-top:1.3rem;background:#fff;border-radius:16px;
  box-shadow:0 10px 26px rgba(40,60,100,.1);padding:.55rem .6rem .55rem 1.2rem}
.calc-city{font-family:"Mulish";font-weight:700;color:#0B1426;font-size:1.05rem;white-space:nowrap}
.calc-citysel{flex:1;min-width:0;
  appearance:none;-webkit-appearance:none;-moz-appearance:none;
  font-family:"Mulish";font-weight:600;font-size:.95rem;color:#0B1426;
  padding:.7rem 2.4rem .7rem 1rem;cursor:pointer;outline:0;
  border:1px solid #E3E8F0;border-radius:12px;
  background-color:#F6F8FB;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A93A6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .9rem center;
  transition:border-color .2s,box-shadow .2s}
.calc-citysel:hover{border-color:#C9D3E2}
.calc-citysel:focus{border-color:#2E9BE6;box-shadow:0 0 0 3px rgba(46,155,230,.15)}
.calc-citysel option{color:#0B1426}
.calc-pick .btn-blue{padding:.8rem 2rem;border-radius:12px;flex:0 0 auto}
/* right Galata art */
/* Static decorative flock beside the city image (no animation) */
.calc-birds{display:none}
.calc-art{position:relative;z-index:1}
/* Fixed frame so swapping city images never resizes/shifts the layout */
.calc-art img{width:118%;max-width:none;margin-inline-start:-6%;
  aspect-ratio:900/885;object-fit:contain;object-position:center;
  filter:drop-shadow(0 24px 50px rgba(16,24,48,.2))}

/* ---------- Destinations ---------- */
.dest-section{background:#fff;position:relative}
.dest-section::before{content:"";position:absolute;inset:0;background:url('/img/worldmap.webp') center/74% no-repeat;opacity:.92;filter:contrast(1.5) brightness(.92);pointer-events:none}
.dest-grid{position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:1.8rem 2.2rem;max-width:1000px;margin-inline:auto}
.dest-card{position:relative;aspect-ratio:900 / 432;background-size:contain;background-position:center;background-repeat:no-repeat}
.dest-body{position:absolute;left:41%;right:5%;top:0;bottom:0;display:flex;flex-direction:column;justify-content:center;gap:.25rem}
.dest-body h3{font-family:"Mulish";font-size:clamp(1.05rem,1.6vw,1.5rem);font-weight:800;color:#0B1426;margin-bottom:.1rem;line-height:1.15}
.dest-loc{display:block;color:#8A93A6;font-size:.92rem;margin-bottom:.5rem}
.dest-mil-img{width:134px;height:auto;display:block;margin-top:.7rem}

/* ---------- Partner CTA ---------- */
.partner-cta{background:linear-gradient(110deg,#0b1a3a,#0e4d4a);color:#fff}
.partner-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.partner-cta h2{font-size:clamp(1.4rem,2.4vw,2rem);font-weight:700}
.partner-cta p{color:#C4D6E6;margin-top:.6rem;max-width:48ch}

/* ---------- FAQ ---------- */
.faq-section{background:var(--cream)}
.faq-list{max-width:760px;margin:1.5rem auto 0;display:grid;gap:.8rem}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;padding:.3rem 1.2rem}
.faq-item summary{cursor:pointer;list-style:none;padding:.9rem 0;font-family:"Mulish";font-weight:600;display:flex;justify-content:space-between;align-items:center}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:1.4rem;color:var(--blue);transition:.2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{margin:0 0 1rem;color:var(--muted)}

/* ---------- Footer ---------- */
.site-footer{background:var(--footer);color:#EaeFf6;padding:3.5rem 0 3rem}
.foot-grid{display:grid;
  grid-template-columns:1.5fr 1.05fr 1.05fr 1.1fr;
  grid-template-areas:
    "brand products links platforms"
    "brand contact  contact social";
  column-gap:2rem;row-gap:3.2rem;align-items:start}

/* headings + links shared */
.foot-grid h4{font-size:.92rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  margin:0 0 1.4rem;color:#C2D0DE}
.foot-col a{display:block;color:#EAF1F8;font-size:1.14rem;margin-bottom:1rem;opacity:.95;transition:opacity .2s}
.foot-col a:hover{opacity:1;color:#fff}
.foot-sub{display:block;font-family:"Mulish";font-weight:700;color:#fff;font-size:1.14rem;margin-bottom:1.1rem}

/* brand column: logo top, slogan + copyright bottom */
.foot-brand{grid-area:brand;display:flex;flex-direction:column;height:100%;min-height:300px}
.foot-logo{height:46px;width:auto;align-self:flex-start;margin-bottom:auto}
.foot-brand-bottom{margin-top:2.5rem}
.foot-tag{font-family:"Mulish";font-weight:800;font-size:2.1rem;line-height:1.15;color:#fff;margin:0;white-space:nowrap}
.foot-tag .ft-g{background:linear-gradient(90deg,#9FD64A,#2FA77F);-webkit-background-clip:text;background-clip:text;color:transparent}
.foot-copy{font-size:.92rem;color:#C2D0DE;opacity:.85;margin:1.2rem 0 0}

.foot-products{grid-area:products}
.foot-links{grid-area:links}
.foot-platforms{grid-area:platforms}
.foot-contact{grid-area:contact;max-width:480px}
.foot-social{grid-area:social}

.store-badges{display:flex;flex-direction:column;gap:.8rem}
.store-badges img{height:48px;width:auto}

.foot-contact p{font-size:1.06rem;color:#DCE6F0;margin:.3rem 0 1rem;line-height:1.5}
.foot-join{font-family:"Mulish";font-weight:700;color:#fff !important;font-size:1.18rem !important;margin-bottom:1rem !important}
.foot-addr{opacity:.9}

.foot-social-icons{display:flex;align-items:center;gap:.7rem}
.foot-social-icons a{display:inline-flex;align-items:center;justify-content:center;transition:transform .2s ease,opacity .2s ease}
.foot-social-icons a:hover{transform:translateY(-2px);opacity:.85}
.foot-social-icons img{width:46px;height:46px;object-fit:contain}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .card-grid{grid-template-columns:1fr}
  /* Card section: centered text, full-width stacked buttons */
  .card-info{text-align:center}
  .card-lead{margin-inline:auto}
  .price-row{justify-content:center}
  .benefits-box{text-align:left}
  .card-actions{display:flex;flex-direction:column;gap:.8rem}
  .card-actions .btn{width:100%}
  /* Calculator: city image on top, tabs as 2×2 */
  .calc-wrap{grid-template-columns:1fr;gap:1.5rem}
  .calc-card{max-width:100%;order:2}
  .calc-art{order:1} .calc-art img{width:100%;margin-inline-start:0}
  .calc-tabs{display:grid;grid-template-columns:1fr 1fr;gap:.55rem}
  .ctab{text-align:center}
  .calc-birds{display:none}
  /* Bottom pick row -> stacked full-width pills (city / select / button) */
  .calc-pick{flex-direction:column;align-items:stretch;gap:.7rem;
    background:none;box-shadow:none;padding:0;margin-top:1.1rem}
  .calc-city{width:100%;white-space:normal;text-align:left;font-size:1rem;
    padding:.85rem 1.15rem;border:1.5px solid #E3E8F0;border-radius:14px;background:#fff}
  .calc-citysel{width:100%;flex:none;border-radius:14px;background-color:#fff;
    padding:.9rem 2.4rem .9rem 1.15rem}
  .calc-pick .btn-blue{width:100%;flex:none;border-radius:16px;padding:.95rem 1rem;text-align:center}
  .app-grid3{grid-template-columns:1fr;justify-items:center;text-align:center;gap:1.5rem}
  .app-copy{order:1} .app-phone-wrap{order:2;transform:none} .app-icons{order:3}
  .app-copy p{margin-inline:auto} .app-dl{justify-content:center}
  .app-icons{flex-direction:row;flex-wrap:wrap;justify-content:center;transform:none}
  .app-icons-title{width:100%}
  .dest-grid{grid-template-columns:1fr;max-width:480px}
  .foot-grid{grid-template-columns:1fr 1fr;
    grid-template-areas:
      "brand brand"
      "products links"
      "platforms social"
      "contact contact"}
  .foot-brand{min-height:0}
  .foot-brand-bottom{margin-top:1.6rem}
  .card-visual{order:-1}
  /* Visa cards: keep the auto-rotating coverflow (now swipeable), just smaller so it fits */
  .card-stack{max-width:360px;height:250px;overflow:hidden}
  /* Snappy but smooth swipe on touch: quick ease-out, don't animate the heavy shadow */
  .stack-card{width:62%;filter:drop-shadow(0 10px 20px rgba(16,24,48,.16));
    transition:transform .5s cubic-bezier(.25,.8,.35,1),opacity .45s ease}
  .stack-card.is-front{filter:drop-shadow(0 13px 24px rgba(16,24,48,.24))}
}
/* Mobile hero treatment (phones / small tablets) — kept below the desktop hero used on the
   1024px iPad portrait, whose poster+overlay layout already looks correct. */
@media (max-width:960px){
  .hero-slides{aspect-ratio:auto;height:76vh;min-height:540px}
  .hero-slide{object-fit:cover;object-position:62% center}
  .hero-overlay{align-items:flex-start;
    background:linear-gradient(180deg,rgba(6,14,30,.62) 0%,rgba(6,14,30,.18) 34%,rgba(6,14,30,.22) 58%,rgba(6,14,30,.72) 100%)}
  .hero-copy{width:100%;padding-top:5.5rem}
  .hero-title{font-size:8vw}
  .hero-sub{font-size:3.5vw;margin:1rem 0 1.4rem;max-width:28ch}
  .hero-cta{max-width:320px}
}
@media (max-width:760px){
  /* Solid teal header bar (mobile mockup) */
  .site-header{background:linear-gradient(90deg,#0e2f37,#1b4d54);backdrop-filter:none;
    border-bottom:1px solid rgba(255,255,255,.08)}
  .site-header.scrolled{background:linear-gradient(90deg,#0e2f37,#1b4d54)}
  .site-header{padding:.3rem 0}
  .nav-row{height:50px;column-gap:.8rem}
  .nav-pill{background:transparent;border:none;padding:0;gap:0;backdrop-filter:none}
  .nav-pill .btn-partner{display:none}
  /* keep the wordmark logo at its true 4.88:1 ratio, never let flex squash it */
  .brand{flex:0 0 auto;display:flex;align-items:center}
  .brand img{height:22px;width:auto;max-width:none;flex-shrink:0}
  .main-nav{position:fixed;inset:50px 0 auto 0;flex-direction:column;background:#0a1228;padding:1.2rem 6%;gap:1.1rem;transform:translateY(-150%);transition:transform .3s;border-bottom:1px solid rgba(255,255,255,.08)}
  .main-nav.open{transform:translateY(0)}
  .burger{display:flex}
  .lang-switch{font-size:.82rem;padding:.15rem .25rem}
  .lang-switch a{padding:.25rem .4rem}
  .lang-switch a.active{padding:.28rem .6rem}
  /* Hide card thumbnails row on mobile */
  .card-thumbs{display:none}
  /* Hide hero QR + store badges on mobile */
  .hero-cta{display:none}
  /* Campaigns -> one-card slider with arrows */
  .camp-slider{max-width:520px;margin-inline:auto;padding-inline:6px}
  .camp-grid{display:flex;grid-template-columns:none;gap:12px;max-width:none;margin:0;
    overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;scrollbar-width:none;padding:.4rem 0 1rem}
  .camp-grid::-webkit-scrollbar{display:none}
  .camp-card{flex:0 0 100%;scroll-snap-align:center}
  .camp-card:hover{transform:none}
  .camp-nav{display:flex;align-items:center;justify-content:center;position:absolute;top:44%;
    transform:translateY(-50%);z-index:4;width:42px;height:42px;border-radius:50%;border:none;
    cursor:pointer;background:rgba(15,30,45,.55);color:#fff;font-size:1.7rem;line-height:1;
    padding:0 0 4px;box-shadow:0 4px 14px rgba(16,24,48,.28);-webkit-tap-highlight-color:transparent}
  .camp-nav:active{background:rgba(15,30,45,.85)}
  .camp-nav.prev{left:0}
  .camp-nav.next{right:0}
  /* lighter shadow so overlapping cards don't wash the white bg grey */
  .camp-card img{filter:none}
  .biz-line{font-size:1.7rem;gap:.35rem}
  .visa-mark{height:64px;margin-inline-start:.5rem}
  .price-row{gap:1.5rem}
  /* Calculator fits the phone with breathing room around the card */
  .calc-wrap{padding:1rem;border-radius:22px;min-height:0}
  .calc-card{padding:1.4rem 1.25rem;border-radius:20px}
  /* Destinations: vertical world map background tuned for phones */
  .dest-section::before{background:url('/img/worldmap-mobile.png') top center/cover no-repeat;opacity:.9}
  /* Three round icons on a single row on phones */
  .app-icons{gap:1rem 1.1rem}
  .round-icon{width:92px;height:92px}
  /* Remove the bottom-right cloud overlapping the phone button on mobile */
  .pcloud-br{display:none}
  /* Move the big bottom cloud further left so it doesn't cover the phone text */
  .pcloud-bl{left:-46%;width:300px;bottom:-10%}
  /* Let long RU titles wrap instead of overflowing (which shifted the page) */
  .app-copy .section-title{white-space:normal}
  .foot-tag{white-space:normal}
  /* Remove the app download badges + QR block on mobile */
  .app-dl{display:none}
  /* Tighten the empty space around the Visa coverflow (tall enough to not clip the card shadow) */
  .card-stack{height:210px}
  .card-grid{gap:1.4rem}
  .foot-grid{grid-template-columns:1fr;row-gap:2rem;
    grid-template-areas:"brand" "products" "links" "platforms" "contact" "social"}
  /* Intro porthole: keep cover; only two clouds (like desktop) on phone */
  .cloud.c1{width:56%;left:10%;top:26%}
  .cloud.c2{width:48%;left:36%;top:40%}
  .cloud.c3{display:none}
}
