/* ── Reset & tokens ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #E8500A;
  --orange-dark: #C43A05;
  --orange-light: #FF7235;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DE;
  --ink: #1C1C1E;
  --ink-light: #6b6b6b;
  --white: #ffffff;
  --blue: #1d6dff;
  --radius: 16px;
  --font-display: 'Inter', -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a:focus-visible {
  outline: 3px solid rgba(232,80,10,0.35);
  outline-offset: 4px;
}

/* ── Utility ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(232,80,10,0.1); padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.tag--dark { color: #ff9e7a; background: rgba(255,114,53,0.15); }

/* ── Phone frame ── */
.phone {
  width: 240px;
  flex-shrink: 0;
  border-radius: 32px;
  background: #111;
  box-shadow: 0 0 0 2px #333, 0 32px 80px rgba(0,0,0,0.28), 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.phone img { width: 100%; display: block; }
.phone.sm { width: 180px; border-radius: 28px; }
.phone.sm::before { width: 68px; height: 22px; border-radius: 0 0 14px 14px; }
.phone.lg { width: 290px; border-radius: 36px; }
.phone.lg::before { width: 110px; height: 32px; border-radius: 0 0 22px 22px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-logo--with-icon { display: inline-flex; align-items: center; }
.nav-logo--with-icon img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  margin-right: 8px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-light); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-light);
  font-size: 13px;
  font-weight: 700;
}
.lang-switch a {
  font-size: 13px;
  font-weight: 700;
}
.lang-switch a.active { color: var(--ink); }
.btn-nav { background: var(--orange); color: #fff !important; padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .2s, transform .15s; }
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.burger-button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger-button span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-overlay[hidden] { display: none; }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.36);
}
.menu-panel {
  position: relative;
  width: min(360px, 100vw);
  min-height: 100dvh;
  background: var(--white);
  padding: 88px 32px 40px;
  box-shadow: 18px 0 48px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.menu-panel a {
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.menu-panel a:hover { color: var(--orange); }
.menu-panel hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 30px 0 8px;
}
.menu-language {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.menu-language a {
  width: 46px;
  height: 38px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
}
.menu-language a.active {
  background: var(--ink);
  color: var(--white);
}
.menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-close span {
  position: absolute;
  left: 6px;
  top: 17px;
  width: 26px;
  height: 2px;
  background: #777;
  border-radius: 3px;
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }

/* ── HERO ── */
#hero {
  padding-top: 64px;
  min-height: 100vh;
  background: var(--cream);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 80px 0 60px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-text { min-width: 0; }
.hero-text h1 em { font-style: italic; color: var(--orange); }
.hero-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.btn-primary:hover { background: #000; transform: translateY(-2px); }
.btn-primary svg { flex-shrink: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(28,28,30,0.2);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.hero-proof {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 500;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-proof span::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L6.7 10.7L12 5.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  flex-shrink: 0;
}
.hero-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 560px;
}
.hero-phones .phone:nth-child(1) {
  transform: rotate(-5deg) translateY(20px);
  z-index: 1;
  animation: floatHeroLeft 6.5s ease-in-out infinite;
}
.hero-phones .phone:nth-child(2) {
  transform: rotate(3deg) translateY(-10px);
  z-index: 2;
  margin-left: -48px;
  animation: floatHeroRight 7s ease-in-out infinite;
}
.hero-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
  z-index: 10;
  animation: floatBadge 6.8s ease-in-out infinite;
}
.hero-badge-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge-text { font-size: 13px; }
.hero-badge-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.hero-badge-text span { color: var(--ink-light); }

/* ── STRIP ── */
.strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatHeroLeft {
  0%, 100% { transform: rotate(-5deg) translateY(20px); }
  50% { transform: rotate(-5deg) translateY(4px); }
}
@keyframes floatHeroRight {
  0%, 100% { transform: rotate(3deg) translateY(-10px); }
  50% { transform: rotate(3deg) translateY(-26px); }
}
@keyframes floatTeamLeft {
  0%, 100% { transform: rotate(-4deg) translateY(20px); }
  50% { transform: rotate(-4deg) translateY(4px); }
}
@keyframes floatTeamRight {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-16px); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatSoftAlt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}
@keyframes floatCtaLeft {
  0%, 100% { transform: rotate(-4deg) translateY(10px); }
  50% { transform: rotate(-4deg) translateY(-6px); }
}
@keyframes floatCtaRight {
  0%, 100% { transform: rotate(4deg) translateY(10px); }
  50% { transform: rotate(4deg) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip-inner,
  .hero-phones .phone,
  .hero-badge,
  .feature-visual .phone,
  .teams-phones .phone,
  .cta-phone-wrap .phone {
    animation: none !important;
  }
  .pricing-card,
  .btn-primary,
  .btn-secondary,
  .btn-nav,
  .btn-pricing,
  .store-button--ios {
    transition: none !important;
  }
}

/* ── FEATURES ── */
#features { padding: 120px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; color: var(--orange); }
.section-header p { font-size: 17px; color: var(--ink-light); max-width: 480px; margin: 0 auto; line-height: 1.6; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 16px;
}
.feature-text h3 em { font-style: italic; color: var(--orange); }
.feature-text p { font-size: 16px; color: var(--ink-light); line-height: 1.7; max-width: 380px; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10L8.5 13.5L15 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.feature-visual .phone { margin: 0 auto; }
.feature-row:nth-of-type(2) .feature-visual .phone { animation: floatSoft 6.4s ease-in-out infinite; }
.feature-row:nth-of-type(3) .feature-visual .phone { animation: floatSoftAlt 6.8s ease-in-out infinite; }
.feature-row:nth-of-type(4) .feature-visual .phone { animation: floatSoft 7.1s ease-in-out infinite; }
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 12% 18%;
  background: var(--cream);
  border-radius: var(--radius);
  z-index: -1;
}

/* ── TEAMS ── */
#teams {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.teams-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.teams-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.teams-text h2 em { font-style: italic; color: var(--orange-light); }
.teams-text p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 400px; margin-bottom: 32px; }
.teams-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.teams-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.teams-list strong { color: #fff; }
.teams-list-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.teams-phones {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.teams-phones .phone:first-child {
  transform: rotate(-4deg) translateY(20px);
  animation: floatTeamLeft 6.8s ease-in-out infinite;
}
.teams-phones .phone:last-child {
  margin-left: -32px;
  transform: rotate(3deg);
  animation: floatTeamRight 7.2s ease-in-out infinite;
}

/* ── PRICING ── */
#pricing { padding: 100px 0; background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform .24s ease, box-shadow .24s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  background: var(--orange);
  border-color: transparent;
  color: #fff;
}
.pricing-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 52px; font-weight: 800; letter-spacing: 0; line-height: 1; margin-bottom: 6px; }
.pricing-price sup { font-size: 22px; vertical-align: super; }
.pricing-period { font-size: 14px; opacity: 0.55; margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; line-height: 1.4; }
.pricing-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-price span { font-size: 14px; font-weight: 500; opacity: 0.7; }
.btn-pricing small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-light);
}
/* .pricing-meta {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.7;
  letter-spacing: 0.05em;
} */
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.8); }
.btn-pricing {
  display: block; width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.btn-pricing:hover { transform: translateY(-2px); }
.btn-pricing-outline { border: 1.5px solid rgba(0,0,0,0.15); color: var(--ink); }
.btn-pricing-outline:hover { background: rgba(0,0,0,0.04); }
.btn-pricing-white { background: #fff; color: var(--orange); }
.btn-pricing-white:hover { background: rgba(255,255,255,0.9); }

/* ── CTA FOOTER ── */
#cta {
  padding: 120px 0 60px;
  background: var(--white);
  text-align: center;
}
#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 20px;
}
#cta h2 em { font-style: italic; color: var(--orange); }
#cta p { font-size: 18px; color: var(--ink-light); max-width: 460px; margin: 0 auto 48px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.btn-primary.btn-large { font-size: 17px; padding: 18px 36px; }
.store-button {
  width: min(250px, 100%);
  min-height: 70px;
  border: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  text-decoration: none;
  font-family: var(--font-display);
}
.store-button svg { flex-shrink: 0; }
.store-button small {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.store-button strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.store-button--ios {
  background: var(--ink);
  color: var(--white);
  transition: transform .2s, background .2s;
}
.store-button--ios:hover {
  background: #000;
  transform: translateY(-2px);
}
.store-button--android {
  background: #d9d9d7;
  color: #7b7b78;
  cursor: not-allowed;
}
.store-button--android small { color: #969692; }
.android-note {
  margin: 0 auto 72px !important;
  font-size: 15px !important;
  color: #777b74 !important;
}
.cta-phone-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: flex-end;
}
.cta-phone-wrap .phone:nth-child(1) { transform: rotate(-4deg) translateY(10px); }
.cta-phone-wrap .phone:nth-child(1) { animation: floatCtaLeft 7.2s ease-in-out infinite; }
.cta-phone-wrap .phone:nth-child(2) { animation: floatSoftAlt 6.9s ease-in-out infinite; }
.cta-phone-wrap .phone:nth-child(3) { transform: rotate(4deg) translateY(10px); }
.cta-phone-wrap .phone:nth-child(3) { animation: floatCtaRight 7.4s ease-in-out infinite; }
#cta .cta-footer-note {
  max-width: 720px;
  margin: 110px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-light);
}
.cta-footer-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.cta-footer-note a:hover { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 40px 0;
  text-align: center;
}
footer .nav-logo { color: #fff; }
footer .nav-logo span { color: var(--orange); }
footer p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 12px; }
footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ── Legal pages ── */
.legal-page {
  background: var(--cream);
}
.legal-nav {
  background: rgba(255,255,255,0.9);
}
.legal-back {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.legal-back:hover { color: var(--ink); }
.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 144px 32px 96px;
}
.legal-kicker { margin-bottom: 24px; }
.legal-main h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 16px;
}
.legal-updated {
  color: var(--ink-light);
  margin-bottom: 44px;
}
.legal-lang-jump {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.legal-lang-jump:hover { color: var(--orange-dark); }
.legal-fr-version {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.legal-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 18px;
}
.legal-card h2 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.legal-card p,
.legal-card li {
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.7;
}
.legal-card p + p { margin-top: 10px; }
.legal-card ul {
  padding-left: 20px;
  margin: 10px 0;
}
.legal-card li + li { margin-top: 8px; }
.legal-card a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.legal-card a:hover { color: var(--orange-dark); }
.legal-footer {
  background: var(--ink);
  padding: 40px 0;
}
.legal-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-footer .nav-logo {
  color: var(--white);
  flex-shrink: 0;
}
.legal-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.legal-footer-meta p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin: 0;
}
.legal-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}
.legal-footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  text-decoration: none;
}
.legal-footer-links a:hover { color: rgba(255,255,255,0.82); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner, .feature-row, .teams-inner, .pricing-grid { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .nav-left { gap: 10px; }
  .container { padding: 0 20px; }
  #hero { min-height: auto; }
  .hero-inner { gap: 20px; padding: 64px 0 0; }
  .hero-text h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-text p {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .hero-ctas { gap: 12px; }
  .hero-proof { gap: 14px; margin-top: 20px; }
  .hero-phones {
    height: clamp(520px, 142vw, 640px);
    align-items: flex-end;
    margin-top: 0;
    overflow: visible;
  }
  .phone { width: clamp(164px, 46vw, 204px); }
  .phone.lg { width: clamp(206px, 56vw, 252px); }
  .hero-phones .phone:nth-child(1) {
    animation-name: floatHeroLeftMobile;
  }
  .hero-phones .phone:nth-child(2) {
    margin-left: clamp(-74px, -18vw, -48px);
    animation-name: floatHeroRightMobile;
  }
  .hero-badge {
    left: 0;
    bottom: 104px;
    max-width: calc(100vw - 64px);
  }
  @keyframes floatHeroLeftMobile {
    0%, 100% { transform: rotate(-5deg) translateY(-54px); }
    50% { transform: rotate(-5deg) translateY(-72px); }
  }
  @keyframes floatHeroRightMobile {
    0%, 100% { transform: rotate(3deg) translateY(-72px); }
    50% { transform: rotate(3deg) translateY(-90px); }
  }
  .feature-row.reverse { direction: ltr; }
  .feature-visual { order: -1; }
  #features, #teams, #pricing { padding: 80px 0; }
  .nav-links { display: none; }
  .menu-panel {
    width: 100vw;
    padding: 78px 24px 36px;
    box-shadow: none;
  }
  .menu-panel a {
    font-size: 24px;
    padding: 20px 0 17px;
  }
  .menu-panel hr {
    margin: 28px 0 8px;
  }
  .menu-close {
    top: 22px;
    right: 22px;
  }
  .store-button {
    width: min(250px, 100%);
    min-height: 68px;
    border-radius: 18px;
    padding: 14px 20px;
  }
  .store-button small { font-size: 10px; }
  .store-button strong { font-size: 23px; }
  .android-note { margin-bottom: 64px !important; }
  .cta-phone-wrap .phone:nth-child(1), .cta-phone-wrap .phone:nth-child(3) { display: none; }
  .legal-main {
    padding: 112px 20px 72px;
  }
  .legal-card {
    padding: 24px;
  }
  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-footer-meta {
    align-items: flex-start;
  }
  .legal-footer-links {
    justify-content: flex-start;
  }
}
