/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Heebo', sans-serif;
  color: #e0e7ef;
  background: #0f1520;
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #4bd1b8;
  --primary-hover: #37bda6;
  --primary-dark: #2a9e8d;
  --primary-light: rgba(75, 209, 184, 0.08);
  --primary-glow: rgba(75, 209, 184, 0.18);
  --dark: #e8edf3;
  --dark-soft: #c8d0da;
  --text: #e0e7ef;
  --text-secondary: #9aa8b8;
  --text-light: #6b7a8d;
  --bg-light: #111a26;
  --bg-warm: #0f1520;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.06);
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 8px 32px rgba(75, 209, 184, 0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section--lg {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-light);
}

/* ===== SECTION WAVE SEPARATORS ===== */
.section-wave {
  position: relative;
  overflow: hidden;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 64px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,32 C360,64 720,0 1080,32 C1260,48 1380,48 1440,32 L1440,0 L0,0 Z' fill='%230f1520'/%3E%3C/svg%3E") no-repeat center top;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

.section--alt + .section .section-wave-up::before,
.section-wave-alt::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,32 C360,64 720,0 1080,32 C1260,48 1380,48 1440,32 L1440,0 L0,0 Z' fill='%23111a26'/%3E%3C/svg%3E") no-repeat center top;
  background-size: 100% 100%;
}

/* ===== DECORATIVE LINE SEPARATOR ===== */
.section-sep {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

/* ===== GLASS UTILITY ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--primary {
  background: #d00b1a;
  color: var(--white);
  border-color: #d00b1a;
}

.btn--primary:hover {
  background: #b80916;
  border-color: #b80916;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(208, 11, 26, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(75, 209, 184, 0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--lg {
  padding: 17px 44px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(15, 21, 32, 0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 21, 32, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(75, 209, 184, 0.08);
}

.navbar.scrolled::after {
  opacity: 0.25;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  position: relative;
}

.navbar__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__flag {
  position: absolute;
  inset-inline-start: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transition: transform 0.3s ease;
}

.navbar__flag:hover {
  transform: translateY(-50%) scale(1.08);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(75, 209, 184, 0.3));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.navbar__links a:hover::after {
  transform: scaleX(1);
}

.navbar__cta {
  padding: 10px 28px;
  font-size: 0.88rem;
  border-radius: 10px;
  background: #d00b1a;
  color: var(--white) !important;
  border: 1px solid rgba(208, 11, 26, 0.5);
  box-shadow: 0 2px 12px rgba(208, 11, 26, 0.2);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.navbar__cta:hover {
  background: #b80916 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(208, 11, 26, 0.35);
}

.navbar__cta::after {
  display: none !important;
}

/* ===== Navbar Logo ===== */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-inline-end: 1.5rem;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.navbar__logo:hover {
  opacity: 0.85;
}

.navbar__logo img {
  height: 32px;
  width: auto;
  transition: filter 0.3s ease;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(75, 209, 184, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  position: relative;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb__sep {
  opacity: 0.4;
  font-size: 0.72rem;
}

.breadcrumb [aria-current="page"] {
  color: var(--primary);
  font-weight: 500;
}

.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 40px;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }
}

.burger {
  display: none;
  position: relative;
  width: 36px;
  height: 26px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  order: -1;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.25s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 80%;
  background: var(--white);
  border-radius: 4px;
  opacity: 1;
  left: 10%;
  transform: rotate(0deg);
  transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.burger span:nth-of-type(1) {
  top: 3px;
  transform-origin: center center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
}

.burger span:nth-of-type(3) {
  bottom: 3px;
  top: auto;
  transform-origin: center center;
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: translateY(9px) rotate(45deg);
  top: 3px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
  left: 50%;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-45deg);
  bottom: 3px;
}

/* ===== HERO ===== */
.hero {
  padding-top: 130px;
  padding-bottom: 72px;
  min-height: 100vh;
  background: url('../assets/img/home-page.jpg') center bottom / cover no-repeat
    fixed;
  position: relative;
  overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.62);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 120px;
  background: linear-gradient(to top, #0f1520, transparent);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 14, 22, 0.5) 0%,
    transparent 70%
  );
  padding: 40px 32px;
  border-radius: 32px;
}

/* --- Hero entrance animations --- */
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__trust {
  opacity: 0;
  transform: translateY(32px);
}

.hero.animated .hero__badge {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero.animated .hero__title {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
.hero.animated .hero__subtitle {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.hero.animated .hero__actions {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.hero.animated .hero__trust {
  animation: heroTrustReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero.animated .trust-item {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.hero.animated .trust-item:nth-child(1) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.hero.animated .trust-item:nth-child(2) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.hero.animated .trust-item:nth-child(3) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}
.hero.animated .trust-item:nth-child(4) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.hero.animated .trust-item:nth-child(5) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}
.hero.animated .trust-item:nth-child(6) {
  animation: trustItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTrustReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustItemIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 14, 22, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #d00b1a;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.7),
    0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
  font-weight: 500;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.6),
    0 4px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(16px);
}

.hero.animated .hero__line:nth-child(1) {
  animation: heroLineIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.hero.animated .hero__line:nth-child(2) {
  animation: heroLineIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.hero.animated .hero__line:nth-child(3) {
  animation: heroLineIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.hero.animated .hero__line:nth-child(4) {
  animation: heroLineIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 740px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 14, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: rgba(75, 209, 184, 0.4);
  background: rgba(10, 14, 22, 0.82);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(75, 209, 184, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== SERVICES / WHAT WE DO ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 52, 59, 0.82) 0%,
    rgba(18, 52, 59, 0.3) 50%,
    rgba(18, 52, 59, 0.05) 100%
  );
  transition: background var(--transition);
  z-index: 1;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card__body {
  position: relative;
  z-index: 2;
  padding: 24px 16px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--white);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.service-card__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.service-card:hover .service-card__desc {
  max-height: 120px;
  opacity: 1;
}

/* ===== INFO SECTIONS ===== */
.info-block {
  max-width: 760px;
  margin: 0 auto;
}

.info-block__text {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 2;
  text-align: center;
}

.info-block__highlight {
  background: rgba(75, 209, 184, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-inline-start: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.85;
  font-size: 0.98rem;
}

/* ===== STEPS ===== */
.steps-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  inset-inline-start: 45px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    rgba(255, 255, 255, 0.08)
  );
  border-radius: 2px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  position: relative;
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(75, 209, 184, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-4px);
}

[dir='rtl'] .step-item:hover {
  transform: translateX(4px);
}

.step-item__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(75, 209, 184, 0.25);
}

.step-item__content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step-item__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(75, 209, 184, 0.25);
}

.faq-item.is-open {
  border-color: rgba(75, 209, 184, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.faq-item__header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(75, 209, 184, 0.25);
}

.faq-item__title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.faq-item__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__arrow svg {
  stroke: var(--primary);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer {
  padding: 0 24px 22px 24px;
  padding-inline-start: 80px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== CITIES GRID ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-hover));
  opacity: 0;
  transition: opacity var(--transition);
}

.city-card:hover {
  border-color: rgba(75, 209, 184, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-card:hover::before {
  opacity: 1;
}

.city-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.city-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== SOLUTIONS (notification cards) ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  isolation: isolate;
  position: relative;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: all var(--transition);
  --gradient: linear-gradient(to bottom, var(--primary), #3d83ff, #7e61ff);
  --noti-color: var(--primary);
}

.solution-card::before {
  position: absolute;
  content: '';
  inset: 1px;
  border-radius: calc(1rem - 1px);
  background: #18181b;
  z-index: 2;
}

.solution-card::after {
  position: absolute;
  content: '';
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.solution-card:hover::after {
  transform: translateX(0.15rem);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.solution-card__body {
  position: relative;
  z-index: 5;
  padding: 36px 28px 32px;
}

.solution-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: rgba(75, 209, 184, 0.1);
  border: 1px solid rgba(75, 209, 184, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.solution-card:hover .solution-card__icon {
  transform: scale(1.08);
  background: var(--primary);
}

.solution-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.solution-card:hover .solution-card__icon svg {
  stroke: var(--white);
}

.solution-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--noti-color);
  margin-bottom: 10px;
  transition: transform 300ms ease;
  position: relative;
  display: inline-block;
}

.solution-card__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-card__title {
  transform: translateX(0.15rem);
}

.solution-card:hover .solution-card__title::after {
  width: 100%;
}

.solution-card__text {
  font-size: 0.92rem;
  color: #99999d;
  line-height: 1.75;
  transition: transform 300ms ease;
}

.solution-card:hover .solution-card__text {
  transform: translateX(0.25rem);
}

.solution-card .notiglow,
.solution-card .notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle closest-side at center,
    white,
    transparent
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.solution-card .notiglow {
  z-index: 3;
}
.solution-card .notiborderglow {
  z-index: 1;
}

.solution-card:hover .notiglow {
  opacity: 0.1;
}
.solution-card:hover .notiborderglow {
  opacity: 0.1;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 46px;
  inset-inline-start: 12%;
  inset-inline-end: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    rgba(255, 255, 255, 0.1),
    var(--primary)
  );
  z-index: 0;
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__circle {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.process-step:hover .process-step__circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.process-step__circle svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.process-step:hover .process-step__circle svg {
  stroke: var(--white);
}

.process-step__circle--alert {
  border-color: #d00b1a;
  background: rgba(208, 11, 26, 0.1);
}

.process-step__circle--alert svg {
  stroke: #d00b1a;
}

.process-step:hover .process-step__circle--alert {
  background: linear-gradient(135deg, #d00b1a, #b80916);
  border-color: #d00b1a;
}

.process-step:hover .process-step__circle--alert svg {
  stroke: var(--white);
}

.process-step__circle--success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.process-step__circle--success svg {
  stroke: #22c55e;
}

.process-step:hover .process-step__circle--success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: #22c55e;
}

.process-step:hover .process-step__circle--success svg {
  stroke: var(--white);
}

.process-step__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* ===== WHY US (notification cards) ===== */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whyus-card {
  isolation: isolate;
  position: relative;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  transition: all var(--transition);
  --gradient: linear-gradient(to bottom, var(--primary), #3d83ff, #7e61ff);
  --noti-color: var(--primary);
}

.whyus-card::before {
  position: absolute;
  content: '';
  inset: 1px;
  border-radius: calc(1rem - 1px);
  background: #18181b;
  z-index: 2;
}

.whyus-card::after {
  position: absolute;
  content: '';
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.whyus-card:hover::after {
  transform: translateX(0.15rem);
}

.whyus-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.whyus-card__body {
  position: relative;
  z-index: 5;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.whyus-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(75, 209, 184, 0.1);
  border: 1px solid rgba(75, 209, 184, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.whyus-card:hover .whyus-card__icon {
  background: var(--primary);
}

.whyus-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.whyus-card:hover .whyus-card__icon svg {
  stroke: var(--white);
}

.whyus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--noti-color);
  margin-bottom: 6px;
  transition: transform 300ms ease;
  position: relative;
  display: inline-block;
}

.whyus-card__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whyus-card:hover .whyus-card__title {
  transform: translateX(0.15rem);
}

.whyus-card:hover .whyus-card__title::after {
  width: 100%;
}

.whyus-card__text {
  font-size: 0.9rem;
  color: #99999d;
  line-height: 1.7;
  transition: transform 300ms ease;
}

.whyus-card:hover .whyus-card__text {
  transform: translateX(0.25rem);
}

.whyus-card .notiglow,
.whyus-card .notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle closest-side at center,
    white,
    transparent
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.whyus-card .notiglow {
  z-index: 3;
}
.whyus-card .notiborderglow {
  z-index: 1;
}

.whyus-card:hover .notiglow {
  opacity: 0.1;
}
.whyus-card:hover .notiborderglow {
  opacity: 0.1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(75, 209, 184, 0.08) 0%,
    rgba(15, 21, 32, 0.9) 50%,
    rgba(75, 209, 184, 0.06) 100%
  );
  border-top: 1px solid rgba(75, 209, 184, 0.1);
  border-bottom: 1px solid rgba(75, 209, 184, 0.1);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(75, 209, 184, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  inset-inline-start: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(75, 209, 184, 0.06);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-weight: 400;
}

.cta-banner .btn--primary {
  background: var(--primary);
  color: var(--white);
  font-size: 1.05rem;
  border-color: var(--white);
}

/* ===== CONTACT FORM ===== */
.contact__wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact__wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  inset-inline: 30%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 0 0 4px 4px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.98rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(75, 209, 184, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form__submit {
  width: 100%;
  padding: 17px;
  font-size: 1.08rem;
  border-radius: 12px;
  margin-top: 4px;
}

.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.01em;
}

/* ===== FILE UPLOAD ===== */
.file-upload {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.file-upload:hover,
.file-upload.dragover {
  border-color: var(--primary);
  background: rgba(75, 209, 184, 0.06);
}

.file-upload.dragover {
  transform: scale(1.01);
  box-shadow: 0 0 0 4px rgba(75, 209, 184, 0.12);
}

.file-upload__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--primary);
  opacity: 0.7;
}

.file-upload__icon svg {
  width: 100%;
  height: 100%;
}

.file-upload__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.file-upload__hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.file-upload__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.file-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-tap-highlight-color: transparent;
}

.file-upload__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.file-upload__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.file-upload__btn--camera {
  background: rgba(75, 209, 184, 0.12);
  border-color: rgba(75, 209, 184, 0.25);
  color: var(--primary);
}

.file-upload__btn--camera:hover {
  background: rgba(75, 209, 184, 0.2);
  border-color: var(--primary);
}

.file-upload__preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.file-upload__preview:empty {
  display: none;
}

.file-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-item__pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  gap: 4px;
  text-align: center;
  padding: 4px;
}

.file-preview-item__pdf svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.file-preview-item__remove {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(208, 11, 26, 0.85);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.file-preview-item__remove:hover {
  background: #d00b1a;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  color: rgba(255, 255, 255, 0.85);
}

.legal-page__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-page__updated {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 16px;
}

.legal-section p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.legal-section ul {
  list-style: disc;
  padding-inline-start: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  line-height: 1.8;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--white);
}

.legal-contact {
  list-style: none;
  padding-inline-start: 0;
}

.legal-contact li {
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0e16;
  color: rgba(255, 255, 255, 0.65);
  padding: 44px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 34px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--primary);
  padding-inline-start: 4px;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--primary);
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.82rem;
}

.footer__legal-links a:hover {
  color: var(--primary);
}

.footer__trust-badge {
  font-size: 0.78rem;
  color: var(--primary);
  opacity: 0.85;
  margin-top: 10px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ===== STICKY MOBILE BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 999;
  background: rgba(15, 21, 32, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bar__whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-bar__whatsapp:hover {
  background: #20bd5a;
}

.mobile-bar__phone {
  background: var(--primary);
  color: var(--white);
}

.mobile-bar__phone:hover {
  background: var(--primary-hover);
}

.mobile-bar svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

/* ===== SCROLL ANIMATIONS (desktop only) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

.flip-in {
  opacity: 0;
  transform: perspective(600px) rotateX(15deg) translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.flip-in.visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0) translateY(0);
}

/* ===== STAGGER FADE (new) ===== */
.stagger-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BLUR IN (new) ===== */
.blur-in {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger children (desktop) */
.fade-in:nth-child(2),
.slide-in-right:nth-child(2),
.slide-in-left:nth-child(2),
.scale-up:nth-child(2),
.flip-in:nth-child(2),
.stagger-fade:nth-child(2),
.blur-in:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-in:nth-child(3),
.slide-in-right:nth-child(3),
.slide-in-left:nth-child(3),
.scale-up:nth-child(3),
.flip-in:nth-child(3),
.stagger-fade:nth-child(3),
.blur-in:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-in:nth-child(4),
.slide-in-right:nth-child(4),
.slide-in-left:nth-child(4),
.scale-up:nth-child(4),
.flip-in:nth-child(4),
.stagger-fade:nth-child(4),
.blur-in:nth-child(4) {
  transition-delay: 0.3s;
}
.fade-in:nth-child(5),
.slide-in-right:nth-child(5),
.slide-in-left:nth-child(5),
.scale-up:nth-child(5),
.flip-in:nth-child(5),
.stagger-fade:nth-child(5),
.blur-in:nth-child(5) {
  transition-delay: 0.4s;
}
.fade-in:nth-child(6),
.slide-in-right:nth-child(6),
.slide-in-left:nth-child(6),
.scale-up:nth-child(6),
.flip-in:nth-child(6),
.stagger-fade:nth-child(6),
.blur-in:nth-child(6) {
  transition-delay: 0.5s;
}

/* Notification-card entrance (desktop) */
.solution-card.fade-in,
.solution-card.scale-up,
.solution-card.flip-in,
.whyus-card.fade-in,
.whyus-card.slide-in-right,
.whyus-card.slide-in-left {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.solution-card.fade-in.visible,
.solution-card.scale-up.visible,
.solution-card.flip-in.visible,
.whyus-card.fade-in.visible,
.whyus-card.slide-in-right.visible,
.whyus-card.slide-in-left.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== ACCESSIBILITY WIDGET ===== */
.a11y-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  direction: rtl;
}
.a11y-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.a11y-toggle:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}
.a11y-toggle[aria-expanded='true'] {
  background: var(--primary-hover);
}

/* Panel */
.a11y-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
  overflow: hidden;
}
.a11y-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.a11y-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.a11y-panel__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.a11y-panel__body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1a1a2e;
}

/* Font size row */
.a11y-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a11y-option__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
}
.a11y-option__controls {
  display: flex;
  gap: 6px;
}
.a11y-option__controls button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  transition:
    background 0.15s,
    border-color 0.15s;
  color: #1a1a2e;
}
.a11y-option__controls button:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
}

/* Toggle buttons */
.a11y-option__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fafafa;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  color: #1a1a2e;
  text-align: right;
}
.a11y-option__toggle:hover {
  background: #f0f0f0;
}
.a11y-option__toggle[aria-pressed='true'] {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

/* Footer */
.a11y-panel__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid #eee;
}
.a11y-reset-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
  transition: background 0.15s;
}
.a11y-reset-btn:hover {
  background: #f0f0f0;
}
.a11y-statement-link {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: underline;
}

/* Accessibility mode classes on <html> */
html.a11y-high-contrast {
  filter: contrast(1.4);
}
html.a11y-grayscale {
  filter: grayscale(1);
}
html.a11y-high-contrast.a11y-grayscale {
  filter: contrast(1.4) grayscale(1);
}
html.a11y-highlight-links a {
  outline: 3px solid #ff0 !important;
  outline-offset: 2px;
  text-decoration: underline !important;
}
html.a11y-pause-animations *,
html.a11y-pause-animations *::before,
html.a11y-pause-animations *::after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M4 2l28 18-12 3 5 16-6 2-5-16-10 9z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E")
      4 2,
    auto !important;
}

@media (max-width: 768px) {
  .a11y-widget {
    bottom: 80px;
  }
  .a11y-panel {
    width: 260px;
  }
}

/* ===== CONTACT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 100vh;
  overflow-y: visible;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-overlay.is-open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
}

.modal-close:hover {
  background: rgba(208, 11, 26, 0.2);
  border-color: rgba(208, 11, 26, 0.4);
}

.modal-content .form-group {
  margin-bottom: 12px;
}

.modal-content .form-group label {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.modal-content .form-group input,
.modal-content .form-group textarea {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.modal-content .form-group textarea {
  rows: 2;
}

.modal-content .file-upload {
  padding: 10px 14px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.modal-content .file-upload__icon,
.modal-content .file-upload__text {
  display: none;
}

.modal-content .file-upload__hint {
  font-size: 0.72rem;
  margin-bottom: 0;
  order: 2;
}

.modal-content .file-upload__actions {
  order: 1;
}

.modal-content .file-upload__btn {
  padding: 6px 14px;
  font-size: 0.78rem;
  border-radius: 8px;
  gap: 5px;
}

.modal-content .file-upload__btn svg {
  width: 14px;
  height: 14px;
}

.modal-content .file-upload__preview {
  margin-top: 6px;
  gap: 6px;
}

.modal-content .file-preview-item {
  width: 48px;
  height: 48px;
}

.modal-content .form__submit {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  margin-top: 4px;
}

.modal-content .form__note {
  font-size: 0.75rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 22px 18px 18px;
    border-radius: var(--radius-lg);
  }
  .modal-title {
    font-size: 1.2rem;
  }
  .modal-content .file-upload {
    padding: 8px 10px;
  }
  .modal-content .file-upload__btn {
    padding: 5px 12px;
    font-size: 0.74rem;
  }
  .modal-content .file-preview-item {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 10px;
  }
  .modal-content {
    padding: 18px 14px 14px;
  }
  .modal-content .form-group {
    margin-bottom: 8px;
  }
  .modal-content .form-group input,
  .modal-content .form-group textarea {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .modal-content .form__submit {
    padding: 10px;
    font-size: 0.88rem;
  }
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  padding-top: 130px;
  padding-bottom: 32px;
  text-align: center;
}

.blog-article__card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.blog-article__card--reverse {
  direction: ltr;
}

.blog-article__card--reverse .blog-article__body {
  direction: rtl;
}

.blog-article__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.blog-article__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article__img-wrap:hover img {
  transform: scale(1.04);
}

.blog-article__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-article__title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.35;
}

.blog-article__body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-article__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.blog-article__body ul,
.blog-article__body ol {
  padding-inline-start: 24px;
  margin-bottom: 16px;
}

.blog-article__body ul {
  list-style: disc;
}

.blog-article__body ol {
  list-style: decimal;
}

.blog-article__body li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 4px;
}

.blog-article__highlight {
  background: rgba(75, 209, 184, 0.06);
  border-inline-start: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.85;
  font-weight: 500;
}

.blog-article__body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.navbar__active {
  color: var(--primary) !important;
}

.navbar__active::after {
  transform: scaleX(1) !important;
}

@media (max-width: 768px) {
  .blog-hero {
    padding-top: 100px;
    padding-bottom: 16px;
  }
  .blog-article__card,
  .blog-article__card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: rtl;
  }
  .blog-article__img-wrap {
    position: static;
  }
  .blog-article__title {
    font-size: 1.35rem;
  }
  .blog-article__body .btn {
    align-self: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-article__title {
    font-size: 1.2rem;
  }
  .blog-article__highlight {
    padding: 16px;
    font-size: 0.9rem;
  }
}

/* ===== SELECTION ===== */
::selection {
  background: var(--primary-glow);
  color: var(--dark);
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: 3px;
  margin: 0 auto 20px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .slide-in-right,
  .slide-in-left,
  .scale-up,
  .flip-in,
  .stagger-fade,
  .blur-in,
  .solution-card.fade-in,
  .solution-card.scale-up,
  .solution-card.flip-in,
  .whyus-card.fade-in,
  .whyus-card.slide-in-right,
  .whyus-card.slide-in-left,
  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__trust,
  .hero__line,
  .trust-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .section {
    padding: 64px 0;
  }
  .section--lg {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 200px;
  }
  .service-card::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.6) 55%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid::before {
    display: none;
  }
  .solutions-grid,
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  /* --- KILL ALL SCROLL ANIMATIONS ON MOBILE --- */
  .fade-in,
  .slide-in-right,
  .slide-in-left,
  .scale-up,
  .flip-in,
  .stagger-fade,
  .blur-in,
  .solution-card.fade-in,
  .solution-card.scale-up,
  .solution-card.flip-in,
  .whyus-card.fade-in,
  .whyus-card.slide-in-right,
  .whyus-card.slide-in-left {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  /* --- Keep hero entrance but simplified --- */
  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__trust,
  .hero__line,
  .trust-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* --- Base --- */
  .section {
    padding: 56px 0;
  }
  .section--lg {
    padding: 64px 0;
  }
  .container {
    padding-inline: 20px;
  }

  /* --- Centering --- */
  .section-label,
  .section-title,
  .section-subtitle,
  .section-divider,
  .info-block,
  .info-block__text,
  .info-block__highlight {
    text-align: center;
  }

  /* --- Navbar --- */
  .navbar__inner {
    height: 64px;
  }

  .navbar__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    inset-inline: 0;
    background: rgba(15, 21, 32, 0.97);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
    border-bottom: 1px solid rgba(75, 209, 184, 0.08);
    padding: 16px 20px;
    gap: 4px;
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s;
  }

  .navbar__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__links a {
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid transparent;
  }

  .navbar__links a:hover,
  .navbar__links a:active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__links li:last-child a {
    margin-top: 8px;
    border-color: rgba(208, 11, 26, 0.3);
  }

  .burger {
    display: block;
    position: absolute;
    inset-inline-start: 20px;
    inset-inline-end: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar__flag {
    position: static;
    inset-inline-start: auto;
    top: auto;
    transform: none;
    width: 28px;
    margin-inline-start: 10px;
    border-radius: 3px;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
    min-height: auto;
    background-attachment: scroll;
  }

  .hero__content {
    padding: 28px 16px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 7px 18px;
    margin-bottom: 20px;
  }
  .hero__title {
    font-size: 2.1rem;
    margin-bottom: 18px;
  }
  .hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
    gap: 2px;
  }
  .hero__actions {
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
    justify-content: center;
  }
  .hero__trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .trust-item {
    padding: 12px 14px;
    font-size: 0.82rem;
    gap: 10px;
  }
  .trust-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .trust-item__icon svg {
    width: 16px;
    height: 16px;
  }

  /* --- Headings --- */
  .section-title {
    font-size: 1.65rem;
  }
  .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 32px;
  }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card {
    min-height: 150px;
  }
  .service-card__body {
    padding: 18px 12px;
  }
  .service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  .service-card__title {
    font-size: 0.88rem;
  }
  .service-card__desc {
    max-height: none;
    opacity: 1;
    font-size: 0.8rem;
  }

  /* --- Info blocks --- */
  .info-block__text {
    font-size: 0.98rem;
    line-height: 1.85;
  }
  .info-block__highlight {
    padding: 20px;
    font-size: 0.92rem;
  }

  /* --- Steps --- */
  .steps-list {
    align-items: center;
  }
  .steps-list::before {
    inset-inline-start: 37px;
  }
  .step-item {
    padding: 22px 20px;
    gap: 16px;
    width: 100%;
  }
  .step-item__number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .step-item__content h3 {
    font-size: 1rem;
  }
  .step-item__content p {
    font-size: 0.9rem;
  }

  /* --- Process --- */
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .process-step__circle {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }
  .process-step__circle svg {
    width: 24px;
    height: 24px;
  }
  .process-step__label {
    font-size: 0.8rem;
    text-align: center;
  }

  /* --- Solutions --- */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  .solution-card__body {
    padding: 28px 22px 26px;
  }
  .solution-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  /* --- Why us --- */
  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
  .whyus-card__body {
    padding: 22px 20px;
    gap: 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .whyus-card__icon {
    width: 46px;
    height: 46px;
  }

  /* --- FAQ --- */
  .faq-item__header {
    padding: 18px 18px;
    gap: 12px;
  }
  .faq-item__icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .faq-item__title {
    font-size: 0.95rem;
  }
  .faq-item__answer {
    padding-inline-start: 66px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.9rem;
  }

  /* --- Cities --- */
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 440px;
    margin: 0 auto;
  }
  .city-card {
    padding: 22px 20px;
  }

  /* --- CTA --- */
  .cta-banner {
    padding: 44px 0;
    text-align: center;
  }
  .cta-banner__title {
    font-size: 1.55rem;
  }
  .cta-banner__text {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  /* --- Contact --- */
  .contact__wrapper {
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    max-width: 440px;
    margin: 0 auto;
  }
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .form__submit {
    padding: 16px;
    font-size: 1.05rem;
  }

  /* --- Legal pages --- */
  .legal-page {
    padding: 110px 0 60px;
  }
  .legal-page__title {
    font-size: 1.6rem;
  }

  /* --- Footer --- */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand p {
    max-width: 100%;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__contact a {
    justify-content: center;
  }
  .footer__bottom {
    text-align: center;
  }
  .footer__legal-links {
    gap: 16px;
  }

  /* --- Mobile bar --- */
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }

  /* --- Buttons --- */
  .btn--lg {
    padding: 15px 32px;
    font-size: 0.98rem;
  }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  .section--lg {
    padding: 48px 0;
  }
  .container {
    padding-inline: 16px;
  }

  .hero__title {
    font-size: 1.75rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
  }
  .hero__content {
    padding: 20px 10px;
  }
  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  .hero__trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .service-card {
    min-height: 140px;
  }
  .service-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .service-card__icon svg {
    width: 18px;
    height: 18px;
  }
  .service-card__body {
    padding: 14px 10px;
  }
  .service-card__title {
    font-size: 0.82rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .process-step__circle {
    width: 64px;
    height: 64px;
  }
  .process-step__circle svg {
    width: 22px;
    height: 22px;
  }
  .process-step__label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }

  .info-block__text {
    font-size: 0.92rem;
  }
  .info-block__highlight {
    padding: 16px;
    font-size: 0.88rem;
  }

  .step-item {
    padding: 18px 16px;
    gap: 14px;
  }
  .steps-list::before {
    display: none;
  }

  .solution-card__body {
    padding: 24px 18px 22px;
  }
  .whyus-card__body {
    padding: 18px 16px;
  }

  .faq-item__header {
    padding: 16px 14px;
  }
  .faq-item__answer {
    padding-inline-start: 14px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.88rem;
  }
  .faq-item__title {
    font-size: 0.9rem;
  }

  .city-card {
    padding: 18px 16px;
  }

  .contact__wrapper {
    padding: 28px 18px;
  }
  .form-group {
    margin-bottom: 18px;
  }

  .cta-banner__title {
    font-size: 1.35rem;
  }
  .cta-banner__text {
    font-size: 0.9rem;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ===== VERY SMALL MOBILE (max 360px) ===== */
@media (max-width: 360px) {
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__subtitle {
    font-size: 0.88rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .trust-item {
    font-size: 0.78rem;
    padding: 10px 12px;
  }
  .trust-item__icon {
    width: 30px;
    height: 30px;
  }
  .service-card__title {
    font-size: 0.78rem;
  }
  .process-step__circle {
    width: 56px;
    height: 56px;
  }
  .process-step__label {
    font-size: 0.72rem;
  }
}
