:root {
  --bg: #fbfbfd;
  --bg-soft: #f3f4f6;
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(17, 17, 17, 0.08);
  --text: #111111;
  --muted: #6e6e73;
  --muted-strong: #4a4a4f;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.06);
  --shadow-soft: 0 12px 28px rgba(17, 17, 17, 0.08);
  --radius-xl: 2.5rem;
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 1), transparent 32%),
    linear-gradient(180deg, #fbfbfd 0%, #f6f6f8 100%);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow-x: hidden;
}

.section {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.9rem 0 0.75rem;
  backdrop-filter: blur(18px);
}

.brand,
.topbar-meta {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a8a90;
}

.topbar-meta {
  justify-self: center;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7c7c82;
}

.topbar-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.topbar-actions .button {
  min-height: 42px;
  padding: 0 1.05rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

/* ── Language Switcher ── */
.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 17, 17, 0.22);
  transform: translateY(-1px);
}

.lang-switch-current {
  text-transform: uppercase;
}

.lang-switch-arrow {
  font-size: 0.7rem;
  line-height: 1;
  color: #7c7c82;
  transition: transform 200ms ease;
}

.lang-switch-btn[aria-expanded="true"] .lang-switch-arrow {
  transform: rotate(180deg);
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 190px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.14);
  z-index: 40;
  animation: langMenuIn 180ms ease;
}

.lang-switch-menu[hidden] {
  display: none;
}

@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-switch-menu button {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: none;
  background: transparent;
  border-radius: 12px;
  text-align: left;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background-color 140ms ease;
}

.lang-switch-menu button:hover {
  background: rgba(17, 17, 17, 0.05);
}

.lang-switch-menu button.active {
  background: rgba(17, 17, 17, 0.08);
  font-weight: 600;
}

[dir="rtl"] .lang-switch-menu {
  right: auto;
  left: 0;
  text-align: right;
}

[dir="rtl"] .lang-switch-menu button {
  text-align: right;
}

/* ── Buttons ── */
.link-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.link-pill {
  color: var(--text);
}

.button {
  border: 1px solid transparent;
}

.button:hover,
.link-pill:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - 5.5rem);
  padding: 1.75rem 0 2.25rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: -4rem -8rem auto;
  height: 20rem;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 8.75rem;
  right: 0;
  z-index: 0;
  width: min(41.5rem, 43vw);
  height: 34rem;
  border-radius: 2.2rem 0 0 2.2rem;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.10)),
    url("/new/hero-sunset.jpg") center/cover;
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.14);
}

/* RTL: resim sola, köşeler ters */
[dir="rtl"] .hero::after {
  right: auto;
  left: 0;
  border-radius: 0 2.2rem 2.2rem 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(52rem, 56%);
  padding: 2rem 0 1.15rem;
}

/* ── Eyebrow ── */
.eyebrow {
  margin: 0 0 1rem;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a8a90;
}

.eyebrow.small {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

/* ── Typography ── */
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 {
  max-width: 8em;
  font-size: clamp(2.8rem, 5.6vw, 4.5rem);
}


h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-lead,
.body-copy {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--muted-strong);
}

.hero-lead {
  max-width: 34rem;
  margin-top: 0.95rem;
}

.body-copy.compact {
  max-width: 42rem;
}

/* ── Hero Grid ── */
.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(50rem, 58%);
}

.hero-card,
.quote-card,
.phone-shell,
.final-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.label,
.quote-brand,
.quote-footer,
.phone-header {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.label,
.quote-brand,
.phone-header {
  letter-spacing: 0.24em;
  color: #8a8a90;
}

.label {
  font-size: 0.78rem;
}

.reason-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-grid article h2 {
  font-size: 1.38rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.reason-grid article p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5c5c61;
}

/* ── Hero Actions ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-stage,
.hero-band {
  display: none;
}

/* ── Value Sections ── */
.value-section {
  padding: 3rem 0;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
}

.value-layout.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.value-layout.reverse .value-copy {
  order: 2;
}

.value-layout.reverse .value-visual {
  order: 1;
}

.value-copy {
  max-width: 44rem;
}

.divider {
  width: 10rem;
  height: 1px;
  margin: 2rem 0;
  background: rgba(17, 17, 17, 0.12);
}

.quote-card {
  margin-top: 2.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  max-width: 34rem;
}

.quote-brand {
  font-size: 0.75rem;
}

.quote-card p {
  margin-top: 1.2rem;
  font-size: clamp(1.7rem, 3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #9a9aa0;
}

.value-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.07);
  aspect-ratio: 5 / 6;
}

.value-visual img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

/* ── Micro Proof ── */
.micro-proof {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.micro-proof-item {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted-strong);
  padding-left: 1rem;
  border-left: 2px solid var(--text);
}

/* ── How It Works ── */
.how-it-works {
  padding: 5rem 0;
}

.how-header {
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid var(--text);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-strong);
}

/* ── Who For ── */
.who-for {
  padding: 5rem 0;
}

.who-header {
  margin-bottom: 2.5rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.who-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.who-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--bg-soft);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.who-card h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.who-footer {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--muted-strong);
}

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0;
}

.faq-header {
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.faq-list {
  max-width: 52rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--muted);
  border-radius: 1px;
  transition: transform 300ms ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted-strong);
}

/* ── Onboarding ── */
.onboarding {
  padding: 6rem 0;
}

.section-heading {
  max-width: 52rem;
}

.section-heading h2 span,
.final-card h2 span {
  color: var(--muted);
}

.phone-shell {
  max-width: 26rem;
  margin: 3rem auto 0;
  padding: 0.85rem;
  border-radius: 2.75rem;
}

.phone-inner {
  padding: 0.65rem;
  border-radius: 2.2rem;
  background: #fbfbfd;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.03);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem 0.7rem;
  font-size: 0.68rem;
}

.phone-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 0.25rem 0.5rem;
  scroll-snap-type: x mandatory;
}

.phone-cards::-webkit-scrollbar {
  display: none;
}

.phone-card {
  min-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 1.8rem;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.06);
  scroll-snap-align: center;
}

.phone-card img {
  aspect-ratio: 9 / 11;
  object-fit: cover;
}

.phone-card-copy {
  padding: 1.35rem;
}

.phone-card-copy h3 {
  margin-top: 0.75rem;
}

.phone-card-copy p:last-child {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted-strong);
}

/* ── Final Frame ── */
.final-frame {
  padding: 0 0 5rem;
}

.final-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
}

.final-card .body-copy {
  margin-top: 2rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions .button,
.final-actions .button {
  min-width: 11rem;
}

/* ── Reveal Animations ── */
.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.99);
  filter: blur(10px);
  will-change: opacity, transform, filter;
  transition:
    opacity 1280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1280ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1280ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.value-visual.reveal,
.phone-shell.reveal,
.hero-card.reveal,
.final-card.reveal {
  transform: translate3d(0, 68px, 0) scale(0.978);
}

.value-visual.reveal.is-visible,
.phone-shell.reveal.is-visible,
.hero-card.reveal.is-visible,
.final-card.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.value-copy.reveal,
.section-heading.reveal,
.hero-copy.reveal {
  transform: translate3d(0, 30px, 0) scale(0.994);
}

.value-copy.reveal.is-visible,
.section-heading.reveal.is-visible,
.hero-copy.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topbar-meta {
    justify-self: start;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero::after {
    display: none;
  }

  .hero-copy,
  .hero-grid {
    max-width: none;
    width: 100%;
  }

  .hero-grid,
  .value-layout,
  .value-layout.reverse {
    grid-template-columns: 1fr;
  }

  .value-layout,
  .value-layout.reverse {
    min-height: auto;
    gap: 2rem;
  }

  .value-layout.reverse .value-copy,
  .value-layout.reverse .value-visual {
    order: initial;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
    order: initial;
  }

  .value-visual {
    aspect-ratio: 4 / 5;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .micro-proof {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 2.5rem), var(--max-width));
  }

  .topbar {
    width: min(calc(100% - 2.5rem), var(--max-width));
    padding: 0.9rem 0;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .hero-copy {
    max-width: none;
    padding: 1.4rem 0 1.4rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-card,
  .quote-card,
  .final-card {
    padding: 1.3rem;
  }

  .hero-grid {
    gap: 0.9rem;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .hero-actions .button,
  .final-actions .button {
    flex: 1 1 100%;
  }

  .quote-card p {
    font-size: 1.45rem;
  }

  .body-copy,
  .hero-lead {
    font-size: 1rem;
  }

  .phone-shell {
    margin-top: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Son value-section (05): demo'ya yapışık — alt boşluk alma ---- */
#value-05 {
  min-height: auto;
  padding: 3rem 0 2rem;
}
#value-05 .value-layout {
  min-height: auto;
}

/* ---- Demo inline — full-bleed ---- */
.demo-inline {
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100% !important;
  max-width: none !important;
}

.demo-inline .demo-frame {
  width: 100%;
  border: 0;
  display: block;
  min-height: 100vh;
  background: transparent;
}

/* ---- Section 02: Dil / guest ↔ staff ---- */
.lang-compose {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lang-compose .eyebrow {
  margin-bottom: 1.2rem;
}

.lang-compose h2 {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 auto 1rem;
  max-width: 720px;
}

.lang-compose h2 em {
  font-style: italic;
}

.lang-lede {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted-strong);
  margin: 0 auto 2.2rem;
  max-width: 580px;
}

.phones-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.phones-pair .phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phones-pair .phone img {
  width: 100%;
  max-width: 290px;
  height: auto;
  display: block;
}

.phones-pair .phone-label {
  margin-top: 1.1rem;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.phones-pair .phone-staff .phone-label {
  color: #111;
  font-weight: 600;
}

.phones-pair .divider-v {
  width: 1px;
  height: 72%;
  background: rgba(17, 17, 17, 0.14);
  position: relative;
}

.phones-pair .divider-v::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0.3rem 0.45rem;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .phones-pair {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .phones-pair .divider-v {
    display: none;
  }
}
