/* ===========================================================================
   BayarYuk landing — bayaryuk.net
   Brand tokens mirror social_media/instagram/style.css
   =========================================================================== */

/* In-app font (Gilroy) — used in the phone mockup so it mirrors the real app */
@font-face { font-family: 'Gilroy'; src: url('assets/fonts/Gilroy-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('assets/fonts/Gilroy-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('assets/fonts/Gilroy-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('assets/fonts/Gilroy-Black.ttf') format('truetype'); font-weight: 800 900; font-display: swap; }

:root {
  --red: #E3173C;
  --red-dark: #c01230;
  --navy: #011627;
  --navy-soft: #0a2233;
  --ink: #011627;
  --muted: #5a6876;
  --muted-2: #3c4b5a;
  --chip: #F4F7FE;
  --icon-chip: #FDECEF;
  --border: #eef1f5;
  --bg: #ffffff;
  --shadow-sm: 0 8px 24px rgba(1, 22, 39, .06);
  --shadow-md: 0 18px 48px rgba(1, 22, 39, .10);
  --shadow-red: 0 12px 30px rgba(227, 23, 60, .35);
  --maxw: 1180px;
  --r: 22px;
  --font: -apple-system, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ---- decorative background washes ---- */
.bg-wash {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 520px at 110% -8%, rgba(227,23,60,.07), transparent 60%),
    radial-gradient(820px 600px at -12% 18%, rgba(1,22,39,.05), transparent 60%),
    radial-gradient(700px 500px at 50% 120%, rgba(227,23,60,.05), transparent 60%);
}
.bubble { position: fixed; border-radius: 50%; border: 2.5px solid rgba(227,23,60,.12); z-index: -1; pointer-events: none; }
.bubble.fill { background: rgba(227,23,60,.04); border: none; }
.bubble.navy { border-color: rgba(1,22,39,.08); }

/* =========================== buttons =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: -.2px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { transform: translateY(-2px); background: var(--red-dark); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #dfe5ec; }
.btn-ghost.is-disabled { opacity: .6; cursor: not-allowed; }
.btn-ghost.is-disabled:hover { transform: none; }
.btn-soon { position: relative; }
.btn-soon .soon {
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: var(--chip); color: var(--red); padding: 3px 8px; border-radius: 999px; margin-left: 2px;
}

/* =========================== nav =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
  padding: 20px 0; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 11px 0; background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border); box-shadow: 0 6px 24px rgba(1,22,39,.05);
}
.nav .wrap { display: flex; align-items: center; gap: 22px; }
.nav .logo img { height: 34px; }
.nav .links { display: flex; gap: 26px; margin-left: 14px; }
.nav .links a { font-weight: 600; font-size: 15px; color: var(--muted-2); transition: color .15s; }
.nav .links a:hover { color: var(--red); }
.nav .spacer { margin-left: auto; }
.nav .nav-cta { display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang {
  display: inline-flex; background: var(--chip); border-radius: 999px; padding: 4px; gap: 2px;
}
.lang button {
  border: 0; background: transparent; cursor: pointer; font-family: var(--font);
  font-weight: 800; font-size: 13px; color: var(--muted); padding: 7px 13px; border-radius: 999px;
  transition: all .15s;
}
.lang button.on { background: #fff; color: var(--navy); box-shadow: 0 2px 8px rgba(1,22,39,.10); }

/* =========================== hero =========================== */
.hero { padding: 140px 0 64px; }
.hero .wrap { text-align: center; }
.hero-lead { max-width: 840px; margin: 0 auto; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--red); font-weight: 800; font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
}
.kicker::before { content: ""; width: 38px; height: 4px; background: var(--red); border-radius: 3px; }
.hero h1 {
  margin-top: 24px; font-size: clamp(40px, 6vw, 70px); line-height: 1.04;
  font-weight: 900; letter-spacing: -2px;
}
.hero h1 .accent { color: var(--red); }
.hero .sub { margin: 22px auto 0; font-size: 19px; line-height: 1.6; color: var(--muted-2); max-width: 600px; font-weight: 500; }
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .trust { margin-top: 24px; display: flex; gap: 14px 22px; flex-wrap: wrap; justify-content: center; }
.hero .trust .t { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--muted-2); }
.hero .trust .t svg { width: 18px; height: 18px; color: var(--red); }

/* announcement pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 16px 6px 6px; font-weight: 700; font-size: 14px; color: var(--muted-2);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.hero-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-pill .np { background: var(--red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.hero-pill .ar { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* Android availability note */
.hero-note { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.hero-note svg { width: 16px; height: 16px; color: var(--muted-2); }

/* showcase: phone flanked by floating cards */
.hero-show { position: relative; margin-top: 56px; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.float-card {
  position: absolute; z-index: 4; width: 244px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; text-align: left;
}
.float-card .fc-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--icon-chip); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .fc-ic svg { width: 22px; height: 22px; color: var(--red); }
.float-card b { display: block; font-size: 14.5px; font-weight: 800; letter-spacing: -.2px; color: var(--navy); }
.float-card small { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.fc-a { left: calc(50% - 300px); top: 116px; }
.fc-b { right: calc(50% - 300px); top: 322px; }

/* "built for" vertical strip */
.trusted { margin-top: 50px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 12px; }
.trusted .tt { text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; font-weight: 800; color: var(--muted); }
.trusted .v { background: var(--chip); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 700; color: var(--navy); }

/* phone mockup */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.glow { position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,23,60,.16), transparent 65%); filter: blur(8px); }
.phone {
  position: relative; width: 268px; height: 540px; border-radius: 42px;
  background: var(--navy); padding: 12px; box-shadow: 0 40px 80px rgba(1,22,39,.30), inset 0 0 0 2px rgba(255,255,255,.06);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
.phone .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 24px; background: var(--navy); border-radius: 0 0 16px 16px; z-index: 3; }
.phone .screen {
  position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(165deg, #fff 0%, #fbfcff 55%, #fdecef 100%); display: flex; flex-direction: column;
  font-family: 'Gilroy', var(--font); /* mirror the real in-app font */
}
.scr-top { padding: 30px 20px 16px; background: var(--red); color: #fff; }
.scr-top .greet { font-size: 12px; opacity: .85; font-weight: 600; }
.scr-top .shop { font-size: 19px; font-weight: 900; margin-top: 2px; }
.scr-top .bal { margin-top: 14px; background: rgba(255,255,255,.16); border-radius: 14px; padding: 12px 14px; }
.scr-top .bal small { font-size: 10px; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }
.scr-top .bal b { display: block; font-size: 22px; font-weight: 900; margin-top: 3px; }
.scr-grid { padding: 16px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 11px; }
.scr-tile { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px 8px; text-align: center; box-shadow: 0 6px 16px rgba(1,22,39,.05); }
.scr-tile .ic { width: 34px; height: 34px; margin: 0 auto 7px; border-radius: 10px; background: var(--icon-chip); display: flex; align-items: center; justify-content: center; }
.scr-tile .ic svg { width: 19px; height: 19px; color: var(--red); }
.scr-tile span { font-size: 9.5px; font-weight: 700; color: var(--navy); }
.scr-list { padding: 4px 16px; }
.scr-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.scr-row .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--chip); flex-shrink: 0; }
.scr-row .ln { flex: 1; }
.scr-row .ln i { display: block; height: 7px; border-radius: 4px; background: #e9eef5; }
.scr-row .ln i:first-child { width: 70%; }
.scr-row .ln i:last-child { width: 40%; margin-top: 5px; background: #f1f4f9; }
.scr-row .amt { font-size: 11px; font-weight: 900; color: var(--red); }

/* =========================== section shell =========================== */
section { position: relative; }
.section-pad { padding: 66px 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.sec-head .kicker { justify-content: center; }
.sec-head h2 { margin-top: 16px; font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: -1px; line-height: 1.12; }
.sec-head h2 .accent { color: var(--red); }
.sec-head p { margin-top: 14px; font-size: 17px; color: var(--muted); font-weight: 500; }

/* =========================== verticals =========================== */
.verticals .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vcard {
  border-radius: 26px; padding: 34px; border: 2px solid var(--border); background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.vcard .badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }
.vcard.dark .badge { color: #ff5a78; }
.vcard h3 { margin-top: 14px; font-size: 26px; font-weight: 900; letter-spacing: -.5px; }
.vcard p { margin-top: 10px; font-size: 16px; color: var(--muted); font-weight: 500; }
.vcard.dark p { color: #aab8c5; }
.vcard ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.vcard li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.vcard li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.vcard.dark li svg { color: #ff5a78; }

/* =========================== feature groups =========================== */
.fgroup { margin-bottom: 46px; }
.fgroup:last-child { margin-bottom: 0; }
.fgroup .gh { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.fgroup .gh .pill { background: var(--chip); color: var(--navy); font-weight: 800; font-size: 14px; letter-spacing: .5px; padding: 9px 18px; border-radius: 999px; }
.fgroup .gh .rule { flex: 1; height: 1px; background: var(--border); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--r); padding: 26px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #e4e9f0; }
.card .icon { width: 52px; height: 52px; border-radius: 15px; background: var(--icon-chip); display: flex; align-items: center; justify-content: center; }
.card .icon svg { width: 27px; height: 27px; color: var(--red); stroke-width: 2; }
.card h4 { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.card p { font-size: 14.5px; line-height: 1.5; color: var(--muted); font-weight: 500; }

/* =========================== catalogue highlight =========================== */
.spotlight .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.spotlight.rev .wrap { direction: rtl; } .spotlight.rev .wrap > * { direction: ltr; }
.spotlight h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; }
.spotlight h2 .accent { color: var(--red); }
.spotlight p { margin-top: 16px; font-size: 17px; color: var(--muted-2); line-height: 1.6; font-weight: 500; }
.spotlight .url { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: var(--chip); border-radius: 12px; padding: 12px 18px; font-weight: 800; color: var(--navy); font-size: 15px; }
.spotlight .url b { color: var(--red); }
.visual {
  border-radius: 26px; padding: 30px; min-height: 320px;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.visual::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(227,23,60,.30), transparent 65%); top: -80px; right: -80px; }
.store-card { position: relative; z-index: 2; width: 100%; max-width: 320px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.35); font-family: 'Gilroy', var(--font); /* mirror the real in-app font */ }
.store-card .banner { height: 80px; background: linear-gradient(120deg, var(--red), #ff5a78); }
.store-card .body { padding: 16px; }
.store-card .body .nm { font-weight: 900; font-size: 17px; }
.store-card .body .ad { font-size: 12px; color: var(--muted); margin-top: 2px; }
.store-card .prods { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.store-card .prod { border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.store-card .prod .ph { height: 56px; border-radius: 8px; background: var(--chip); }
.store-card .prod .pn { height: 7px; width: 75%; border-radius: 4px; background: #e9eef5; margin-top: 9px; }
.store-card .prod .pp { height: 9px; width: 45%; border-radius: 4px; background: var(--icon-chip); margin-top: 6px; }
.store-card .wa { margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; padding: 11px; border-radius: 12px; }
.store-card .wa svg { width: 17px; height: 17px; }

/* offline strip */
.offline { background: var(--navy); color: #fff; border-radius: 30px; padding: 50px 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.offline .stat .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(227,23,60,.18); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.offline .stat .ic svg { width: 26px; height: 26px; color: #ff5a78; }
.offline .stat h4 { font-size: 19px; font-weight: 900; }
.offline .stat p { margin-top: 8px; font-size: 14.5px; color: #aab8c5; font-weight: 500; line-height: 1.5; }

/* =========================== F&B coming-soon band =========================== */
.soon-band { margin-top: 22px; display: flex; align-items: center; gap: 16px; background: #fff; border: 2px dashed #dfe5ec; border-radius: 22px; padding: 18px 24px; }
.soon-band .soon-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--chip); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.soon-band .soon-ic svg { width: 24px; height: 24px; color: var(--muted-2); }
.soon-band .soon-txt { flex: 1; }
.soon-band .soon-txt b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.soon-band .soon-txt span { font-size: 14.5px; color: var(--muted); font-weight: 500; }
.soon-band .soon-pill { background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; flex-shrink: 0; }

/* =========================== plan comparison =========================== */
.plans .ptable-wrap { max-width: 940px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 22px; }
.ptable { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; border: 2px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.ptable col.c-pro { background: rgba(1,22,39,.025); }
.ptable th, .ptable td { padding: 13px 14px; text-align: center; font-size: 14.5px; border-top: 1px solid var(--border); }
.ptable .pf { text-align: left; font-weight: 600; color: var(--muted-2); }
.phead th { border-top: 0; vertical-align: bottom; padding: 20px 14px 16px; }
.phead .pname { display: block; font-size: 18px; font-weight: 900; color: var(--navy); letter-spacing: -.4px; }
.phead .pprice { display: block; font-size: 12.5px; color: var(--muted); font-weight: 700; margin-top: 3px; }
.phead th.hl { background: var(--navy); }
.phead th.hl .pname { color: #fff; }
.phead th.hl .pprice { color: #aab8c5; }
.phead th.hl .pbadge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.pgroup td { background: var(--chip); text-align: left; font-weight: 800; font-size: 12.5px; letter-spacing: .6px; text-transform: uppercase; color: var(--navy); padding: 10px 14px; }
.pyes { display: inline-flex; color: var(--red); }
.pyes svg { width: 21px; height: 21px; }
.pno { color: #cfd8e1; font-size: 18px; font-weight: 700; }
.paddon { display: inline-block; background: #fff4e0; color: #b8791a; font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.pnum { font-weight: 900; color: var(--navy); font-size: 16px; }
.plans .pnote { text-align: center; margin-top: 16px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.plans .pcta { text-align: center; margin-top: 24px; }

/* =========================== FAQ =========================== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq { border: 2px solid var(--border); border-radius: 18px; background: #fff; overflow: hidden; transition: border-color .2s; }
.faq[open] { border-color: #e4e9f0; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { margin-left: auto; width: 26px; height: 26px; border-radius: 8px; background: var(--icon-chip); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; transition: transform .2s; flex-shrink: 0; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq .a { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.6; font-weight: 500; }

/* =========================== final CTA =========================== */
.cta-band .wrap {
  background: linear-gradient(135deg, var(--red), #ff3d5e);
  border-radius: 32px; padding: 60px 44px; text-align: center; color: #fff;
  box-shadow: var(--shadow-red); position: relative; overflow: hidden;
}
.cta-band .wrap::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 100% 0, rgba(255,255,255,.18), transparent 60%); }
.cta-band h2 { position: relative; z-index: 2; font-size: clamp(28px, 3.8vw, 44px); font-weight: 900; letter-spacing: -1px; }
.cta-band p { position: relative; z-index: 2; margin-top: 14px; font-size: 18px; opacity: .92; font-weight: 500; }
.cta-band .cta-row { position: relative; z-index: 2; margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-red { background: #fff; color: var(--red); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.cta-band .btn-red:hover { background: #fff; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }

/* =========================== footer =========================== */
.footer { padding: 50px 0 40px; border-top: 1px solid var(--border); margin-top: 30px; }
.footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .logo img { height: 32px; }
.footer .tag { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 10px; }
.footer .right { display: flex; align-items: center; gap: 20px; }
.footer .right a { font-size: 14px; font-weight: 700; color: var(--muted-2); display: inline-flex; align-items: center; gap: 8px; }
.footer .right a:hover { color: var(--red); }
.footer .right a svg { width: 17px; height: 17px; }
.footer .copy { margin-top: 26px; text-align: center; font-size: 13px; color: var(--muted); }

/* =========================== reveal animation =========================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
/* richer entrance for cards (ported from the brochure) — fade + slide-up + subtle scale */
.card.reveal, .vcard.reveal, .float-card.reveal { transform: translateY(30px) scale(.97); transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
.card.reveal.in, .vcard.reveal.in, .float-card.reveal.in { transform: none; }
[data-d="1"] { transition-delay: .07s; }
[data-d="2"] { transition-delay: .14s; }
[data-d="3"] { transition-delay: .21s; }
[data-d="4"] { transition-delay: .28s; }
[data-d="5"] { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================== responsive =========================== */
@media (max-width: 960px) {
  .nav .links { display: none; }
  .hero-show { flex-direction: column; min-height: auto; margin-top: 38px; }
  .float-card { position: static; width: 100%; max-width: 320px; }
  .fc-a { margin-bottom: 18px; } .fc-b { margin-top: 18px; }
  .phone-stage { min-height: auto; }
  .spotlight .wrap, .verticals .grid2 { grid-template-columns: 1fr; }
  .spotlight.rev .wrap { direction: ltr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .offline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .offline { grid-template-columns: 1fr; padding: 36px 26px; }
  .hero { padding: 130px 0 50px; }
  .nav .nav-cta .lang { display: none; }
  .cta-band .wrap, .offline { border-radius: 22px; }

  /* footer — fully centered on mobile */
  .footer .wrap { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer .wrap > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .footer .logo img { margin: 0 auto; }
  .footer .right { justify-content: center; flex-wrap: wrap; gap: 16px 20px; }

  /* plan comparison — 3 cols (Feature · Basic · Pro) fit screen, no sideways scroll */
  .plans .ptable-wrap { overflow-x: visible; }
  .ptable { min-width: 0; }
  .ptable th, .ptable td { padding: 11px 7px; font-size: 13px; }
  .ptable .pf { font-size: 12.5px; }
  .phead th { padding: 16px 7px 14px; }
  .phead .pname { font-size: 15px; }
  .phead .pbadge { font-size: 9px; padding: 3px 8px; }
  .pyes svg { width: 19px; height: 19px; }
  .paddon { font-size: 10px; padding: 3px 8px; }
  .pnum { font-size: 15px; }
}
