:root {
  --ink: #0f2f2a;
  --ink-soft: #4a635c;
  --mist: #e4ece8;
  --paper: #f4f7f5;
  --line: #c3d2cb;
  --accent: #2a6a58;
  --accent-deep: #18483c;
  --white: #ffffff;
  --danger: #8a2f2f;
  --shadow: 0 20px 50px rgba(15, 47, 42, 0.1);
  --radius: 12px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(42, 106, 88, 0.09), transparent 42%),
    radial-gradient(ellipse at 100% 10%, rgba(15, 47, 42, 0.05), transparent 35%),
    linear-gradient(180deg, #f7faf8 0%, var(--mist) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

.chrome-hint {
  margin: 0;
  padding: 0.65rem 1rem;
  background: #12352f;
  color: #f4f7f5;
  text-align: center;
  font-size: 0.92rem;
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.75rem);
  background: rgba(244, 247, 245, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(195, 210, 203, 0.65);
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav {
  display: none;
  gap: 1.6rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

html[dir="rtl"] .nav a::after {
  transform-origin: right;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 0;
  background: transparent;
}

.lang-switch button {
  position: relative;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.05rem;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: transparent;
  color: var(--ink);
}

.lang-switch button.is-active::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.22rem;
  height: 1.5px;
  background: currentColor;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  background: var(--accent-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 47, 42, 0.18);
}

.btn-small {
  padding: 0.58rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: #f0f5f2;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(94vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
  transform: scale(1.06);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 32, 28, 0.78) 8%, rgba(10, 32, 28, 0.35) 52%, rgba(10, 32, 28, 0.62) 100%),
    linear-gradient(180deg, rgba(10, 32, 28, 0.2) 0%, rgba(10, 32, 28, 0.82) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 14vh, 8rem) 0 4rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: inherit;
  letter-spacing: -0.02em;
  animation: rise-in 0.85s ease both;
}

.brand-mark::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  animation: line-grow 1s ease 0.35s both;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 6.4vw, 4.7rem);
  max-width: 11ch;
  margin-bottom: 1rem;
  color: inherit;
  animation: rise-in 0.95s ease 0.1s both;
}

.hero-lead {
  max-width: 33rem;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.88);
  animation: rise-in 0.95s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.85rem;
  animation: rise-in 0.95s ease 0.3s both;
}

.hero .btn {
  background: var(--white);
  color: var(--ink);
}

.hero .btn:hover {
  background: #eef4f1;
  color: var(--ink);
}

.hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.8rem, 8vw, 6rem) 0;
}

.services-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(42, 106, 88, 0.03) 18px,
      rgba(42, 106, 88, 0.03) 19px
    );
  border-block: 1px solid rgba(195, 210, 203, 0.55);
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2.8rem;
}

.section-intro h2,
.approach-copy h2,
.cta-band h2,
.contact-details h2,
.contact-form h2 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.service-list li {
  padding: 1.45rem 0 1.55rem;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s ease;
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list li:hover {
  padding-inline-start: 0.45rem;
}

.service-list h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.service-list p {
  margin: 0;
  max-width: 34rem;
}

.approach {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.85rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(42, 106, 88, 0.15));
}

.steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
}

.steps span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent-deep);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
}

.approach-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(155deg, #12352f 0%, #1d4a3e 55%, #245748 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 1.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.panel-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.panel-value {
  margin: 0.25rem 0 1.2rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

.panel-value:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-deep);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.faq-item p {
  margin: 0 0 1.2rem;
  max-width: 40rem;
}

.cta-band {
  position: relative;
  margin: 1rem 0 0;
  padding: clamp(4rem, 10vw, 6.5rem) 1rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 47, 42, 0.88), rgba(24, 72, 60, 0.82)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
}

.cta-inner {
  width: min(36rem, 100%);
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.55rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem clamp(1rem, 4vw, 2.75rem) 2.6rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.footer-note {
  margin: 0.35rem 0 0;
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
}

.header-download {
  display: inline;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 720px) {
  .header-download { display: none; }
}

body[data-page="home"],
body[data-page="download"],
body[data-page="contact"] {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(165deg, #0f2a26 0%, #1d4a3e 55%, #12352f 100%);
  color: #fff;
}

body[data-page="home"] .site-header,
body[data-page="download"] .site-header,
body[data-page="contact"] .site-header {
  background: rgba(15, 42, 38, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .brand,
body[data-page="home"] .nav a,
body[data-page="home"] .header-download,
body[data-page="home"] .site-footer,
body[data-page="home"] .footer-links a,
body[data-page="download"] .brand,
body[data-page="download"] .nav a,
body[data-page="download"] .header-download,
body[data-page="download"] .site-footer,
body[data-page="download"] .footer-links a,
body[data-page="contact"] .brand,
body[data-page="contact"] .nav a,
body[data-page="contact"] .header-download,
body[data-page="contact"] .site-footer,
body[data-page="contact"] .footer-links a {
  color: rgba(244, 247, 245, 0.88);
}

body[data-page="home"] .nav a[aria-current="page"],
body[data-page="download"] .nav a[aria-current="page"],
body[data-page="contact"] .nav a[aria-current="page"] {
  color: #fff;
}

body[data-page="home"] .lang-switch,
body[data-page="download"] .lang-switch,
body[data-page="contact"] .lang-switch {
  background: transparent;
}

body[data-page="home"] .lang-switch button,
body[data-page="download"] .lang-switch button,
body[data-page="contact"] .lang-switch button {
  color: rgba(244, 247, 245, 0.7);
}

body[data-page="home"] .lang-switch button.is-active,
body[data-page="download"] .lang-switch button.is-active,
body[data-page="contact"] .lang-switch button.is-active {
  background: transparent;
  color: #fff;
}

body[data-page="home"] .btn-small,
body[data-page="download"] .btn-small,
body[data-page="contact"] .btn-small {
  background: #f4f7f5;
  color: #12352f;
}

body[data-page="home"] .btn-small:hover,
body[data-page="download"] .btn-small:hover,
body[data-page="contact"] .btn-small:hover {
  background: #e8eeea;
  color: #12352f;
}

body[data-page="home"] .site-footer,
body[data-page="download"] .site-footer,
body[data-page="contact"] .site-footer {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.1);
  align-items: center;
  text-align: center;
}

body[data-page="home"] .footer-note,
body[data-page="download"] .footer-note,
body[data-page="contact"] .footer-note {
  color: rgba(244, 247, 245, 0.62);
}

body[data-page="home"] .services-band {
  background: transparent;
  border-block-color: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .service-list li,
body[data-page="home"] .service-list li:last-child {
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .section-intro p,
body[data-page="home"] .approach-copy p,
body[data-page="home"] .service-list p,
body[data-page="home"] .steps p,
body[data-page="home"] .faq-item p {
  color: rgba(244, 247, 245, 0.76);
}

body[data-page="home"] .steps span {
  background: rgba(244, 247, 245, 0.1);
  border-color: rgba(244, 247, 245, 0.28);
  color: #f4f7f5;
}

body[data-page="home"] .steps::before {
  background: linear-gradient(180deg, rgba(244, 247, 245, 0.45), rgba(244, 247, 245, 0.08));
}

body[data-page="home"] .faq-list,
body[data-page="home"] .faq-item {
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .faq-item summary {
  color: #fff;
}

body[data-page="home"] .faq-item summary::after {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f4f7f5;
  background: transparent;
}

body[data-page="home"] .faq-item[open] summary::after {
  background: #f4f7f5;
  color: #12352f;
  border-color: #f4f7f5;
}

body[data-page="home"] .cta-band {
  background: transparent;
  margin: 0;
}

body[data-page="contact"] .contact-hero .brand-mark,
body[data-page="contact"] .contact-hero h1 {
  color: #fff;
}

body[data-page="contact"] .contact-hero .brand-mark::after {
  background: rgba(255, 255, 255, 0.7);
}

body[data-page="contact"] .contact-hero .hero-lead {
  color: rgba(244, 247, 245, 0.76);
}

body[data-page="contact"] .contact-details dt {
  color: rgba(244, 247, 245, 0.55);
}

body[data-page="contact"] .contact-details a {
  color: #f4f7f5;
}

body[data-page="contact"] .contact-form {
  background: rgba(244, 247, 245, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body[data-page="contact"] .contact-form h2,
body[data-page="contact"] .contact-details h2,
body[data-page="contact"] .field label {
  color: #fff;
}

body[data-page="contact"] .contact-form .btn {
  background: #f4f7f5;
  color: #12352f;
}

body[data-page="contact"] .contact-form .btn:hover {
  background: #e8eeea;
  color: #12352f;
}

body[data-page="contact"] .form-status {
  background: rgba(244, 247, 245, 0.12);
  color: #f4f7f5;
}

.footer-email {
  width: 100%;
  margin-top: 0.6rem;
}

.footer-email-label {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 245, 0.62);
}

.footer-email-link {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: #f4f7f5;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 247, 245, 0.55);
}

.footer-email-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.download-page {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: clamp(2.4rem, 7vw, 4.8rem) 0;
}

.download-stage {
  width: min(36rem, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
}

.download-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
}

.download-brand {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.download-rule {
  width: 42px;
  height: 1px;
  margin: 0.85rem 0 0.7rem;
  background: rgba(244, 247, 245, 0.45);
}

.download-stage h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  color: #fff;
  max-width: none;
}

.download-lead {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: rgba(244, 247, 245, 0.78);
  font-size: 1.05rem;
}

.download-actions {
  width: min(52rem, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.9rem;
}

.download-col {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.download-apk {
  width: 100%;
  min-height: 8.5rem;
  display: grid;
  place-content: center;
  padding: 1.15rem 0.85rem;
  border: 1px solid rgba(244, 247, 245, 0.18);
  border-radius: 16px;
  background: #f4f7f5;
  color: #12352f;
  font: inherit;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.download-apk:hover {
  background: #e8eeea;
  color: #12352f;
  transform: translateY(-2px);
}

.download-badge {
  display: inline-block;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 247, 245, 0.12);
  color: #f4f7f5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-pc-alert {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(240, 212, 138, 0.45);
  border-radius: 12px;
  background: rgba(240, 212, 138, 0.12);
  color: #f0d48a;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 800px) {
  .download-actions {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) 0 1rem;
  animation: rise-in 0.8s ease both;
}

.contact-hero .brand-mark,
.contact-hero h1 {
  color: var(--ink);
}

.contact-hero .brand-mark::after {
  background: var(--accent);
}

.contact-hero .hero-lead {
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  padding-top: 1.5rem;
}

.contact-details dl {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-details dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact-details dd {
  margin: 0;
  font-weight: 600;
}

.contact-details a {
  text-decoration: none;
}

.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 106, 88, 0.14);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.field-error {
  margin: 0.35rem 0 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(42, 106, 88, 0.12);
  color: var(--accent-deep);
  font-weight: 600;
}

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

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 3.2rem;
    opacity: 1;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.8%, -1.2%, 0);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }

  .service-list li:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .service-list li:nth-child(odd) {
    padding-inline-end: 0.5rem;
  }

  .approach {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 3.2rem;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  body[data-page="home"] .site-footer,
  body[data-page="download"] .site-footer,
  body[data-page="contact"] .site-footer {
    flex-direction: column;
    align-items: center;
  }
}

html[lang="ar"] {
  --font-display: "Cairo", "Segoe UI", sans-serif;
  --font-body: "Cairo", "Segoe UI", sans-serif;
}

html[lang="he"] {
  --font-display: "Heebo", "Segoe UI", sans-serif;
  --font-body: "Heebo", "Segoe UI", sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
