/* =============================================
   Sarya landing page - human, local, restrained
   ============================================= */

@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyahsans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyahsans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyahsans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyahsans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyahsans-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fffdf9;
  --paper-soft: #f8f3ea;
  --white: #ffffff;
  --ink: #1d2b26;
  --ink-soft: #354840;
  --muted: #687a72;
  --muted-light: #8b9a93;
  --line: #e8ded0;
  --line-strong: #d8c9b8;
  --tomato: #e4572e;
  --tomato-dark: #be3f22;
  --tomato-soft: #fff0e9;
  --herb: #2e9b7f;
  --herb-dark: #1f6f5b;
  --herb-soft: #e9f6f1;
  --sun: #f0b84f;
  --sky: #7aa7c7;
  --plum: #6d506a;
  --font-ar: 'Thmanyah Sans', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --container: 1180px;
  --section-pad: 104px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 10px 28px rgba(29, 43, 38, 0.08);
  --shadow-md: 0 20px 60px rgba(29, 43, 38, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  direction: rtl;
  font-family: var(--font-ar);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lang-en {
  direction: ltr;
  font-family: var(--font-en);
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

ul {
  list-style: none;
}

::selection {
  background: rgba(228, 87, 46, 0.18);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--paper-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tomato-dark);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--tomato);
}

body.lang-en .eyebrow::before {
  order: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 18px;
}

.section-sub {
  max-width: 620px;
  font-size: 1.06rem;
  margin-bottom: 42px;
}

.section-heading {
  max-width: 760px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  line-height: 1;
}

.store-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}

.store-icon svg {
  width: 20px;
  height: 20px;
}

.store-icon-apple svg {
  fill: var(--ink);
}

.store-icon-play svg {
  width: 22px;
  height: 22px;
}

#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

#navbar.scrolled {
  background: rgba(255, 253, 249, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(29, 43, 38, 0.06);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.nav-logo-name {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(46, 155, 127, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-lang,
.btn-nav-cta,
.btn-primary,
.btn-secondary,
.app-badge-btn,
.footer-app-btn,
.btn-submit,
.btn-reset,
.btn-notify,
.modal-close,
.nav-hamburger,
.back-to-top {
  border: 0;
  cursor: pointer;
}

.btn-lang {
  min-width: 46px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.btn-nav-cta {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-nav-cta svg,
.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-nav-cta:hover,
.btn-primary:hover,
.btn-submit:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 24px 22px;
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-mobile ul {
  display: grid;
  gap: 6px;
}

.nav-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 800;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--herb-soft);
}

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 124px 0 72px;
  background:
    linear-gradient(120deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 253, 249, 0.86) 46%, rgba(233, 246, 241, 0.72) 100%),
    radial-gradient(circle at 8% 20%, rgba(122, 167, 199, 0.18), transparent 36%),
    linear-gradient(180deg, var(--paper), var(--paper-soft));
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 660px;
}

.hero-title {
  display: grid;
  gap: 6px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  margin-bottom: 24px;
}

.hero-title span:first-child {
  color: var(--tomato);
}

.hero-title span:last-child {
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
}

body.lang-en .hero-title {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

body.lang-en .hero-title span:last-child {
  max-width: 14ch;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.hero-sub {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 900;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(29, 43, 38, 0.16);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--tomato);
  color: var(--tomato-dark);
  transform: translateY(-2px);
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof-item {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(216, 201, 184, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.hero-proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.hero-proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.hero-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.app-badge-btn:hover {
  transform: translateY(-2px);
  border-color: var(--herb);
  background: var(--white);
}

.app-text {
  display: grid;
  text-align: start;
  line-height: 1.2;
}

.app-text small {
  color: var(--muted-light);
  font-size: 0.7rem;
  font-weight: 700;
}

.app-text strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo-card {
  position: absolute;
  inset-inline-start: 0;
  top: 28px;
  width: min(380px, 74%);
  border: 10px solid var(--white);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}

body.lang-en .hero-photo-card {
  transform: rotate(3deg);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
}

.hero-photo-card figcaption {
  padding: 14px 16px 16px;
  padding-inline-end: 132px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--white);
}

.phone-mockup {
  position: absolute;
  inset-inline-end: 16px;
  top: 70px;
  width: 300px;
  min-height: 548px;
  padding: 22px;
  border: 10px solid var(--ink);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.phone-topbar strong {
  color: var(--ink);
}

.phone-search {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.phone-highlight {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.phone-highlight strong {
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1;
}

.phone-list {
  display: grid;
  gap: 12px;
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dish-thumb {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 36%, rgba(255, 255, 255, 0.75) 0 13%, transparent 14%),
    radial-gradient(circle at 64% 58%, rgba(29, 43, 38, 0.18) 0 10%, transparent 11%),
    var(--tomato);
}

.dish-two {
  background:
    radial-gradient(circle at 35% 36%, rgba(255, 255, 255, 0.75) 0 13%, transparent 14%),
    radial-gradient(circle at 64% 58%, rgba(29, 43, 38, 0.18) 0 10%, transparent 11%),
    var(--herb);
}

.phone-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}

.phone-card small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.phone-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--herb-soft);
}

.phone-route span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--herb);
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.28);
}

.phone-route p {
  color: var(--herb-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

#stats-strip {
  padding: 28px 0;
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--ink);
  text-align: center;
}

.stat-number {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
}

#about,
#services,
#why,
#partners,
.join-section,
#contact {
  padding: var(--section-pad) 0;
}

#about,
#why,
#contact {
  background: var(--paper);
}

#services,
#join-driver {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

#partners {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.about-grid,
.join-grid,
.contact-grid,
.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-visual {
  position: relative;
}

.about-image {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.about-note {
  position: absolute;
  inset-inline-end: -12px;
  bottom: 34px;
  width: min(270px, 72%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.about-note strong {
  display: block;
  color: var(--tomato);
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.about-note span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.about-content p:not(.eyebrow) {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-vision-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.vision-card,
.service-card,
.why-card,
.partner-card,
.join-benefit,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.vision-card {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.vision-card h4 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 8px;
}

.vision-card p {
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 276px;
  display: grid;
  align-content: start;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.service-card:hover,
.why-card:hover,
.partner-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 87, 46, 0.42);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--herb-dark);
  background: var(--herb-soft);
}

.service-card:nth-child(2) .service-icon {
  color: var(--tomato-dark);
  background: var(--tomato-soft);
}

.service-card:nth-child(3) .service-icon {
  color: #376f98;
  background: rgba(122, 167, 199, 0.18);
}

.service-card:nth-child(4) .service-icon {
  color: #7a551f;
  background: rgba(240, 184, 79, 0.2);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.why-card h3,
.form-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.service-card p,
.why-card p {
  font-size: 0.96rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  position: relative;
  min-height: 210px;
  padding: 56px 24px 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: 18px;
  inset-inline-start: 24px;
  color: var(--tomato);
  font-size: 0.86rem;
  font-weight: 900;
}

.partners-layout {
  align-items: start;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.partner-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--paper);
  background: var(--plum);
  font-weight: 900;
}

.partner-card:nth-child(2) .partner-mark {
  background: var(--tomato);
}

.partner-card:nth-child(3) .partner-mark {
  background: var(--herb);
}

.partner-card:nth-child(4) .partner-mark {
  background: var(--sun);
  color: var(--ink);
}

.partner-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
}

.partner-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.partners-cta {
  margin-top: 34px;
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.partners-cta-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-weight: 700;
}

.btn-inline {
  width: fit-content;
}

.join-grid-reverse {
  align-items: start;
}

.join-info h2,
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.join-info > p,
.contact-info > p {
  font-size: 1.06rem;
  margin-bottom: 28px;
}

.join-benefits {
  display: grid;
  gap: 12px;
}

.join-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
}

.join-benefit-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.join-benefit-text {
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.5;
}

.form-card {
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 14px 44px rgba(29, 43, 38, 0.08);
}

.form-card h3 {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--herb);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 155, 127, 0.12);
}

.btn-submit {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.form-success {
  display: none;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--herb-soft);
  color: var(--herb-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.success-msg {
  max-width: 360px;
  color: var(--ink);
  font-weight: 800;
}

.btn-reset {
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  color: var(--ink);
  font-weight: 800;
}

.contact-grid {
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--tomato-soft);
  color: var(--tomato-dark);
  font-weight: 900;
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.contact-success-banner {
  display: none;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: var(--herb-soft);
  color: var(--herb-dark);
  font-weight: 900;
  text-align: center;
}

.form-inline-message {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-inline-message.is-error {
  background: var(--tomato-soft);
  color: var(--tomato-dark);
  border: 1px solid rgba(228, 87, 46, 0.28);
}

.form-inline-message.is-success {
  background: var(--herb-soft);
  color: var(--herb-dark);
  border: 1px solid rgba(46, 155, 127, 0.26);
  text-align: center;
}

#footer {
  padding: 64px 0 30px;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  margin-bottom: 42px;
}

.footer-logo .brand-mark {
  background: var(--paper);
  color: var(--ink);
}

.footer-logo-name {
  color: var(--paper);
  font-size: 1.28rem;
  font-weight: 900;
}

.footer-desc {
  max-width: 320px;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-social,
.footer-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.social-btn:hover {
  background: var(--tomato);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  transition: color 0.2s var(--ease);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-rights,
.footer-rights span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-app-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-app-btn .store-icon {
  width: 26px;
  height: 26px;
  border: 0;
}

.footer-app-btn svg {
  width: 15px;
  height: 15px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(29, 43, 38, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(100%, 480px);
  position: relative;
  padding: 34px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s var(--ease);
}

.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
}

.modal-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.modal-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.modal-card p {
  margin-bottom: 20px;
}

.modal-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.modal-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.platform-name {
  color: var(--ink);
  font-weight: 900;
}

.platform-badge {
  display: none;
}

.modal-notify-form {
  display: flex;
  gap: 10px;
}

.modal-notify-form input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  outline: none;
}

.modal-notify-form input:focus {
  border-color: var(--herb);
  box-shadow: 0 0 0 4px rgba(46, 155, 127, 0.12);
}

.btn-notify {
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  background: var(--tomato);
  color: var(--white);
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.loading-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: loadingDot 0.9s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal='left'] {
  transform: none;
}

[data-reveal='right'] {
  transform: none;
}

body.lang-en [data-reveal='left'] {
  transform: none;
}

body.lang-en [data-reveal='right'] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}
