:root {
  --navy: #082f6f;
  --navy-deep: #041d48;
  --blue: #1565e8;
  --blue-light: #37a4ff;
  --cyan: #0891b2;
  --violet: #7c3aed;
  --orange: #f58220;
  --green: #0ba568;
  --red: #dc2626;
  --ink: #14213d;
  --muted: #667085;
  --line: #dce5f2;
  --soft: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 29, 72, 0.12);
  --radius: 24px;
  --font-ar: "Cairo", Tahoma, Arial, sans-serif;
  --font-latin: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
}

html[lang="fr"] body {
  font-family: var(--font-latin);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 242, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(4, 29, 72, 0.09);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(21, 101, 232, 0.18);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.brand strong {
  color: var(--navy);
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: #344054;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  transition: width 0.2s ease;
}

html[dir="ltr"] .main-nav a::after {
  right: auto;
  left: 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.language-switch {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-latin);
  font-weight: 800;
  transition: 0.2s ease;
}

.language-switch:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy);
  transition: 0.2s ease;
}

.button {
  min-height: 48px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 12px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0d47a1);
  box-shadow: 0 9px 22px rgba(21, 101, 232, 0.24);
}

.button-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section-dark {
  color: var(--white);
  background: var(--navy-deep);
}

.hero {
  position: relative;
  min-height: 770px;
  padding: 150px 0 55px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(55, 164, 255, 0.24), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(245, 130, 32, 0.14), transparent 26%),
    linear-gradient(135deg, #031b43 0%, #08377c 54%, #0d58b5 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 70px;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.eyebrow-light {
  color: #a9d8ff;
}

.eyebrow-light::before {
  display: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59d99d;
  box-shadow: 0 0 0 7px rgba(89, 217, 157, 0.12);
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: #6fc2ff;
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: #d7e7ff;
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #c8d9f3;
  font-size: 11px;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  color: #75e2aa;
  background: rgba(117, 226, 170, 0.12);
  border-radius: 50%;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  direction: ltr;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 450px;
  height: 450px;
  top: 3px;
  left: 62px;
}

.orbit-two {
  width: 330px;
  height: 330px;
  top: 60px;
  left: 122px;
}

.desktop-shell {
  position: absolute;
  top: 48px;
  left: 0;
  width: 86%;
  height: 342px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: #121b2b;
  box-shadow: 0 38px 65px rgba(0, 0, 0, 0.34);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.window-bar {
  height: 35px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c5d3e9;
  font-family: var(--font-latin);
  font-size: 8px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b6b;
}

.window-dots i:nth-child(2) {
  background: #ffc857;
}

.window-dots i:nth-child(3) {
  background: #55d68b;
}

.dashboard-demo {
  height: calc(100% - 35px);
  display: grid;
  grid-template-columns: 55px 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: #f1f5fb;
}

.hero-real-dashboard {
  display: block;
  background: #073b7c;
}

.hero-real-dashboard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.dashboard-demo aside {
  padding-top: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  background: #082f6f;
}

.dashboard-demo aside b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 10px;
  background: linear-gradient(135deg, #ff8a2d, #ef5123);
  font-family: var(--font-latin);
}

.dashboard-demo aside i {
  width: 17px;
  height: 17px;
  opacity: 0.7;
  border: 2px solid #8db6ef;
  border-radius: 5px;
}

.dashboard-content {
  padding: 22px;
}

.demo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.demo-heading i {
  width: 75px;
  height: 22px;
  border-radius: 8px;
  background: #1768dc;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.demo-metrics div {
  padding: 12px;
  color: var(--ink);
  border: 1px solid #dce6f3;
  border-radius: 12px;
  background: var(--white);
}

.demo-metrics span {
  display: block;
  color: #0f56bc;
  font-family: var(--font-latin);
  font-size: 17px;
  font-weight: 800;
}

.demo-metrics small {
  color: var(--muted);
  font-size: 8px;
}

.demo-chart {
  height: 120px;
  padding: 18px 18px 0;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 11px;
  margin-top: 17px;
  border: 1px solid #dce6f3;
  border-radius: 13px;
  background:
    linear-gradient(#edf2f8 1px, transparent 1px),
    var(--white);
  background-size: 100% 28px;
}

.demo-chart i {
  width: 18px;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(#35a5ff, #155eef);
}

.phone-shell {
  position: absolute;
  right: -5px;
  bottom: 0;
  z-index: 3;
  width: 178px;
  height: 355px;
  padding: 9px;
  overflow: hidden;
  border: 2px solid #3b4659;
  border-radius: 34px;
  background: #101725;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.4);
  transform: rotate(4deg);
}

.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 4;
  width: 62px;
  height: 16px;
  border-radius: 0 0 11px 11px;
  background: #101725;
  transform: translateX(-50%);
}

.phone-content {
  height: 100%;
  padding: 28px 14px 14px;
  border-radius: 25px;
  color: var(--ink);
  background: linear-gradient(180deg, #eaf4ff, #ffffff);
}

.hero-real-phone {
  padding: 0;
  overflow: hidden;
  background: #073b7c;
}

.hero-real-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.phone-brand {
  color: var(--blue);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 800;
}

.road-sign {
  width: 72px;
  height: 72px;
  margin: 23px auto 16px;
  display: grid;
  place-items: center;
  color: #20293a;
  border: 10px solid #dc2626;
  border-radius: 50%;
  background: var(--white);
  font-family: var(--font-latin);
  font-size: 23px;
  font-weight: 800;
}

.phone-content > strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  text-align: center;
}

.phone-progress {
  height: 5px;
  margin: 10px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce5f2;
}

.phone-progress i {
  width: 62%;
  height: 100%;
  display: block;
  background: var(--blue);
}

.answer-choice {
  margin-top: 7px;
  padding: 6px 10px;
  color: #5b6b84;
  border: 1px solid #d9e2ef;
  border-radius: 9px;
  background: var(--white);
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 700;
}

.answer-choice.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 38px rgba(4, 29, 72, 0.24);
  backdrop-filter: blur(12px);
}

.sync-card {
  left: 48px;
  bottom: 20px;
  padding: 12px 15px;
}

.sync-symbol {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 11px;
  background: linear-gradient(135deg, #7c3aed, #155eef);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 700;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-card strong {
  font-size: 10px;
}

.floating-card small {
  color: var(--muted);
  font-size: 8px;
}

.hero-strip {
  position: relative;
  z-index: 4;
  min-height: 76px;
  margin-top: 45px;
  padding: 15px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #dceaff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.strip-items {
  display: flex;
  gap: 8px;
  direction: ltr;
}

.strip-items span {
  padding: 7px 11px;
  color: #dceaff;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-latin);
  font-size: 9px;
}

.strip-items b {
  color: #70c5ff;
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.section-heading p,
.workflow-copy > p,
.faq-intro > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.section-intro {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(21, 101, 232, 0.07), transparent 24%),
    var(--white);
}

.ecosystem-map {
  display: grid;
  grid-template-columns: 1fr 96px 1fr 96px 1fr;
  align-items: center;
}

.eco-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(4, 29, 72, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eco-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.eco-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(21, 101, 232, 0.06);
}

.eco-number {
  position: absolute;
  top: 20px;
  inset-inline-end: 22px;
  color: #d9e4f2;
  font-family: var(--font-latin);
  font-size: 31px;
  font-weight: 800;
}

.eco-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
  background: linear-gradient(135deg, #155eef, #083c8f);
  box-shadow: 0 12px 25px rgba(21, 94, 239, 0.23);
  font-family: var(--font-latin);
  font-size: 22px;
  font-weight: 800;
}

.eco-classroom .eco-icon {
  background: linear-gradient(135deg, #0891b2, #0d5f7d);
}

.eco-mobile .eco-icon {
  background: linear-gradient(135deg, #7c3aed, #4f23a9);
}

.eco-card h3 {
  margin: 20px 0 7px;
  color: var(--navy);
  font-size: 20px;
}

.eco-card p {
  min-height: 74px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.eco-card > span {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 10px;
  color: var(--blue);
  border-radius: 999px;
  background: #edf4ff;
  font-size: 10px;
  font-weight: 700;
}

.eco-classroom > span {
  color: #08758e;
  background: #eafafd;
}

.eco-mobile > span {
  color: var(--violet);
  background: #f3edff;
}

.eco-connector {
  display: flex;
  align-items: center;
  color: #8191a9;
  direction: ltr;
  font-family: var(--font-latin);
  font-size: 8px;
  font-weight: 700;
}

.eco-connector i {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, #a8bad2 0 4px, transparent 4px 8px);
}

.eco-connector span {
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.ecosystem-result {
  max-width: 750px;
  margin: 32px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #bdebd4;
  border-radius: 16px;
  background: #f0fdf6;
}

.result-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  border-radius: 12px;
  background: var(--green);
  font-family: var(--font-latin);
  font-weight: 800;
}

.ecosystem-result p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ecosystem-result strong {
  color: #075d3c;
  font-size: 13px;
}

.ecosystem-result span {
  color: #4f7364;
  font-size: 11px;
}

.products-section {
  background: var(--soft);
}

.product-row {
  margin-bottom: 45px;
  padding: 54px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(4, 29, 72, 0.07);
}

.product-row.reverse .product-copy {
  order: 2;
}

.product-row.reverse .product-demo {
  order: 1;
}

.product-label {
  width: max-content;
  padding: 5px 10px 5px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  border-radius: 999px;
  background: #edf4ff;
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 800;
}

.product-label span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
}

.product-label.cyan {
  color: var(--cyan);
  background: #e9fbff;
}

.product-label.cyan span {
  background: var(--cyan);
}

.product-label.violet {
  color: var(--violet);
  background: #f3edff;
}

.product-label.violet span {
  background: var(--violet);
}

.product-copy h3 {
  margin: 18px 0 0;
  color: var(--blue);
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.product-copy h4 {
  margin: 5px 0 13px;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
}

.product-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.feature-list {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-inline-start: 21px;
  color: #344054;
  font-size: 11px;
  font-weight: 600;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: #eafaf2;
  font-family: var(--font-latin);
  font-size: 8px;
  font-weight: 800;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
}

.store-button {
  min-width: 154px;
  min-height: 52px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #101828;
  box-shadow: 0 9px 20px rgba(16, 24, 40, 0.14);
  direction: ltr;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-button:hover {
  color: var(--white);
  background: #1d2939;
  box-shadow: 0 13px 26px rgba(16, 24, 40, 0.2);
  transform: translateY(-2px);
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-button small {
  color: #d0d5dd;
  font-size: 8px;
  font-weight: 600;
}

.store-button strong {
  margin-top: 3px;
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 700;
}

.store-mark {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
}

.store-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.app-store-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 3.3;
}

.play-store-mark svg {
  fill: #fff;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-demo {
  position: relative;
  min-height: 390px;
  direction: ltr;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(84, 170, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #e8f2ff, #d9e8fb);
}

.mock-window {
  position: absolute;
  inset: 42px -20px 25px 35px;
  overflow: hidden;
  border: 7px solid #172235;
  border-radius: 18px;
  background: #172235;
  box-shadow: 0 28px 45px rgba(11, 42, 87, 0.22);
  transform: rotate(-2deg);
}

.mock-top {
  height: 31px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bdcce1;
  font-family: var(--font-latin);
  font-size: 7px;
}

.mock-top i {
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: #4b586e;
}

.real-desktop-frame {
  inset: 50% auto auto 50%;
  width: 112%;
  height: auto;
  aspect-ratio: 1915 / 1001;
  padding: 7px;
  border-width: 0;
  border-radius: 19px;
  transform: translate(-50%, -50%) perspective(1100px) rotateY(-3deg) rotateZ(-1deg);
}

.real-desktop-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.mock-body {
  height: calc(100% - 31px);
  display: grid;
  grid-template-columns: 48px 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f8fc;
}

.mock-sidebar {
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  background: var(--navy);
}

.mock-sidebar b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  background: var(--orange);
  font-family: var(--font-latin);
  font-size: 11px;
}

.mock-sidebar i {
  width: 14px;
  height: 14px;
  border: 2px solid #8cb7ef;
  border-radius: 4px;
}

.mock-page {
  padding: 22px;
}

.mock-title {
  display: flex;
  justify-content: space-between;
}

.mock-title i {
  width: 115px;
  height: 10px;
  border-radius: 999px;
  background: #162f55;
}

.mock-title span {
  width: 55px;
  height: 20px;
  border-radius: 7px;
  background: #1768dc;
}

.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.mock-stat-row i {
  height: 58px;
  border: 1px solid #dce5f2;
  border-radius: 11px;
  background: var(--white);
}

.mock-stat-row i::before {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  margin: 15px;
  border-radius: 8px;
  background: #e7f0ff;
}

.mock-table {
  overflow: hidden;
  border: 1px solid #dce5f2;
  border-radius: 11px;
  background: var(--white);
}

.mock-table div {
  height: 37px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 25px 1fr 45px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf1f6;
}

.mock-table div:last-child {
  border-bottom: 0;
}

.mock-table b {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: #dceaff;
}

.mock-table span {
  width: 65%;
  height: 6px;
  border-radius: 999px;
  background: #d5deeb;
}

.mock-table em {
  height: 16px;
  border-radius: 999px;
  background: #dcfaea;
}

.classroom-demo {
  background:
    radial-gradient(circle at 10% 85%, rgba(8, 145, 178, 0.23), transparent 25%),
    linear-gradient(135deg, #e8faff, #d8eef5);
}

.classroom-screen {
  position: absolute;
  inset: 35px 24px;
  padding: 24px;
  overflow: hidden;
  border: 8px solid #152135;
  border-radius: 20px;
  background: #f8fbff;
  box-shadow: 0 30px 50px rgba(9, 68, 88, 0.2);
  transform: perspective(900px) rotateY(4deg);
}

.real-classroom-frame {
  inset: 38px 18px;
  padding: 0;
  background: #062f67;
  transform: perspective(1050px) rotateY(3deg) rotateZ(0.5deg);
}

.real-classroom-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 11px;
}

.classroom-head {
  display: flex;
  justify-content: space-between;
  color: var(--navy);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 800;
}

.classroom-head b {
  padding: 5px 10px;
  color: var(--white);
  border-radius: 8px;
  background: #0891b2;
}

.question-visual {
  height: 135px;
  margin: 18px 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #b8d7ef, #e5f4ff);
}

.sign-demo {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 6px solid var(--white);
  background: #dc2626;
  clip-path: polygon(29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29%);
  font-family: var(--font-latin);
  font-size: 17px;
  font-weight: 800;
}

.question-lines i {
  width: 80%;
  height: 7px;
  display: block;
  margin: 7px auto;
  border-radius: 999px;
  background: #c5d1df;
}

.question-lines i:last-child {
  width: 56%;
}

.classroom-answers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 17px;
}

.classroom-answers div {
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid #c8d5e4;
  border-radius: 9px;
  background: var(--white);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 800;
}

.connected-pill {
  position: absolute;
  top: 78px;
  left: 13px;
  padding: 5px 8px;
  color: #067647;
  border-radius: 999px;
  background: #dcfae9;
  font-family: var(--font-latin);
  font-size: 8px;
  font-weight: 700;
}

.connected-pill span {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 3px;
  border-radius: 50%;
  background: #0ba568;
}

.mobile-demo {
  min-height: 420px;
  background:
    radial-gradient(circle at 13% 16%, rgba(124, 58, 237, 0.2), transparent 28%),
    linear-gradient(135deg, #f1ebff, #e0e9ff);
}

.large-phone {
  position: absolute;
  top: 27px;
  left: 50%;
  z-index: 2;
  width: 205px;
  height: 390px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid #29344a;
  border-radius: 36px;
  background: #101725;
  box-shadow: 0 30px 52px rgba(51, 25, 116, 0.25);
  transform: translateX(-50%) rotate(-2deg);
}

.real-phone-frame {
  top: 11px;
  width: 192px;
  height: 402px;
  padding: 7px;
  border: 3px solid #101725;
  box-shadow: 0 32px 58px rgba(51, 25, 116, 0.29);
}

.real-phone-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
}

.mobile-ui {
  height: 100%;
  padding: 28px 14px 14px;
  border-radius: 27px;
  background: #f8faff;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-family: var(--font-latin);
  font-size: 12px;
}

.mobile-top i {
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: #e0e9ff;
}

.mobile-hero-card {
  height: 102px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  color: var(--white);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #155eef, #7c3aed);
}

.mobile-hero-card small {
  opacity: 0.72;
  font-size: 7px;
}

.mobile-hero-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.mobile-hero-card span {
  width: max-content;
  margin-top: auto;
  padding: 4px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 7px;
}

.mobile-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.mobile-mini-grid i {
  height: 34px;
  border-radius: 9px;
  background: #e6edfa;
}

.mobile-mini-grid i:nth-child(1) {
  background: #dfe8ff;
}

.mobile-list {
  margin-top: 14px;
}

.mobile-list div {
  height: 46px;
  margin-top: 8px;
  border: 1px solid #e1e7f0;
  border-radius: 11px;
  background: var(--white);
}

.mobile-list div::before {
  content: "";
  width: 27px;
  height: 27px;
  display: inline-block;
  margin: 9px;
  border-radius: 8px;
  background: #ede8ff;
}

.mobile-back-card {
  position: absolute;
  top: 88px;
  right: 32px;
  width: 135px;
  height: 170px;
  padding: 23px;
  color: var(--white);
  border-radius: 22px;
  background: linear-gradient(145deg, #ff8a2d, #e85815);
  box-shadow: 0 22px 40px rgba(198, 82, 25, 0.2);
  transform: rotate(8deg);
}

.mobile-back-card span {
  display: block;
  font-family: var(--font-latin);
  font-size: 44px;
  font-weight: 800;
}

.mobile-back-card small {
  font-family: var(--font-latin);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.workflow-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(55, 164, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #041d48, #08367a);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.workflow-copy h2 {
  color: var(--white);
}

.workflow-copy > p {
  color: #cdddf4;
}

.text-link {
  display: inline-flex;
  margin-top: 25px;
  color: #73c4ff;
  font-size: 13px;
  font-weight: 700;
}

.workflow-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 35px;
  inset-inline-start: 26px;
  width: 1px;
  background: linear-gradient(#59b9ff, rgba(89, 185, 255, 0.1));
}

.workflow-steps li {
  position: relative;
  min-height: 97px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.workflow-steps li > span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  border: 5px solid #164f93;
  border-radius: 50%;
  background: #7ac8ff;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
}

.workflow-steps h3 {
  margin: 0 0 2px;
  font-size: 14px;
}

.workflow-steps p {
  margin: 0;
  color: #b8cce8;
  font-size: 11px;
}

.why-section {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.benefit-card {
  min-height: 245px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  border-color: #b9d2f5;
  box-shadow: 0 20px 45px rgba(4, 29, 72, 0.09);
  transform: translateY(-5px);
}

.benefit-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 15px;
  background: #edf4ff;
  font-family: var(--font-latin);
  font-size: 23px;
  font-weight: 800;
}

.benefit-card:nth-child(2) > span {
  color: var(--violet);
  background: #f3edff;
}

.benefit-card:nth-child(3) > span {
  color: var(--orange);
  background: #fff2e8;
}

.benefit-card:nth-child(4) > span {
  color: var(--green);
  background: #eafaf2;
}

.benefit-card h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.accordion details {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.accordion summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

html[dir="ltr"] .accordion summary {
  padding: 19px 20px 19px 52px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 20px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 0.2s ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details[open] summary {
  color: var(--blue);
  background: #f7faff;
}

.accordion details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.contact-section {
  padding: 95px 0;
  background: var(--white);
}

.contact-card {
  position: relative;
  padding: 55px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  overflow: hidden;
  color: var(--white);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 12%, rgba(55, 164, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #041d48, #0b4f9f);
  box-shadow: 0 30px 70px rgba(4, 29, 72, 0.2);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -120px;
  inset-inline-end: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-copy,
.contact-info {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  margin: 15px 0 0;
  color: #d2e2f7;
  font-size: 13px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button-whatsapp {
  color: var(--white);
  background: #0ba568;
  box-shadow: 0 10px 25px rgba(11, 165, 104, 0.23);
}

.button-whatsapp > span:first-child {
  font-family: var(--font-latin);
  font-size: 18px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.contact-info a {
  min-height: 95px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-info a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.contact-info a > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #9ed5ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 800;
}

.contact-info a div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-info small {
  color: #aac0dc;
  font-size: 9px;
}

.contact-info strong {
  overflow: hidden;
  font-family: var(--font-latin);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  color: #aebfd7;
  background: #031735;
}

.footer-main {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: #8fa6c5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 64px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 9px;
}

.footer-bottom p:last-child {
  font-family: var(--font-latin);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #0ba568;
  box-shadow: 0 14px 30px rgba(11, 165, 104, 0.3);
  font-family: var(--font-latin);
  font-size: 22px;
  transition: transform 0.2s ease;
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 22px;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero-grid {
    gap: 35px;
  }

  .ecosystem-map {
    grid-template-columns: 1fr 55px 1fr 55px 1fr;
  }

  .product-row {
    padding: 40px;
    gap: 35px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .main-nav {
    position: absolute;
    top: 69px;
    inset-inline: 20px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 8px;
    font-size: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(610px, 100%);
    margin-inline: auto;
  }

  .ecosystem-map {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .eco-connector {
    width: 130px;
    height: 28px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .eco-card {
    min-height: auto;
  }

  .eco-card p {
    min-height: auto;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .product-row.reverse .product-copy,
  .product-row.reverse .product-demo {
    order: initial;
  }

  .product-demo {
    min-height: 380px;
  }

  .workflow-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    margin-inline-end: auto;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    margin-inline-start: 0;
  }

  .brand img {
    width: 43px;
    height: 43px;
    border-radius: 11px;
  }

  .brand strong {
    font-size: 12px;
  }

  .language-switch {
    width: 39px;
    height: 39px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 40px;
    overflow: hidden;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 1.36;
    letter-spacing: -0.025em;
    overflow-wrap: break-word;
  }

  .hero h1 span,
  .hero h1 em {
    width: 100%;
    white-space: normal;
  }

  .hero-copy,
  .hero-lead {
    width: 100%;
    min-width: 0;
  }

  .hero-copy .eyebrow {
    width: auto;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 11px;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 10px;
  }

  .orbit-one {
    width: 340px;
    height: 340px;
    left: 0;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
    left: 40px;
  }

  .desktop-shell {
    top: 38px;
    width: 92%;
    height: 260px;
  }

  .dashboard-demo {
    grid-template-columns: 40px 1fr;
  }

  .dashboard-demo aside {
    gap: 13px;
  }

  .dashboard-content {
    padding: 13px;
  }

  .demo-chart {
    height: 83px;
  }

  .phone-shell {
    right: -3px;
    width: 132px;
    height: 270px;
    border-radius: 27px;
  }

  .phone-content {
    padding: 23px 9px 9px;
    border-radius: 20px;
  }

  .road-sign {
    width: 55px;
    height: 55px;
    margin: 15px auto 10px;
    border-width: 7px;
    font-size: 17px;
  }

  .sync-card {
    left: 10px;
    bottom: 5px;
  }

  .hero-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .strip-items {
    width: 100%;
    overflow-x: auto;
  }

  .section-heading h2,
  .workflow-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .product-row {
    padding: 25px;
    border-radius: 23px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-button {
    min-width: 0;
    padding-inline: 10px;
  }

  .product-demo {
    min-height: 320px;
  }

  .mock-window {
    inset: 30px -45px 20px 16px;
  }

  .real-desktop-frame {
    inset: 50% auto auto 50%;
    width: 115%;
  }

  .mock-page {
    padding: 13px;
  }

  .classroom-screen {
    inset: 22px 10px;
    padding: 15px;
  }

  .real-classroom-frame {
    inset: 27px 8px;
    padding: 0;
  }

  .question-visual {
    height: 110px;
  }

  .large-phone {
    top: 15px;
    height: 350px;
    transform: translateX(-50%) scale(0.88) rotate(-2deg);
    transform-origin: top center;
  }

  .mobile-demo {
    min-height: 380px;
  }

  .real-phone-frame {
    top: 10px;
    width: 182px;
    height: 390px;
    transform: translateX(-50%) scale(0.9) rotate(-2deg);
  }

  .mobile-back-card {
    right: 8px;
    width: 110px;
  }

  .benefit-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .workflow-steps li {
    padding: 13px;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 30px 22px;
    border-radius: 23px;
  }

  .contact-buttons .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-main {
    padding: 30px 0;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-bottom {
    padding: 20px 0;
    gap: 6px;
  }
}
