@import url("assets/vendor/fonts/google-fonts.css");
@import url("assets/vendor/fonts/google-fonts.css");

:root {
  --purple: #4b2a86;
  --purple-2: #766ab0;
  --navy: #06152b;
  --ink: #15182f;
  --muted: #677086;
  --line: #e5e0f0;
  --soft: #f7f5fb;
  --mint: #22b98f;
  --cyan: #27a7c8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(33, 23, 75, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.84);
  font-size: 14px;
}
.topbar .container, .nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topbar .container { min-height: 42px; flex-wrap: wrap; }
.topbar strong { color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(75,42,134,.1);
}
.nav .container { min-height: 92px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 220px; max-height: 76px; height: auto; object-fit: contain; }
.brand small { display: none; }
.menu { display: flex; gap: 22px; color: var(--navy); font-weight: 800; font-size: 15px; }
.actions { display: flex; gap: 10px; align-items: center; min-width: max-content; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 14px 28px rgba(75,42,134,.24);
}
.btn-dark { color: #fff; background: var(--navy); }
.btn-ghost { color: var(--purple); background: #fff; border-color: rgba(75,42,134,.18); }

.offer-slider {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--navy));
}
.offer-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(39,167,200,.22), transparent 30%);
  pointer-events: none;
}
.offer-track {
  position: relative;
  min-height: 118px;
  display: grid;
  align-items: center;
}
.offer-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 58px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.offer-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}
.offer-copy h2 { color: #fff; font-size: clamp(20px, 3vw, 30px); line-height: 1.3; margin-bottom: 4px; }
.offer-copy p { color: rgba(255,255,255,.78); margin-bottom: 0; font-weight: 700; }
.offer-tools {
  position: absolute;
  z-index: 2;
  inset-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.offer-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}
.offer-dots {
  position: absolute;
  z-index: 2;
  inset-inline-start: 22px;
  bottom: 14px;
  display: flex;
  gap: 7px;
}
.offer-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
  cursor: pointer;
  padding: 0;
}
.offer-dot.is-active { width: 22px; border-radius: 999px; background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 54px;
  background:
    radial-gradient(circle at 12% 16%, rgba(39,167,200,.17), transparent 30%),
    linear-gradient(180deg, #fbf9ff 0%, #fff 80%);
}
.hero::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--mint));
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 42px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--purple);
  background: rgba(75,42,134,.08);
  border: 1px solid rgba(75,42,134,.12);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 900;
  font-size: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--navy); font-size: clamp(38px, 6vw, 68px); line-height: 1.13; margin: 18px 0; }
.hero p { color: #4d556b; font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.visual-card {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(75,42,134,.17), rgba(39,167,200,.14));
  box-shadow: var(--shadow);
}
.visual-card img { width: 100%; aspect-ratio: 1.6 / 1; object-fit: cover; border-radius: 12px; background: #fff; }

section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head h2 { color: var(--navy); font-size: clamp(28px, 4vw, 42px); line-height: 1.28; margin-bottom: 0; max-width: 740px; }
.section-head p { color: var(--muted); margin-bottom: 0; max-width: 420px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 36px rgba(21,24,47,.05);
}
.icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--purple);
  background: var(--soft);
  font-weight: 900;
  margin-bottom: 14px;
}
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.card p, .card li { color: var(--muted); font-size: 15px; margin-bottom: 0; }
.card ul { padding: 0; margin: 12px 0 0; list-style: none; display: grid; gap: 8px; }
.card li::before { content: "✓"; color: var(--mint); font-weight: 900; margin-inline-end: 7px; }
.feature-list-card { max-height: 620px; overflow: auto; }
.feature-list {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.feature-list li {
  font-size: 14px;
  line-height: 1.65;
}

.dark-band { background: var(--navy); color: #fff; }
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band p, .dark-band li { color: rgba(255,255,255,.76); }
.dark-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }

.apps { background: #fbf9ff; }
.app-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21,24,47,.06);
}
.app-card + .app-card { margin-top: 18px; }
.app-card img { aspect-ratio: 1.3 / 1; object-fit: contain; border-radius: 8px; background: var(--soft); }

.comparison-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(34,185,143,.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}
.compare-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.compare-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(21,24,47,.06);
}
.compare-card.is-pro {
  border-color: rgba(75,42,134,.28);
  background: linear-gradient(145deg, rgba(75,42,134,.08), #fff 62%);
}
.compare-card h3 { color: var(--navy); font-size: 28px; margin: 12px 0 8px; }
.compare-card p { color: var(--muted); min-height: 64px; }
.comparison-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
.comparison-table th,
.comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}
.comparison-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: var(--navy);
  font-size: 16px;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: right;
  min-width: 360px;
}
.comparison-table tr:nth-child(even) td { background: #fbfafd; }
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 900;
}
.status.yes {
  color: #116846;
  background: rgba(34,185,143,.13);
}
.status.no {
  color: #a8202b;
  background: rgba(225,45,67,.1);
}

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.plans[hidden] { display: none; }
.plan-code { display: inline-flex; align-items: center; justify-content: center; width: max-content; margin: 0 auto 14px; padding: 5px 9px; border-radius: 5px; color: #6842ad; background: #eee8f8; direction: ltr; font-weight: 800; }
.plans-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  width: min(100%, 380px);
  margin: 0 auto 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 30, 57, .07);
}
.plans-switch-btn {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.plans-switch-btn.is-active {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 8px 18px rgba(75, 42, 134, .22);
}
.plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  min-height: 292px;
  box-shadow: 0 12px 36px rgba(21,24,47,.045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(75,42,134,.46); }
.badge { display: inline-flex; color: var(--mint); background: rgba(34,185,143,.09); border-radius: 999px; padding: 5px 10px; font-size: 13px; font-weight: 900; margin-bottom: 10px; }
.price { display: flex; align-items: baseline; gap: 7px; color: var(--purple); margin: 12px 0 8px; }
.price strong { font-size: 40px; line-height: 1; }
.price-contact strong { font-size: 25px; }
.price-note,
.plan-tax-note {
  color: var(--navy);
  background: rgba(39,167,200,.09);
  border: 1px solid rgba(39,167,200,.18);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
}
.price-note { margin: -12px 0 22px; }
.selected-plan {
  border: 1px solid rgba(75,42,134,.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(75,42,134,.08), rgba(39,167,200,.08));
  padding: 18px;
  margin: 18px 0 22px;
}
.selected-plan .label { color: var(--muted); font-weight: 800; font-size: 14px; margin: 0 0 6px; }
.selected-plan h3 { color: var(--navy); font-size: 24px; margin: 0; }
.selected-plan p { color: var(--purple); font-weight: 900; margin: 4px 0 0; }
.selected-plan .plan-tax-note { color: var(--navy); margin-top: 12px; }

.form-page {
  padding: 54px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(39,167,200,.14), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, #fff 70%);
}
.form-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.register-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  max-width: 1220px;
}
.register-layout .panel {
  padding: clamp(24px, 4vw, 42px);
}
.register-layout h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 56px);
}
.register-layout .form-note {
  max-width: 640px;
  font-size: 17px;
}
.register-plan-aside { position: sticky; top: 24px; }
.register-plan-aside .selected-plan { overflow: hidden; margin: 0; padding: 0; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.selected-plan-head { padding: 28px; color: #fff; background: linear-gradient(135deg,#5c2785,#17183f); }
.selected-plan-label { display: inline-flex; margin-bottom: 20px; padding: 8px 14px; border-radius: 999px; color: var(--navy); background: #fff; font-size: 13px; font-weight: 900; }
.selected-plan-head small { display: block; margin-bottom: 7px; color: rgba(255,255,255,.72); font-weight: 800; }
.selected-plan-head h3,.selected-plan .selected-plan-head h3 { color: #fff; font-size: 30px; line-height: 1.35; }
.selected-plan-price { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; direction: rtl; }
.selected-plan-price strong { font-size: 54px; line-height: 1; }
.selected-plan-price span { font-size: 14px; font-weight: 800; }
.selected-plan-head p,.selected-plan .selected-plan-head p { margin-top: 18px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.8; }
.selected-plan-body { padding: 25px; }
.selected-plan-body ul { display: grid; gap: 13px; margin: 0 0 20px; padding: 0; list-style: none; }
.selected-plan-body li { position: relative; padding-inline-start: 24px; color: var(--navy); font-weight: 800; }
.selected-plan-body li:before { content: "✓"; position: absolute; inset-inline-start: 0; color: #10b981; font-size: 18px; }
.selected-plan-code { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 12px 14px; border-radius: 7px; background: #f4f0fa; }
.selected-plan-code span { color: var(--muted); font-size: 12px; font-weight: 800; }
.selected-plan-code strong { color: var(--purple); direction: ltr; }
.selected-plan-help { padding: 16px; border-radius: 8px; background: #f7f3fb; }
.selected-plan-help strong { color: var(--navy); }
.selected-plan-help p,.selected-plan .selected-plan-help p { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.panel { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 28px; box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 900; }
label span {
  color: var(--purple);
  background: rgba(75,42,134,.08);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  margin-inline-start: 6px;
}
input, select, textarea {
  width: 100%;
  min-height: 64px;
  border: 1px solid #dcd6ea;
  border-radius: 10px;
  padding: 0 18px;
  font: inherit;
  font-size: 17px;
  outline: none;
}
textarea { min-height: 116px; padding-top: 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(75,42,134,.1); }
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #d92d4a;
  box-shadow: 0 0 0 4px rgba(217,45,74,.1);
}
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.form-note { color: var(--muted); max-width: 420px; font-size: 14px; }
.required-note {
  color: var(--navy);
  background: rgba(75,42,134,.07);
  border: 1px solid rgba(75,42,134,.14);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 900;
  margin: 0 0 16px;
}
.form-alert {
  display: none;
  color: #8f172c;
  background: #fff2f4;
  border: 1px solid rgba(217,45,74,.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
  margin: 0 0 16px;
}
.form-alert.is-visible { display: block; }
.form-alert.is-success {
  color: #087556;
  background: #effbf7;
  border-color: rgba(8,117,86,.22);
}

.legal-hero {
  padding: 64px 0 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(39,167,200,.15), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, #fff 100%);
}
.legal-hero .panel { max-width: 920px; margin-inline: auto; }
.legal-hero h1 { margin-bottom: 10px; }
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0 70px;
}
.legal-nav {
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(21,24,47,.06);
}
.legal-nav a {
  display: block;
  color: var(--navy);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 8px;
}
.legal-nav a:hover { background: var(--soft); color: var(--purple); }
.legal-content {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}
.legal-content article + article { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 26px; }
.legal-content h2 { font-size: 26px; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 17px; }
.legal-content ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.legal-content li::before { content: "•"; color: var(--mint); font-weight: 900; margin-inline-end: 8px; }
.legal-pre {
  white-space: pre-wrap;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.1;
  margin: 0;
}
.legal-pre strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin: 26px 0 8px;
}

.login-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: center; }
.login-intro {
  min-height: 580px;
  border-radius: 14px;
  padding: 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(75,42,134,.94), rgba(6,21,43,.96)), url("https://dwam.pro/dwam_assets/assets/images/banner-img.png") center/cover;
  box-shadow: var(--shadow);
}
.login-intro .eyebrow { color: var(--navy); background: #fff; }
.login-intro h1 { color: #fff; }
.login-intro p { color: rgba(255,255,255,.78); }

.cta {
  background: linear-gradient(135deg, rgba(75,42,134,.96), rgba(6,21,43,.96)), url("https://dwam.pro/dwam_assets/assets/images/banner-img.png") center/cover;
  color: #fff;
  padding: 54px 0;
}
.cta .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.78); margin-bottom: 0; }

footer { background: #fff; color: var(--muted); border-top: 1px solid var(--line); padding: 34px 0; }
footer .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer a { font-weight: 800; color: var(--purple); }

.app-download { padding: 72px 0; background: #f7f8fc; border-top: 1px solid var(--line); }
.app-download-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 28px; align-items: stretch; }
.app-download-copy { padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.app-download-copy h2 { margin: 12px 0 8px; font-size: clamp(27px, 3vw, 38px); }
.app-download-copy p { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; }
.store-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.store-link { min-width: 166px; min-height: 58px; display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border-radius: 8px; color: #fff; background: #101629; box-shadow: 0 8px 18px rgba(16, 22, 41, .15); text-decoration: none; transition: transform .18s ease, background .18s ease; }
.store-link:hover { color: #fff; background: #25213d; transform: translateY(-2px); }
.store-link svg { width: 27px; height: 27px; fill: currentColor; flex: 0 0 auto; }
.store-link span { display: grid; line-height: 1.15; }
.store-link small { color: rgba(255,255,255,.72); font-size: 10px; }
.store-link strong { margin-top: 2px; font-family: Inter, Arial, sans-serif; font-size: 15px; letter-spacing: 0; }
.social-follow { display: flex; flex-direction: column; justify-content: center; padding: 30px; border: 1px solid #d9d0ea; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #4b2a86, #192447); }
.social-follow > span { color: rgba(255,255,255,.72); font-size: 15px; }
.social-follow > strong { margin-top: 5px; font-family: Inter, Arial, sans-serif; font-size: 27px; letter-spacing: 0; }
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.social-links a { min-height: 76px; display: grid; place-items: center; gap: 5px; padding: 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; color: #fff; text-decoration: none; transition: background .18s ease, transform .18s ease; }
.social-links a:hover { color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }
.social-links svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links a:first-child svg, .social-links a:last-child svg { fill: currentColor; stroke: none; }
.social-links span { font-family: Inter, Arial, sans-serif; font-size: 11px; }

@media (max-width: 820px) {
  .app-download { padding: 44px 0; }
  .app-download-layout { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .app-download-copy, .social-follow { padding: 22px; }
  .store-links { display: grid; grid-template-columns: 1fr; }
  .store-link { width: 100%; }
}

.whatsapp-float {
  position: fixed;
  z-index: 120;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #18b96b;
  box-shadow: 0 12px 28px rgba(18, 148, 82, .3);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
[dir="rtl"] .whatsapp-float { right: 20px; }
[dir="ltr"] .whatsapp-float { left: 20px; }
.whatsapp-float:hover {
  color: #fff;
  background: #109957;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(18, 148, 82, .38);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(18, 148, 82, .5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

@media (max-width: 980px) {
  .menu { display: none; }
  .nav .container { flex-wrap: wrap; justify-content: center; }
  .actions { flex-wrap: wrap; justify-content: center; white-space: normal; }
  .hero-grid, .app-card, .form-layout, .login-layout, .legal-layout, .compare-summary { grid-template-columns: 1fr; }
  .register-plan-aside { position: static; order: -1; }
  .legal-nav { position: static; }
  .grid-4, .plans { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .login-intro { min-height: auto; gap: 34px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1160px); }
  .topbar .container, .nav .container, .section-head, .cta .container, .actions, .form-actions { flex-direction: column; align-items: stretch; }
  .offer-track { min-height: 246px; }
  .offer-slide { grid-template-columns: 1fr; padding: 22px 54px 42px 18px; gap: 12px; }
  .offer-label { width: max-content; min-width: 0; }
  .offer-tools { inset-inline-end: 12px; top: 18px; transform: none; }
  .btn { width: 100%; }
  .nav .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .nav .actions .btn {
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
  }
  .grid-4, .plans, .field-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  section { padding: 52px 0; }
  .panel { padding: 22px; }
  .brand img { width: 170px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 14px; }
  [dir="rtl"] .whatsapp-float { right: 14px; }
  [dir="ltr"] .whatsapp-float { left: 14px; }
  h1 { font-size: clamp(34px, 12vw, 48px); }
  .comparison-table { min-width: 680px; }
  .comparison-table th:first-child,
  .comparison-table td:first-child { min-width: 280px; }
}

/* Public careers entry point: aligned with the DWAM Pro marketing system. */
.careers-promo {
  padding: 84px 0;
  background: #f5f8fc;
  border-top: 1px solid var(--line);
}
.careers-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 56px;
  align-items: center;
}
.careers-promo h2 {
  margin: 12px 0;
  max-width: 700px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
}
.careers-promo p { max-width: 690px; margin: 0 0 26px; color: var(--muted); font-size: 17px; }
.careers-promo-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--cyan);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(26, 38, 82, .08);
}
.careers-promo-list div { display: grid; gap: 5px; padding: 23px 26px; border-bottom: 1px solid var(--line); }
.careers-promo-list div:last-child { border-bottom: 0; }
.careers-promo-list strong { font-size: 19px; color: var(--navy); }
.careers-promo-list span { color: var(--muted); font-size: 14px; }
@media (max-width: 780px) {
  .careers-promo { padding: 56px 0; }
  .careers-promo-grid { grid-template-columns: 1fr; gap: 28px; }
}


