/* ============================================================
   home.css — landing page only (index.html)
   Depends on assets/css/base.css for tokens, reset, nav, footer.
   ============================================================ */

/* ───── Background images (TODO: replace srcs in HTML) ───── */
.bg-img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ───── HERO ───── */
.hero{
  position: relative; overflow: hidden;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  color: #fff;
  background: #1b1b2e;
}
.hero-media{
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,32,0.0) 30%, rgba(15,16,32,0.65) 100%),
    linear-gradient(180deg, rgba(15,16,32,0.35) 0%, rgba(15,16,32,0) 40%);
  pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 24px 96px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.hero-eyebrow .pulse{
  width: 8px; height: 8px; border-radius: 999px; background: var(--pink);
  box-shadow: 0 0 0 0 rgba(252,124,180,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(252,124,180,0.7); }
  70%{ box-shadow: 0 0 0 10px rgba(252,124,180,0); }
  100%{ box-shadow: 0 0 0 0 rgba(252,124,180,0); }
}
.hero h1{
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero h1 .pink{ color: var(--pink); }
.hero-sub{
  max-width: 620px;
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  margin: 0 0 40px;
  line-height: 1.55;
}
.hero-cta{ display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta{
  margin-top: 64px;
  display: flex; gap: 56px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-meta .item .v{
  font-size: 36px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1;
}
.hero-meta .item .l{
  margin-top: 8px;
  font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500;
}

/* ───── Section base ───── */
section{ padding: 140px 0; }
.section-soft{ background: var(--bg-soft); }
.section-dark{ background: var(--navy); color: #fff; }

.eyebrow{
  display: inline-block;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--pink); text-transform: uppercase;
  margin-bottom: 18px;
}
.section-dark .eyebrow{ color: var(--pink); }
.h-section{
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.h-section .pink{ color: var(--pink); }
.h-section .navy{ color: var(--navy); }
.section-lead{
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 18px; font-weight: 500;
  max-width: 640px;
  line-height: 1.55;
}
.section-dark .section-lead{ color: rgba(255,255,255,0.78); }
.section-head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 72px;
}

/* ───── 3-step process ───── */
.steps{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px 44px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(35,34,100,0.18);
  border-color: transparent;
}
.step-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--navy); color: #fff;
  font-weight: 800; font-size: 17px;
  margin-bottom: 96px;
}
.step-illu{
  position: absolute; right: 28px; top: 36px;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--navy);
}
.step h3{
  font-size: 24px; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.25;
}
.step p{
  margin: 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ───── Feature split ───── */
.split{
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
  align-items: stretch;
}
.split-reverse{ grid-template-columns: 1fr 1.05fr; }
.split-media{
  background: var(--bg-soft);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
}
/* Image fills the column at exactly the text column's height — no empty gaps. */
.split-media .bg-img{ position: absolute; inset: 0; }
.split-text .eyebrow{ margin-bottom: 14px; }
.split-text h2{
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 24px;
  text-wrap: balance;
}
.split-text p{
  color: var(--ink-2);
  font-size: 17.5px;
  line-height: 1.7;
  margin: 0 0 36px;
}
.checklist{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.checklist li{
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: 14px;
  font-weight: 600; font-size: 15.5px;
  color: var(--ink);
  transition: background .15s ease;
}
.checklist li:hover{ background: #eef0f4; }
.checklist li .ck{
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 999px;
  background: var(--pink); color: #fff;
  display: grid; place-items: center;
}

/* ───── App Tour (phone with rotating screens) ───── */
.tour{
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.tour .container{ position: relative; z-index: 2; }
.tour-head{
  text-align: center;
  margin-bottom: 88px;
  display: flex; flex-direction: column; align-items: center;
}
.tour-head .h-section{ text-align: center; }
.tour-head .section-lead{ text-align: center; margin: 24px auto 0; }

.tour-stage{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  max-width: 1120px; margin: 0 auto;
}

/* Phone */
.phone-stage{
  position: relative;
  display: grid; place-items: center;
  min-height: 720px;
}
.phone-stage::before{
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(252,124,180,0.16) 0%, rgba(252,124,180,0) 60%);
  z-index: 0;
  pointer-events: none;
}
.phone-stage::after{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35,34,100,0.12) 0%, rgba(35,34,100,0) 60%);
  z-index: 0;
  pointer-events: none;
  transform: translate(-180px, 200px);
}
.phone{
  position: relative; z-index: 2;
  width: 320px; height: 660px;
  background: #0f1020;
  border-radius: 52px;
  padding: 11px;
  box-shadow:
    0 60px 100px -40px rgba(15,16,32,0.55),
    0 0 0 1px rgba(0,0,0,0.05);
}
.phone .notch{
  position: absolute;
  left: 50%; top: 19px;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0f1020;
  border-radius: 16px;
  z-index: 10;
  pointer-events: none;
}
.phone .notch::after{
  content: ""; position: absolute;
  right: 16px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 999px;
  background: #2a2b40;
}
.phone-screens{
  position: relative;
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 42px;
  overflow: hidden;
}
.screen{
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .65s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  background: #fff;
  display: flex; flex-direction: column;
  text-align: left;
}
.screen.active{
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

/* Floating side badges */
.phone-stage .float{
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--ink);
  box-shadow: 0 16px 40px -20px rgba(15,16,32,0.18);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 3;
  transition: opacity .4s ease, transform .5s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.phone-stage .float.show{ opacity: 1; transform: translateY(0); }
.phone-stage .float .pill{
  width: 8px; height: 8px; border-radius: 999px; background: var(--pink);
  box-shadow: 0 0 0 4px rgba(252,124,180,0.18);
}
.phone-stage .float-tl{ top: 8%; left: -8px; }
.phone-stage .float-br{ bottom: 12%; right: -12px; }

/* Chapter tabs */
.tour-tabs{ display: grid; gap: 14px; }
.tour-tab{
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  padding: 22px 26px;
  border-radius: 22px;
  cursor: pointer;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  row-gap: 0;
  align-items: start;
  color: var(--ink);
  width: 100%;
  font-family: inherit;
}
.tour-tab:hover{ background: rgba(255,255,255,0.55); }
.tour-tab.active{
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 30px 60px -36px rgba(35,34,100,0.22);
}
.tour-tab .num{
  width: 44px; height: 44px; border-radius: 12px;
  background: #ececef;
  display: grid; place-items: center;
  font-weight: 800; color: var(--ink-3);
  font-size: 14px;
  transition: background .35s ease, color .35s ease;
  grid-row: 1 / span 3;
}
.tour-tab.active .num{ background: var(--navy); color: #fff; }
.tour-tab h3{
  margin: 4px 0 0;
  font-size: 22px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.25;
  grid-column: 2;
}
.tour-tab p{
  grid-column: 2;
  margin: 0;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .3s ease, margin-top .3s ease;
}
.tour-tab.active p{ max-height: 120px; opacity: 1; margin-top: 10px; }
.tour-tab .progress{
  grid-column: 2;
  margin-top: 16px;
  height: 2px; background: var(--line);
  border-radius: 2px; overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, margin-top .35s ease;
}
.tour-tab.active .progress{ max-height: 4px; }
.tour-tab .progress .bar{
  height: 100%;
  background: var(--pink);
  width: 0%;
}

/* Phone inner UI */
.screen .sbar{
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 26px 4px;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
}
.screen .sbar-r{ display: flex; gap: 5px; align-items: center; }
.screen .shead{
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px 12px;
}
.screen .shead h5{
  margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -0.03em;
}
.screen .shead .ic{
  width: 34px; height: 34px; border-radius: 12px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--ink);
}

.ssearch{
  margin: 2px 18px 14px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 13.5px; font-weight: 600;
  display: flex; gap: 8px; align-items: center;
  color: var(--ink);
}
.schips{
  display: flex; gap: 6px; padding: 0 18px 14px;
}
.chip{
  font-size: 11.5px; font-weight: 700;
  padding: 7px 12px; border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-2);
  white-space: nowrap;
}
.chip.on{ background: var(--navy); color: #fff; }

.slist{ padding: 0 18px 18px; display: grid; gap: 10px;}
.shosp{
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  background: #fff;
}
.shosp-img{
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #ffeef5, #fcd6e5);
  border-radius: 11px;
  display: grid; place-items: center;
  color: var(--pink);
}
.shosp b{ font-size: 13.5px; font-weight: 800; letter-spacing: -0.02em;}
.shosp .rate{ font-size: 11px; color: var(--ink-2); margin-top: 3px;}
.shosp .book{
  padding: 7px 13px; border: 0; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-weight: 800; font-size: 11.5px;
  font-family: inherit;
}

/* Interpreter screen */
.intcard{
  margin: 10px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 20px 22px;
  text-align: center;
  background: #fff;
}
.intcard .ava{
  width: 92px; height: 92px; border-radius: 999px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #ffd1e3, #fc7cb4);
  display: grid; place-items: center;
  font-size: 34px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em;
  position: relative;
}
.intcard .ava::after{
  content:""; position: absolute; right: 4px; bottom: 4px;
  width: 18px; height: 18px; border-radius: 999px;
  background: #22c55e; border: 3px solid #fff;
}
.intcard h6{
  margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -0.03em;
}
.intcard .langs{
  margin-top: 6px;
  font-size: 12.5px; color: var(--ink-2); font-weight: 600;
}
.intcard .stat-row{
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-top: 18px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}
.intcard .stat b{ display: block; font-size: 16px; font-weight: 900; letter-spacing: -0.02em;}
.intcard .stat span{ font-size: 10.5px; color: var(--ink-3); margin-top: 3px; font-weight: 600;}
.btn-screen{
  margin: 0 18px 8px;
  padding: 14px; border-radius: 14px; border: 0;
  background: var(--pink); color: #fff;
  font-weight: 800; font-size: 14px;
  text-align: center;
  width: calc(100% - 36px);
  font-family: inherit;
}
.btn-screen.ghost{
  background: var(--bg-soft);
  color: var(--ink);
}

/* Events screen */
.evbig{
  margin: 4px 18px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  position: relative; overflow: hidden;
}
.evbig::after{
  content:""; position: absolute;
  right: -60px; top: -60px;
  width: 160px; height: 160px; border-radius: 999px;
  background: var(--pink); opacity: 0.5;
}
.evbig .ev-tag{
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.16);
  padding: 5px 10px; border-radius: 999px;
  display: inline-block;
  position: relative; z-index: 2;
}
.evbig h6{
  margin: 12px 0 6px;
  font-size: 26px; font-weight: 900; letter-spacing: -0.03em;
  position: relative; z-index: 2;
  line-height: 1.15;
}
.evbig p{
  margin: 0;
  font-size: 12.5px; opacity: 0.82;
  position: relative; z-index: 2;
}
.evbig .timer{
  margin-top: 14px;
  font-size: 11px; font-weight: 700;
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 6px 10px; border-radius: 999px;
}
.evrow{
  margin: 0 18px 8px;
  padding: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 12px; align-items: center;
}
.evrow .ic{
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--navy);
}
.evrow b{ font-size: 13px; font-weight: 800; display:block; letter-spacing: -0.02em;}
.evrow span{ font-size: 11px; color: var(--ink-2); margin-top: 2px; display: block;}
.evrow .pct{
  font-size: 15px; font-weight: 900; color: var(--pink); letter-spacing: -0.02em;
}

/* Chat screen */
.chathead{
  display: flex; align-items: center; gap: 12px;
  padding: 4px 18px 14px;
  border-bottom: 1px solid var(--line);
}
.chathead .ava{
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #ffd1e3, #fc7cb4);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  position: relative; flex: 0 0 38px;
}
.chathead .ava::after{
  content:""; position: absolute; right: -2px; bottom: -2px;
  width: 11px; height: 11px; border-radius: 999px;
  background: #22c55e; border: 2px solid #fff;
}
.chathead .who b{ display:block; font-size: 14px; font-weight: 800; letter-spacing: -0.02em;}
.chathead .who span{ font-size: 11px; color: #16a34a; font-weight: 700; }
.chatbox{
  flex: 1;
  padding: 16px 18px 0;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.chatbox .day{
  align-self: center;
  font-size: 10px; color: var(--ink-3); font-weight: 700;
  background: var(--bg-soft);
  padding: 4px 10px; border-radius: 999px;
}
.bubble{
  max-width: 80%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.bubble.me{
  align-self: flex-end;
  background: var(--navy); color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble.you{
  align-self: flex-start;
  background: var(--bg-soft); color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble small{
  display: block; font-size: 10px; margin-top: 4px; font-weight: 500;
  opacity: 0.7;
}
.chatinput{
  margin: 14px 18px 18px;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 7px 7px 7px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-3);
}
.chatinput .send{
  margin-left: auto;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--pink); color: #fff;
  display: grid; place-items: center; border: 0;
}

/* ───── Bento: Why CareHaejwo ───── */
.bento{ padding: 140px 0; background: #fff;}
.bento .container{ max-width: 1240px; }
.bento-head{
  text-align: center; margin-bottom: 64px;
  display: flex; flex-direction: column; align-items: center;
}
.bento-head .h-section{ text-align: center; }
.bento-head .section-lead{ text-align: center; margin: 24px auto 0; }

.bento-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}
.b-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}
.b-card.dark{
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.b-card.dark .b-desc{ color: rgba(255,255,255,0.78); }
.b-card .b-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.b-card.dark .b-eyebrow{ color: var(--pink); }
.b-card .b-eyebrow .dot-tiny{
  width: 6px; height: 6px; border-radius: 999px; background: var(--pink);
}
.b-card h3{
  margin: 0 0 12px;
  font-size: 26px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: 380px;
}
.b-card .b-desc{
  margin: 0;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
  max-width: 360px;
}
.b-card .b-visual{
  margin-top: auto; padding-top: 28px;
}

.b-span-6{ grid-column: span 6; }
.b-span-8{ grid-column: span 8; }
.b-span-4{ grid-column: span 4; }
.b-span-12{ grid-column: span 12; }

/* Bento visual mockups */
.vis-form{
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 18px;
}
.vis-form .lbl{
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--ink-3); text-transform: uppercase;
  margin-bottom: 10px;
}
.vis-form .input-mock{
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13.5px; font-weight: 600;
  display: flex; gap: 8px; align-items: center;
  color: var(--ink);
}
.vis-form .arrow-mock{
  text-align: center;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--pink);
  margin: 14px 0 12px;
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.vis-form .arrow-mock::before, .vis-form .arrow-mock::after{
  content: ""; flex: 0 0 30px; height: 1px; background: var(--line);
}
.vis-form .output-mock{
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: -0.02em;
}

.vis-chart{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.chart-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.78);
}
.pink-tag{
  background: rgba(252,124,180,0.22);
  color: var(--pink);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
}
.bars{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  height: 100px;
}
.bars .bar{
  background: rgba(255,255,255,0.16);
  border-radius: 6px;
}
.bars .bar.pink-bar{
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(252,124,180,0.6);
}
.bars-labels{
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 10px;
  font-size: 10.5px; color: rgba(255,255,255,0.5); text-align: center; font-weight: 600;
}
.chart-summary{
  margin-top: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.chart-summary .big{
  font-size: 30px; font-weight: 900; letter-spacing: -0.03em;
}
.chart-summary .lbl-sm{
  font-size: 11.5px; color: rgba(255,255,255,0.62);
}

.vis-flow{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step-mini{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px 22px 24px;
  position: relative;
}
.step-mini .num-mini{
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 16px;
}
.step-mini .step-icn{
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: #fff;
}
.step-mini b{
  display: block;
  font-size: 15px; font-weight: 800; letter-spacing: -0.02em;
}
.step-mini .step-d{
  display: block; margin-top: 6px;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.vis-sat{
  display: grid; place-items: center;
  padding: 12px 0 8px;
}
.sat-ring{
  position: relative;
  width: 180px; height: 180px;
}
.sat-ring svg{ transform: rotate(-90deg); width: 100%; height: 100%;}
.sat-ring .num-big{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  line-height: 1;
}
.sat-ring .num-big b{
  display: block;
  font-size: 40px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.sat-ring .num-big span{
  display: block; margin-top: 8px;
  font-size: 11px; color: var(--ink-3); font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.vis-settle{
  background: var(--bg-soft);
  border-radius: 16px;
  overflow: hidden;
}
.vis-settle .settle-head{
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 14px; padding: 14px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.settle-row{
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 14px; padding: 13px 18px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.settle-row:last-child{ border-bottom: 0; }
.settle-row .pname{ font-weight: 700; font-size: 13.5px;}
.settle-row .amt{ font-weight: 800; letter-spacing: -0.02em; font-size: 13.5px;}
.settle-row .check{
  width: 22px; height: 22px; border-radius: 999px;
  background: #22c55e; color: #fff;
  display: grid; place-items: center;
}

.vis-online{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px 18px;
}
.online-row{
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.online-row:last-child{ border-bottom: 0; }
.online-row .avatar-mini{
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, #ffd1e3, #fc7cb4);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; color: #fff;
  position: relative; flex: 0 0 36px;
}
.online-row .avatar-mini::after{
  content: ""; position: absolute; right: -1px; bottom: -1px;
  width: 10px; height: 10px; border-radius: 999px;
  background: #22c55e; border: 2px solid var(--navy);
}
.online-row b{ font-size: 14px; font-weight: 800; letter-spacing: -0.02em;}
.online-row span.role{ display: block; font-size: 11.5px; color: rgba(255,255,255,0.62); margin-top: 2px;}
.online-row .lang-pill{
  margin-left: auto;
  font-size: 10.5px; font-weight: 800;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.online-counter{
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px;
}
.online-counter b{
  font-size: 22px; font-weight: 900; letter-spacing: -0.03em;
}
.online-counter span{ color: rgba(255,255,255,0.62);}
.online-counter .pulse-dot{
  display: inline-flex; align-items: center; gap: 6px;
  color: #4ade80; font-weight: 800; font-size: 12px;
}
.online-counter .pulse-dot::before{
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}

/* ───── Statement (dark) ───── */
.statement{ text-align: center; }
.statement .eyebrow{ color: var(--pink); }
.statement h2{
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 auto 40px;
  max-width: 1000px;
  text-wrap: balance;
}
.statement h2 .pink{ color: var(--pink); }
.statement .cta{
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ───── Countries ───── */
.countries-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.country{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.country:hover{ transform: translateY(-3px); border-color: var(--navy); }
.country .flag{
  width: 52px; height: 52px; border-radius: 999px; margin: 0 auto 14px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 24px;
  overflow: hidden;
}
.country .name{ font-weight: 700; font-size: 14.5px; }
.country .lang{ font-size: 12px; color: var(--ink-3); margin-top: 2px; }

.reviews-track-wrap{
  overflow: hidden;
  /* margin: 0 -24px;  ← удалить */
  width: 100%;
  max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track{
  display: flex; gap: 20px;
  animation: scroll 38s linear infinite;
  width: max-content;
  padding: 4px 24px;
}
.reviews-track:hover{ animation-play-state: paused; }
@keyframes scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.review{
  flex: 0 0 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.review .stars{
  color: var(--pink);
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 16px;
}
.review .body{
  font-size: 16px; font-weight: 500; line-height: 1.6;
  margin: 0 0 24px;
  color: var(--ink);
  min-height: 110px;
}
.review .who{
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review .who .av{
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: var(--navy);
}
.review .who .meta b{ display: block; font-size: 14px; font-weight: 700; }
.review .who .meta span{ font-size: 12px; color: var(--ink-3); }

/* ───── FAQ ───── */
.faq{ max-width: 880px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 28px 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 19px; font-weight: 700; letter-spacing: -0.025em;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .q{ display: flex; gap: 16px; align-items: center; }
.faq-item summary .q::before{
  content: "Q";
  color: var(--pink);
  font-weight: 900;
  font-size: 22px;
}
.faq-item summary .pl{
  width: 22px; height: 22px;
  position: relative; flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item summary .pl::before,
.faq-item summary .pl::after{
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.faq-item summary .pl::before{ left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-item summary .pl::after{ top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); transition: transform .25s ease;}
.faq-item[open] summary .pl::after{ transform: translateX(-50%) scaleY(0); }
.faq-item .a{
  padding: 0 8px 28px 46px;
  color: var(--ink-2);
  font-size: 16px; line-height: 1.7;
  max-width: 760px;
}

/* ───── Download strip ───── */
.download{
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: #0f1020;
  color: #fff;
  border: 0;
  isolation: isolate;
}
.download .dl-media{
  position: absolute; inset: 0;
  z-index: 0;
}
.download .dl-media::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(35,34,100,0.55) 0%, rgba(15,16,32,0) 60%),
    linear-gradient(180deg, rgba(15,16,32,0.45) 0%, rgba(15,16,32,0.85) 100%);
}
.download .container{ position: relative; z-index: 2;}
.dl-inner{
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.dl-inner .lhs{ max-width: 620px; }
.dl-inner .eyebrow{
  color: var(--pink);
  margin-bottom: 18px;
}
.dl-inner h2{
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.1; margin: 0 0 24px;
  text-wrap: balance;
  color: #fff;
}
.dl-inner h2 .pink{ color: var(--pink); }
.dl-inner .lead{
  margin: 0 0 36px;
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  font-weight: 500;
}
.dl-trust{
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.dl-trust .stars-row{
  display: flex; align-items: center; gap: 10px;
}
.dl-trust .stars-row .stars{
  color: var(--pink); letter-spacing: 2px; font-size: 18px;
}
.dl-trust .stars-row b{
  font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
}
.dl-trust .stars-row span{ font-size: 13px; color: rgba(255,255,255,0.66); }
.dl-trust .dl-avatars{
  display: flex; align-items: center; gap: 12px;
}
.dl-trust .dl-avatars .stack{
  display: flex;
}
.dl-trust .dl-avatars .stack span{
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, #ffd1e3, #fc7cb4);
  border: 2px solid #0f1020;
  margin-left: -10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; color: #fff;
}
.dl-trust .dl-avatars .stack span:first-child{ margin-left: 0; background: linear-gradient(135deg, #c7c6ff, #232264);}
.dl-trust .dl-avatars .stack span:nth-child(3){ background: linear-gradient(135deg, #ffe7c4, #f5a73a); }
.dl-trust .dl-avatars .stack span:nth-child(4){ background: linear-gradient(135deg, #c4f5e1, #1f8a5b); }
.dl-trust .dl-avatars b{ display:block; font-size:14px; font-weight: 800; letter-spacing: -0.02em;}
.dl-trust .dl-avatars small{ display:block; font-size:12px; color: rgba(255,255,255,0.62); margin-top:2px;}

.store-btns{ display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn{
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  transition: transform .15s ease, background .15s ease;
}
.store-btn:hover{ transform: translateY(-2px); background: #f5f5f7;}
.store-btn .lbl{ display: flex; flex-direction: column; line-height: 1.15;}
.store-btn .lbl small{ font-size: 11px; opacity: 0.7; font-weight: 500;}
.store-btn .lbl b{ font-size: 17px; font-weight: 800; letter-spacing: -0.02em;}

.dl-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px; align-items: center;
  max-width: 460px;
  margin-left: auto;
}
.dl-card .qr{
  width: 132px; height: 132px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.dl-card .qr svg{ width: 100%; height: 100%; }
.dl-card .qr-meta b{
  display: block;
  font-size: 17px; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.dl-card .qr-meta p{
  margin: 0; font-size: 13.5px;
  color: rgba(255,255,255,0.7); line-height: 1.5;
}
.dl-card .qr-meta .bullets{
  margin-top: 12px;
  display: grid; gap: 8px;
}
.dl-card .qr-meta .bullets span{
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.86);
}
.dl-card .qr-meta .bullets span::before{
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--pink); flex-shrink: 0;
}

/* ───── Responsive (home-specific) ───── */
@media (max-width: 1024px){
  section{ padding: 96px 0; }
  .steps{ grid-template-columns: 1fr; }
  .tour-stage{ grid-template-columns: 1fr; gap: 56px; }
  .phone-stage{ min-height: 700px; }
  .phone-stage .float-tl{ left: 0; }
  .phone-stage .float-br{ right: 0; }
  .split, .split-reverse{ grid-template-columns: 1fr; gap: 40px;}
  .split-media{ aspect-ratio: 4/3; min-height: 0; }
  .countries-grid{ grid-template-columns: repeat(3, 1fr); }
  .b-span-6, .b-span-8, .b-span-4{ grid-column: span 6;}
  .b-span-12{ grid-column: span 12;}
  .bento-grid{ grid-template-columns: repeat(6, 1fr); }
  .vis-flow{ grid-template-columns: repeat(2, 1fr); }
  .dl-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .hero{ height: 100svh; min-height: 600px; }
  .hero-inner{ padding-bottom: 56px;}
  .hero-meta{ gap: 28px; margin-top: 40px;}
  .hero-meta .item .v{ font-size: 26px; }
  section{ padding: 80px 0;}
  .section-head{ margin-bottom: 48px;}
  .countries-grid{ grid-template-columns: repeat(2, 1fr); }
  .download{ padding: 100px 0; }
  .dl-inner{ grid-template-columns: 1fr; gap: 48px;}
  .dl-inner h2{ font-size: 34px; }
  .dl-card{ margin-left: 0; padding: 24px; gap: 20px;}
  .dl-card .qr{ width: 110px; height: 110px;}
  .dl-trust{ gap: 24px; }
  .review{ flex: 0 0 300px; }
  .b-card{ padding: 28px; min-height: 280px;}
  .b-card h3{ font-size: 22px;}
  .vis-flow{ grid-template-columns: 1fr; gap: 10px;}
  .step-mini{ padding: 18px 20px;}
  .phone{ width: 290px; height: 600px; padding: 10px; border-radius: 46px;}
  .phone-screens{ border-radius: 38px;}
  .phone-stage{ min-height: 640px;}
  .phone-stage::before{ width: 380px; height: 380px;}
  .phone-stage .float{ display: none;}
  .tour-tab{ padding: 18px 20px; column-gap: 14px;}
  .tour-tab .num{ width: 38px; height: 38px;}
  .tour-tab h3{ font-size: 18px;}
  .tour-tab p{ font-size: 13.5px;}
  .tour-head{ margin-bottom: 56px;}
}
