/* Filiz — filiz.store
   Renk ve tipografi token'ları uygulamanın src/index.css dosyasından birebir alınmıştır;
   site, uygulamanın devamı gibi görünmelidir. Tema cihaz tercihini takip eder ve
   uygulamadaki gibi elle de değiştirilebilir. */

:root {
  --canvas-a: #fbf3ed;
  --canvas-b: #f6e7dc;
  --ink: #3b2a2e;
  --ink2: #7a6a6c;
  --rose: #e8927c;
  --rose-a: #f0a88f;
  --rose-b: #e27e66;
  --peach: #f2c29f;
  --sage: #5e9c86;
  --gold: #c08528;
  --glass: rgba(255, 253, 251, 0.72);
  --glass-line: rgba(180, 120, 100, 0.16);
  --glass-sh: 0 8px 22px rgba(90, 40, 30, 0.07), 0 4px 40px rgba(232, 146, 124, 0.1);
  --track: rgba(180, 120, 100, 0.18);
  --shell: #1c1216;
  --font-sans: "Nunito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Newsreader", ui-serif, Georgia, serif;
  --measure: 62ch;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(72px, 11vw, 152px);
}

:root[data-theme="dark"],
html.dark {
  --canvas-a: #2a182f;
  --canvas-b: #1a0e1f;
  --ink: #f3e7e9;
  --ink2: #b9a3ac;
  --rose: #f0a089;
  --rose-a: #f4b49e;
  --rose-b: #e88066;
  --peach: #e8b48f;
  --sage: #a6cdba;
  --gold: #e0b26a;
  --glass: rgba(51, 32, 58, 0.55);
  --glass-line: rgba(255, 255, 255, 0.09);
  --glass-sh: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 46px rgba(232, 146, 124, 0.07);
  --track: rgba(255, 255, 255, 0.13);
  --shell: #0d0710;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --canvas-a: #2a182f;
    --canvas-b: #1a0e1f;
    --ink: #f3e7e9;
    --ink2: #b9a3ac;
    --rose: #f0a089;
    --rose-a: #f4b49e;
    --rose-b: #e88066;
    --peach: #e8b48f;
    --sage: #a6cdba;
    --gold: #e0b26a;
    --glass: rgba(51, 32, 58, 0.55);
    --glass-line: rgba(255, 255, 255, 0.09);
    --glass-sh: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 46px rgba(232, 146, 124, 0.07);
    --track: rgba(255, 255, 255, 0.13);
    --shell: #0d0710;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* .aura bilerek tuvalin dışına taşar; clip yatay kaydırmayı engeller ve
     hidden'dan farklı olarak position:sticky üst çubuğu bozmaz. */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.02vw + 13.4px, 18px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas-a);
  background-image: linear-gradient(180deg, var(--canvas-a), var(--canvas-b));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* eski tarayıcı yedeği */
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.32rem); font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.lede { font-size: clamp(1.05rem, 1.3vw, 1.22rem); color: var(--ink2); max-width: 46ch; }
.eyebrow {
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.1rem;
}
.muted { color: var(--ink2); }
.small { font-size: 0.86rem; line-height: 1.55; }
.tiny { font-size: 0.78rem; line-height: 1.55; color: var(--ink2); }

section { padding-block: var(--section); }
.rule { height: 1px; background: var(--glass-line); border: 0; margin: 0; }

/* ── Üst çubuk ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--canvas-a) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav[data-stuck="true"] { border-bottom-color: var(--glass-line); }
.nav__in { display: flex; align-items: center; gap: 14px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -0.01em; }
.brand img { width: 30px; height: 30px; border-radius: 9px; }
.nav__spacer { flex: 1; }
.nav__links { display: none; gap: 26px; font-size: 0.92rem; font-weight: 700; }
.nav__links a { text-decoration: none; color: var(--ink2); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav__links { display: flex; } }

.iconbtn {
  width: 38px; height: 38px; display: grid; place-items: center; flex: none;
  border-radius: 999px; border: 1px solid var(--glass-line);
  background: var(--glass); color: var(--ink); cursor: pointer;
  transition: transform 0.2s ease;
}
.iconbtn:hover { transform: translateY(-1px); }

/* ── Butonlar ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 0;
  font: inherit; font-weight: 800; font-size: 0.96rem; text-decoration: none;
  color: #fff; background: linear-gradient(135deg, var(--rose-a), var(--rose-b));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--rose) 38%, transparent);
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--rose) 45%, transparent); }
.btn--ghost {
  background: none; color: var(--ink);
  border: 1.5px solid var(--track); box-shadow: none;
}
.btn--ghost:hover { box-shadow: none; border-color: var(--rose); }
.btn--sm { padding: 9px 18px; font-size: 0.88rem; }

/* Mağaza rozetleri — resmî dosyalar, oranı korunur */
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badges a { display: block; transition: transform 0.2s ease, opacity 0.2s ease; }
.badges a:hover { transform: translateY(-2px); }
.badges img, .badges svg { height: 52px; width: auto; }
.badge-apple {
  height: 52px; padding: 0; border-radius: 9px; overflow: hidden;
  background: #000; display: grid; place-items: center;
}
.badge-apple svg { height: 34px; }
:root[data-theme="dark"] .badge-apple, html.dark .badge-apple { outline: 1px solid rgba(255,255,255,.22); }

/* ── Kahraman ──────────────────────────────────────────────────────────────── */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: var(--section); position: relative; }
.hero__grid { display: grid; gap: clamp(44px, 6vw, 80px); align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.04fr 0.96fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .lede { margin-bottom: 2rem; }
.hero .badges { margin-bottom: 1rem; }
.hero__note { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink2); }
.hero__note b { color: var(--ink); font-weight: 800; }

/* Zeminde nefes alan hâle — uygulamanın --aura token'ı */
.aura {
  position: absolute; inset: auto; pointer-events: none; z-index: -1;
  width: min(760px, 92vw); aspect-ratio: 1; border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--rose) 34%, transparent), transparent 68%);
  filter: blur(28px); opacity: 0.7;
  top: -12%; inset-inline-end: -18%;
}

/* ── Telefon ───────────────────────────────────────────────────────────────── */
.phone {
  position: relative; width: min(300px, 76vw); margin-inline: auto;
  aspect-ratio: 1242 / 2688;
  border-radius: 44px; padding: 9px;
  background: linear-gradient(160deg, #3a2c31, var(--shell) 42%, #241a1e);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 34px 70px -18px rgba(60, 24, 20, 0.5),
    0 8px 24px rgba(60, 24, 20, 0.24);
}
.phone picture { display: block; width: 100%; height: 100%; }
.phone img { width: 100%; height: 100%; border-radius: 36px; object-fit: cover; object-position: 50% 50%; display: block; }
.phone--lg { width: min(360px, 82vw); }

.phones { display: flex; gap: clamp(14px, 3vw, 30px); justify-content: center; align-items: flex-end; }
.phones .phone { margin: 0; width: min(232px, 42vw); }
.phones .phone:first-child { transform: translateY(20px) rotate(-2.5deg); }
.phones .phone:last-child { transform: rotate(2.5deg); }
@media (prefers-reduced-motion: reduce) { .phones .phone { transform: none !important; } }

/* ── İki sütunlu anlatı ────────────────────────────────────────────────────── */
.split { display: grid; gap: clamp(40px, 6vw, 78px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip > *:first-child { order: 2; }
}
.split h2 { margin-bottom: 1.1rem; }
.split p + p { margin-top: 0.9rem; }

.ticks { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; }
.ticks svg { flex: none; margin-top: 4px; color: var(--sage); }

/* ── Hafta kaydırıcı ───────────────────────────────────────────────────────── */
.scrub {
  border-radius: 30px; padding: clamp(26px, 4vw, 44px);
  background: var(--glass); border: 1px solid var(--glass-line);
  box-shadow: var(--glass-sh);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.scrub__head { margin-bottom: 4px; }
.scrub__wk { font-family: var(--font-serif); font-size: clamp(4rem, 12vw, 7.2rem); line-height: 0.86; font-weight: 500; font-variant-numeric: lining-nums tabular-nums; }
.scrub__unit { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--ink2); }
.scrub__meta { font-size: 0.92rem; font-weight: 700; color: var(--ink2); }
.scrub__size { font-size: clamp(1.15rem, 2.1vw, 1.5rem); font-weight: 800; color: var(--rose); margin-top: 0.35rem; }
.scrub__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.35rem; }
.stat {
  border-radius: 16px; padding: 11px 16px; min-width: 118px;
  background: color-mix(in srgb, var(--canvas-a) 62%, transparent);
  border: 1px solid var(--glass-line);
}
.stat b { display: block; font-size: 1.18rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.stat span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink2); }

/* Rahim dairesi — uygulamadaki Medallion/HeroWomb'un site karşılığı.
   6 gelişim görseli üst üste durur, hafta değişince çapraz geçiş yapar; bebek
   4→40. hafta arasında büyür. */
.scrub__grid { display: grid; gap: clamp(22px, 3.4vw, 40px); align-items: center; }
@media (min-width: 720px) { .scrub__grid { grid-template-columns: minmax(180px, 260px) 1fr; } }
.scrub__info { min-width: 0; }
.scrub__stage {
  margin-top: 0.45rem; font-size: 0.86rem; font-weight: 700; color: var(--sage);
}

.womb { position: relative; width: min(260px, 62vw); aspect-ratio: 1; margin-inline: auto; }
.womb__disk {
  position: absolute; inset: 7%; border-radius: 999px; overflow: hidden;
  background: radial-gradient(circle at 46% 38%, #33211c, #241614 60%, #1a1012);
  box-shadow: inset 0 10px 34px rgba(0, 0, 0, 0.5), 0 18px 44px rgba(60, 24, 20, 0.3);
  display: grid; place-items: center;
}
.womb__img {
  grid-area: 1 / 1; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: scale(var(--baby, 0.95));
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.22, 0.68, 0.3, 1);
  will-change: opacity, transform;
}
.womb__img.on { opacity: 1; }

.womb__ring { position: absolute; inset: 0; transform: rotate(-90deg); overflow: visible; }
.womb__track, .womb__prog { fill: none; stroke-width: 3.2; stroke-linecap: round; }
.womb__track { stroke: var(--track); }
.womb__prog {
  stroke: var(--rose);
  stroke-dasharray: 295.3;
  stroke-dashoffset: var(--ring, 118);
  transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 0.68, 0.3, 1);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--rose) 55%, transparent));
}

@media (prefers-reduced-motion: reduce) {
  .womb__img { transition: opacity 0.01ms; }
  .womb__prog { transition: none; }
}

.scrub__ctl { margin-top: 1.9rem; }
.scrub__ends { display: flex; justify-content: space-between; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink2); margin-bottom: 10px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 30px;
  background: none; cursor: grab; margin: 0;
}
input[type="range"]:active { cursor: grabbing; }
input[type="range"]::-webkit-slider-runnable-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-a) 0 var(--pct, 50%), var(--track) var(--pct, 50%) 100%);
}
input[type="range"]::-moz-range-track { height: 8px; border-radius: 999px; background: var(--track); }
input[type="range"]::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--rose-a); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; margin-top: -10px;
  border-radius: 999px; background: #fff; border: 0;
  box-shadow: 0 2px 10px rgba(60, 24, 20, 0.32), 0 0 0 2px var(--rose-b) inset;
}
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 0;
  box-shadow: 0 2px 10px rgba(60, 24, 20, 0.32), 0 0 0 2px var(--rose-b) inset;
}
input[type="range"]:focus-visible { outline: 3px solid var(--rose); outline-offset: 6px; border-radius: 999px; }

/* ── Kartlar ───────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.card {
  border-radius: 22px; padding: 24px;
  background: var(--glass); border: 1px solid var(--glass-line);
  box-shadow: var(--glass-sh);
}
.card__ico {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--rose) 15%, transparent); color: var(--rose);
  margin-bottom: 15px;
}
.card--sage .card__ico { background: color-mix(in srgb, var(--sage) 17%, transparent); color: var(--sage); }
.card--gold .card__ico { background: color-mix(in srgb, var(--gold) 17%, transparent); color: var(--gold); }
.card h3 { margin-bottom: 6px; }
.card p { font-size: 0.92rem; color: var(--ink2); }

/* ── Fiyat ─────────────────────────────────────────────────────────────────── */
.plans { display: grid; gap: 18px; align-items: stretch; }
@media (min-width: 800px) { .plans { grid-template-columns: 1fr 1.12fr; } }
.plan {
  border-radius: 26px; padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid var(--glass-line); background: var(--glass); box-shadow: var(--glass-sh);
  display: flex; flex-direction: column;
}
.plan--plus { border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.plan__tag { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink2); }
.plan--plus .plan__tag { color: var(--gold); }
.plan__price { font-family: var(--font-serif); font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1.1; margin: 0.5rem 0 0.1rem; }
.plan__price small { font-family: var(--font-sans); font-size: 0.92rem; font-weight: 700; color: var(--ink2); }
.plan .ticks { margin-top: 1.3rem; }
.plan__foot { margin-top: auto; padding-top: 1.5rem; }

/* ── İndirme + QR ──────────────────────────────────────────────────────────── */
.getit {
  border-radius: 30px; padding: clamp(30px, 5vw, 60px);
  background: var(--glass); border: 1px solid var(--glass-line); box-shadow: var(--glass-sh);
  display: grid; gap: 34px; align-items: center;
}
@media (min-width: 860px) { .getit { grid-template-columns: 1fr auto; } }
.qr { display: none; text-align: center; }
@media (min-width: 860px) { .qr { display: block; } }
.qr__box {
  width: 168px; height: 168px; padding: 14px; border-radius: 20px;
  background: #fff; box-shadow: 0 8px 22px rgba(90, 40, 30, 0.14);
}
.qr__box img { width: 100%; height: 100%; }
.qr p { margin-top: 11px; font-size: 0.78rem; color: var(--ink2); max-width: 168px; }

/* ── SSS ───────────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 10px; max-width: 800px; }
details {
  border-radius: 18px; padding: 4px 20px;
  background: var(--glass); border: 1px solid var(--glass-line);
}
summary {
  cursor: pointer; list-style: none; padding: 15px 0; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; flex: none; width: 10px; height: 10px; border-right: 2.5px solid var(--rose);
  border-bottom: 2.5px solid var(--rose); transform: rotate(45deg) translateY(-3px);
  transition: transform 0.25s ease;
}
details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
details p { padding-bottom: 18px; color: var(--ink2); font-size: 0.95rem; max-width: 66ch; }

/* ── Sorumluluk metni ──────────────────────────────────────────────────────── */
.disclaimer {
  border-radius: 18px; padding: 18px 22px;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
  font-size: 0.88rem; line-height: 1.6; max-width: 74ch;
}

/* ── Alt bilgi ─────────────────────────────────────────────────────────────── */
footer { padding-block: clamp(48px, 6vw, 76px); border-top: 1px solid var(--glass-line); }
.foot { display: grid; gap: 30px; }
@media (min-width: 760px) { .foot { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot h4 { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink2); margin: 0 0 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.92rem; }
.foot a { text-decoration: none; color: var(--ink2); transition: color 0.2s; }
.foot a:hover { color: var(--rose); }
.foot__bot { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 0.82rem; color: var(--ink2); }

/* ── Görünür olma animasyonu ───────────────────────────────────────────────── */
.rise { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 6px; }

/* "İçeriğe geç" — ekran okuyucuya görünür, gözle görünmez.
   ESKİ YÖNTEM (inset-inline-start: -9999px) RTL'de 10.000 pikselik YATAY TAŞMA
   yaratıyordu: sağdan sola düzende negatif `right` sayfayı sağa uzatıyor ve
   Arapça sayfa boş görünüyordu. clip-path yöntemi yön-bağımsızdır. */
.skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
  padding: 12px 18px; z-index: 100;
  background: var(--canvas-a); border-radius: 0 0 12px 0; font-weight: 800;
}
.skip:focus {
  width: auto; height: auto; overflow: visible; clip-path: none;
  inset-inline-start: 0; top: 0;
}


/* ── Dil seçici ──────────────────────────────────────────────────────────────
   Üst çubukta, tema düğmesinin yanında. Menü klavyeyle kapanır (Esc). */
.langpick { position: relative; }
.langpick__btn { display: inline-flex; align-items: center; gap: 6px; width: auto; padding-inline: 10px; }
.langpick__btn span { font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.langpick__menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 168px; margin: 0; padding: 6px; list-style: none;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(60, 30, 20, .38);
}
.langpick__menu[hidden] { display: none; }
.langpick__menu li { margin: 0; }
.langpick__menu button {
  display: block; width: 100%; padding: 9px 12px; border: 0; border-radius: 10px;
  background: transparent; color: var(--ink); font: inherit; font-size: 14px;
  font-weight: 700; text-align: start; cursor: pointer;
}
.langpick__menu button:hover, .langpick__menu button:focus-visible { background: var(--tint); }
.langpick__menu button[aria-selected="true"] { color: var(--accent); }
.langpick__menu button[aria-selected="true"]::after { content: " ✓"; }

/* ── Sağdan sola (Arapça) ────────────────────────────────────────────────────
   Düzenin çoğu zaten mantıksal özelliklerle kurulu; burada yalnız yön
   varsayımı yapan birkaç yeri aynalıyoruz. */
[dir="rtl"] .phones .phone:first-child { transform: translateY(20px) rotate(2.5deg); }
[dir="rtl"] .phones .phone:last-child  { transform: rotate(-2.5deg); }
[dir="rtl"] .scrub__ctl input[type="range"] { transform: scaleX(-1); }
[dir="rtl"] .ticks li svg,
[dir="rtl"] .card__ico svg { transform: scaleX(-1); }
