:root {
  --navy-950: #031c42;
  --navy-900: #05285b;
  --navy-800: #073772;
  --navy-700: #0b4b8f;
  --cyan-600: #009fc0;
  --cyan-500: #0bb8c7;
  --cyan-300: #7ce5eb;
  --text: #10213f;
  --muted: #5b6679;
  --line: #dbe4ee;
  --surface: #ffffff;
  --surface-soft: #f5f9fd;
  --shadow-sm: 0 8px 28px rgba(5, 40, 91, 0.08);
  --shadow-md: 0 18px 48px rgba(5, 40, 91, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--navy-900);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-block;
  color: var(--cyan-600);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible,
.nav-link:focus-visible,
.service-card a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(11, 184, 199, 0.38);
  outline-offset: 4px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 10px 24px rgba(5, 40, 91, 0.18);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(5, 40, 91, 0.26);
}

.button-secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: #7e94b0;
}

.button-secondary:hover {
  border-color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 238, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  color: var(--navy-900);
  line-height: 1;
}

.brand-name {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.035em;
}

.brand-line {
  width: 70px;
  height: 3px;
  margin: 4px 0 5px;
  background: var(--cyan-500);
}

.brand-tagline {
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 29px 1px 24px;
  color: var(--text);
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  width: 230px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 180ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 650;
}

.dropdown-menu a:hover {
  color: var(--navy-800);
  background: var(--surface-soft);
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-cta {
  min-height: 44px;
  padding: 9px 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 30px;
  background:
    radial-gradient(circle at 22% 0%, rgba(124, 229, 235, 0.1), transparent 32%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 25px 0 12px;
}

.hero h1 {
  max-width: 590px;
  margin: 12px 0 16px;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: #40506b;
  font-size: 0.8rem;
  font-weight: 650;
}

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

.hero-trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #e7f1f8;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%, 10% 75%, 0 52%);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 25%);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shape {
  position: absolute;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(5, 40, 91, 0.12));
}

.shape-one {
  left: 2%;
  bottom: 14%;
  width: 110px;
  height: 140px;
  background: linear-gradient(145deg, var(--cyan-600), var(--navy-800));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.shape-two {
  right: -3%;
  top: 15%;
  width: 120px;
  height: 280px;
  background: linear-gradient(150deg, #13bad3, var(--navy-900));
  clip-path: polygon(100% 0, 100% 100%, 0 68%, 58% 25%);
}

.shape-three {
  left: 19%;
  top: 9%;
  width: 115px;
  height: 260px;
  background: linear-gradient(180deg, rgba(45, 137, 200, 0.14), rgba(45, 137, 200, 0));
  clip-path: polygon(70% 0, 100% 0, 30% 100%, 0 100%);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin: 6px 0 8px;
  color: var(--navy-950);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.heading-line {
  width: 44px;
  height: 3px;
  display: block;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--cyan-500);
}

.services-section {
  padding-top: 52px;
}

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

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 17px 19px;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(5, 40, 91, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(11, 184, 199, 0.4);
  box-shadow: var(--shadow-md);
}

.icon-badge {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-radius: 21px 21px 18px 18px;
  box-shadow: 0 10px 20px rgba(5, 40, 91, 0.16);
  transform: rotate(4deg);
}

.icon-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-4deg);
}

.service-card h3 {
  min-height: 50px;
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.05rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-card a {
  margin-top: auto;
  color: var(--cyan-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(11, 184, 199, 0.17), transparent 36%),
    linear-gradient(110deg, var(--navy-950), var(--navy-800));
}

.benefits-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(124, 229, 235, 0.11);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  align-items: center;
  gap: 38px;
}

.city-illustration svg {
  width: 100%;
  color: rgba(124, 229, 235, 0.55);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-illustration .city-accent {
  stroke: rgba(255, 255, 255, 0.22);
}

.benefits-heading h2 {
  margin: 4px 0 26px;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  line-height: 1.14;
}

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

.benefit-card {
  min-height: 170px;
  padding: 8px 22px 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.benefit-card:first-child {
  border-left: 0;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  color: var(--cyan-300);
  border: 2px solid rgba(124, 229, 235, 0.65);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.process-section {
  background: #fff;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 9%;
  right: 9%;
  border-top: 1px dashed #b8c9da;
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 39px;
  left: calc(50% - 58px);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cyan-500);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
}

.step-icon {
  width: 83px;
  height: 83px;
  display: grid;
  place-items: center;
  margin: 9px auto 18px;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid #d7e3ee;
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(5, 40, 91, 0.08);
}

.step-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-item h3 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.process-item p {
  max-width: 200px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.testimonials-section {
  padding: 52px 0 62px;
  background:
    linear-gradient(180deg, rgba(239, 247, 253, 0.92), rgba(247, 251, 254, 0.75)),
    #f6fafe;
}

.testimonial-slider {
  position: relative;
  padding-inline: 45px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 360ms cubic-bezier(.2, .75, .25, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 21px;
  padding: 22px;
  background: #fff;
  border: 1px solid #dde7f0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(5, 40, 91, 0.07);
}

.quote-mark {
  color: var(--cyan-500);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.75;
}

.testimonial-card > p {
  min-height: 76px;
  margin: 5px 0 18px;
  color: #445169;
  font-size: 0.88rem;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--cyan-500), var(--navy-800));
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 850;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.testimonial-person div span {
  color: var(--muted);
  font-size: 0.72rem;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button.previous {
  left: 0;
}

.slider-button.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #fff;
  border: 1px solid #a7b8c9;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--cyan-600);
  border-color: var(--cyan-600);
}

.contact-cta {
  padding: 48px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact-cta h2 {
  max-width: 760px;
  margin: 5px 0 6px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button-light {
  color: var(--navy-900);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1.2fr;
  gap: 38px;
  padding: 52px 0 35px;
}

.brand-light {
  color: #fff;
}

.footer-brand > p {
  max-width: 310px;
  margin: 17px 0;
  font-size: 0.84rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-title {
  margin: 4px 0 17px;
  color: #fff;
  font-size: 0.96rem;
}

.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 7px;
}

.footer-links a,
.contact-list {
  font-size: 0.82rem;
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--cyan-300);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.contact-list li + li {
  margin-top: 10px;
}

.contact-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

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

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

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
  }

  .primary-nav {
    gap: 15px;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 280px;
  }

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

  .city-illustration {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .contact-list li + li {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
    display: block;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(5, 40, 91, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px solid #edf1f5;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    display: none;
    padding: 7px 0 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

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

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

  .hero-copy > p,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

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

  .hero-image-wrap {
    height: 350px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 5% 72%, 0 48%);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card:nth-child(3) {
    border-left: 0;
  }

  .benefit-card {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list::before {
    display: none;
  }

  .process-item:last-child {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    flex-basis: calc(50% - 11px);
  }

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-tagline {
    max-width: 180px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
  }

  .hero-visual {
    min-height: 290px;
  }

  .hero-image-wrap {
    height: 285px;
  }

  .shape-one {
    width: 75px;
    height: 100px;
  }

  .shape-two {
    width: 82px;
    height: 195px;
  }

  .section {
    padding: 58px 0;
  }

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

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

  .service-card h3 {
    min-height: auto;
  }

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

  .benefit-card,
  .benefit-card:nth-child(3) {
    border-left: 0;
  }

  .process-item:last-child {
    grid-column: auto;
  }

  .testimonial-slider {
    padding-inline: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    margin-right: 0;
  }

  .slider-button {
    display: none;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   STARTUPS PAGE
   ========================================================= */

.startup-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 20px;
  background: radial-gradient(circle at 16% 0%, rgba(11,184,199,.08), transparent 34%), #fff;
}

.startup-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(470px,1.1fr);
  align-items: center;
  gap: 30px;
}

.startup-hero-copy {
  position: relative;
  z-index: 4;
  padding: 30px 0 20px;
}

.startup-hero-copy h1 {
  max-width: 650px;
  margin: 12px 0 15px;
  color: var(--navy-950);
  font-size: clamp(2.25rem,4.6vw,4.05rem);
  line-height: 1.08;
  letter-spacing: -.047em;
}

.startup-hero-copy > p {
  max-width: 625px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem,1.42vw,1.08rem);
}

.startup-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 29px;
  color: #40506b;
  font-size: .78rem;
  font-weight: 650;
}

.startup-trust div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.startup-trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.startup-hero-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
}

.startup-hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 392px;
  overflow: hidden;
  background: #eaf3f8;
  clip-path: polygon(24% 0,100% 0,100% 100%,0 100%,8% 73%,0 49%);
}

.startup-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.startup-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.22),transparent 24%);
  pointer-events: none;
}

.startup-shape {
  position: absolute;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 13px 20px rgba(5,40,91,.15));
}

.startup-shape-one {
  left: 2%;
  bottom: 12%;
  width: 116px;
  height: 158px;
  background: linear-gradient(145deg,var(--cyan-600),var(--navy-800));
  clip-path: polygon(50% 0,100% 100%,0 100%);
}

.startup-shape-two {
  right: -4%;
  top: 8%;
  width: 145px;
  height: 320px;
  background: linear-gradient(150deg,#15bfd5,var(--navy-900));
  clip-path: polygon(100% 0,100% 100%,0 67%,61% 27%);
}

.startup-shape-three {
  left: 21%;
  top: 0;
  width: 125px;
  height: 300px;
  background: linear-gradient(180deg,rgba(58,151,212,.13),rgba(58,151,212,0));
  clip-path: polygon(70% 0,100% 0,28% 100%,0 100%);
}

.startup-offer-section {
  padding: 20px 0 34px;
}

.startup-offer-section .section-heading,
.startup-audience-section .section-heading,
.startup-digital-section .section-heading,
.startup-testimonials-section .section-heading {
  margin-bottom: 25px;
}

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

.startup-feature-card {
  min-height: 146px;
  display: grid;
  grid-template-columns: 62px minmax(0,1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(5,40,91,.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.startup-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11,184,199,.4);
  box-shadow: var(--shadow-md);
}

.startup-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg,var(--navy-800),var(--navy-950));
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(5,40,91,.14);
  transform: rotate(4deg);
}

.startup-feature-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-4deg);
}

.startup-feature-card h3 {
  margin: 1px 0 6px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.25;
}

.startup-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.52;
}

.startup-audience-section {
  padding: 0 0 32px;
}

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

.audience-card {
  min-height: 122px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 17px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(180deg,#fff,#fbfdff);
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  box-shadow: 0 6px 19px rgba(5,40,91,.045);
}

.audience-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--cyan-600);
  background: rgba(11,184,199,.055);
  border: 1.5px solid rgba(11,184,199,.5);
  border-radius: 50%;
}

.audience-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin: 0 0 5px;
  color: var(--navy-950);
  font-size: .98rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.5;
}

.startup-journey-section {
  position: relative;
  overflow: hidden;
  padding: 24px 0 35px;
  color: #fff;
  background: radial-gradient(circle at 75% 0%,rgba(11,184,199,.18),transparent 36%), linear-gradient(115deg,var(--navy-950),var(--navy-800));
}

.startup-journey-layout {
  display: grid;
  grid-template-columns: .72fr 1.8fr;
  align-items: center;
  gap: 32px;
}

.startup-city svg {
  width: 100%;
  fill: none;
  stroke: rgba(124,229,235,.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.startup-journey-heading {
  margin-bottom: 14px;
  text-align: center;
}

.startup-journey-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem,3.3vw,2.35rem);
}

.startup-journey-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.startup-journey-list::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 12%;
  right: 12%;
  border-top: 1px dashed rgba(124,229,235,.65);
}

.startup-journey-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.startup-step-number {
  position: absolute;
  top: 18px;
  left: calc(50% - 49px);
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cyan-500);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 850;
}

.startup-step-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: #fff;
  background: rgba(5,40,91,.88);
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}

.startup-step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.startup-journey-item h3 {
  margin: 0 0 5px;
  font-size: .95rem;
}

.startup-journey-item p {
  max-width: 190px;
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: .76rem;
  line-height: 1.45;
}

.startup-digital-section {
  padding: 24px 0 33px;
}

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

.digital-solution-card {
  min-height: 135px;
  display: grid;
  grid-template-columns: 60px minmax(0,1fr);
  gap: 15px;
  align-items: flex-start;
  padding: 21px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(5,40,91,.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.digital-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.digital-solution-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--cyan-600);
  background: rgba(11,184,199,.045);
  border: 2px solid rgba(11,184,199,.5);
  border-radius: 9px;
}

.digital-solution-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.digital-solution-card h3 {
  margin: 1px 0 5px;
  color: var(--navy-950);
  font-size: .96rem;
}

.digital-solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.48;
}

.startup-testimonials-section {
  padding: 12px 0 29px;
  background: #fff;
}

.startups-page .testimonial-card {
  background: linear-gradient(180deg,#fff,#fbfdff);
}

.startup-cta-section {
  padding: 0;
}

.startup-cta-card {
  min-height: 125px;
  display: grid;
  grid-template-columns: 205px minmax(280px,1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 15px 28px;
  background: linear-gradient(100deg,rgba(238,247,253,.98),rgba(247,251,254,.95)), #f2f8fc;
  border: 1px solid #dce8f1;
  border-radius: 13px 13px 0 0;
}

.startup-cta-art {
  height: 105px;
  color: var(--navy-800);
}

.startup-cta-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.startup-cta-art svg circle {
  stroke: var(--cyan-600);
}

.startup-cta-copy h2 {
  margin: 0 0 5px;
  color: var(--navy-950);
  font-size: clamp(1.4rem,2.8vw,2rem);
  line-height: 1.15;
}

.startup-cta-copy p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.startup-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width:1120px) {
  .startup-hero-grid {
    grid-template-columns: minmax(0,.9fr) minmax(410px,1.1fr);
  }

  .startup-digital-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .startup-journey-layout {
    grid-template-columns: 1fr;
  }

  .startup-city {
    display: none;
  }

  .startup-cta-card {
    grid-template-columns: 150px 1fr;
  }

  .startup-cta-actions {
    grid-column: 1/-1;
    justify-content: center;
    padding-bottom: 8px;
  }
}

@media (max-width:900px) {
  .startup-hero {
    padding-top: 28px;
  }

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

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

  .startup-hero-copy h1,
  .startup-hero-copy > p {
    margin-inline: auto;
  }

  .startup-hero-copy .hero-actions,
  .startup-trust {
    justify-content: center;
  }

  .startup-hero-visual {
    min-height: 350px;
  }

  .startup-hero-image {
    height: 340px;
  }

  .startup-offer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .startup-audience-grid {
    grid-template-columns: 1fr;
  }

  .startup-journey-list {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 26px;
  }

  .startup-journey-list::before {
    display: none;
  }
}

@media (max-width:680px) {
  .startup-hero-copy h1 {
    font-size: clamp(2.1rem,11.4vw,3.2rem);
  }

  .startup-hero-copy .hero-actions {
    flex-direction: column;
  }

  .startup-hero-copy .button {
    width: 100%;
  }

  .startup-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
  }

  .startup-hero-visual {
    min-height: 278px;
  }

  .startup-hero-image {
    height: 270px;
    clip-path: polygon(11% 0,100% 0,100% 100%,0 100%,5% 72%,0 48%);
  }

  .startup-shape-one {
    width: 75px;
    height: 100px;
  }

  .startup-shape-two {
    width: 88px;
    height: 195px;
  }

  .startup-offer-grid,
  .startup-digital-grid,
  .startup-journey-list {
    grid-template-columns: 1fr;
  }

  .startup-feature-card {
    grid-template-columns: 55px 1fr;
    padding: 19px;
  }

  .startup-step-number {
    left: calc(50% - 48px);
  }

  .startup-cta-card {
    grid-template-columns: 1fr;
    padding: 23px 20px;
    text-align: center;
  }

  .startup-cta-art {
    width: 190px;
    margin-inline: auto;
  }

  .startup-cta-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .startup-cta-actions .button {
    width: 100%;
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 184, 199, 0.07), transparent 32%),
    #fff;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 38px;
}

.contact-hero-copy {
  position: relative;
  z-index: 4;
  padding: 30px 0 20px;
}

.contact-hero-copy h1 {
  max-width: 620px;
  margin: 12px 0 16px;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.contact-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.contact-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 26px;
  color: #40506b;
  font-size: 0.82rem;
  font-weight: 650;
}

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

.contact-hero-trust svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--cyan-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-visual {
  position: relative;
  min-height: 315px;
  display: flex;
  align-items: center;
}

.contact-hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #eaf3f8;
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%, 8% 73%, 0 50%);
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.25), transparent 25%);
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(5,40,91,.14));
}

.contact-shape-one {
  left: 0;
  bottom: 10%;
  width: 103px;
  height: 132px;
  background: linear-gradient(145deg, var(--cyan-600), var(--navy-800));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.contact-shape-two {
  right: -4%;
  top: 6%;
  width: 125px;
  height: 250px;
  background: linear-gradient(150deg, #15bfd5, var(--navy-900));
  clip-path: polygon(100% 0, 100% 100%, 0 67%, 61% 27%);
}

.contact-shape-three {
  left: 18%;
  top: -4%;
  width: 105px;
  height: 225px;
  background: linear-gradient(180deg, rgba(58,151,212,.13), rgba(58,151,212,0));
  clip-path: polygon(70% 0, 100% 0, 28% 100%, 0 100%);
}

.contact-main-section {
  padding: 22px 0 30px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(275px, .72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 48px;
}

.contact-info-column {
  display: grid;
  gap: 1px;
}

.contact-info-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px 20px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(5,40,91,.045);
}

.contact-info-card + .contact-info-card {
  margin-top: 0;
}

.contact-info-card-action {
  min-height: 116px;
  margin-top: 12px !important;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-radius: 18px;
  box-shadow: 0 9px 20px rgba(5,40,91,.14);
  transform: rotate(4deg);
}

.contact-info-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-4deg);
}

.contact-info-label,
.contact-info-card a,
.contact-info-card strong,
.contact-info-card small {
  display: block;
}

.contact-info-label {
  color: var(--navy-800);
  font-size: .74rem;
  font-weight: 700;
}

.contact-info-card a,
.contact-info-card strong {
  color: var(--navy-950);
  font-size: .98rem;
  font-weight: 800;
}

.contact-info-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .74rem;
}

.contact-info-card .contact-inline-link {
  margin-top: 7px;
  color: var(--cyan-600);
  font-size: .82rem;
}

.contact-form-card {
  padding: 26px 30px 28px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(5,40,91,.07);
}

.contact-form-heading h2 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.heading-line-left {
  margin: 0;
}

.contact-form {
  margin-top: 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 750;
}

.form-field label span {
  color: #e04444;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--text);
  background: #fff;
  border: 1px solid #cfdbe6;
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #99a5b5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan-600);
  box-shadow: 0 0 0 3px rgba(11,184,199,.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #d64141;
  background: #fffafa;
}

.field-error {
  min-height: 17px;
  margin-top: 4px;
  color: #c63838;
  font-size: .69rem;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 17px;
}

.contact-submit-button {
  min-width: 205px;
}

.form-submit-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.4;
}

.contact-form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 6px;
  font-size: .8rem;
}

.contact-form-status.visible {
  display: block;
  color: #0b5b42;
  background: #edf9f4;
  border: 1px solid #bfe8d6;
}

.contact-benefits-section {
  padding: 4px 0 35px;
}

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

.contact-benefit-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(5,40,91,.05);
}

.contact-benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--cyan-500), var(--navy-700));
  border-radius: 50%;
}

.contact-benefit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-benefit-card h2 {
  margin: 0 0 4px;
  color: var(--navy-950);
  font-size: .95rem;
}

.contact-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.48;
}

.contact-faq-section {
  padding: 8px 0 32px;
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: end;
  gap: 55px;
}

.contact-faq-content .section-heading {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe5ee;
  border-radius: 6px;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 18px;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-size: .87rem;
  font-weight: 750;
  cursor: pointer;
}

.faq-item button span {
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
  font-size: .8rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 15px;
}

.contact-faq-art {
  color: var(--cyan-600);
}

.contact-faq-art svg {
  width: 100%;
  max-height: 235px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-location-section {
  padding: 21px 0 28px;
  background: #f8fbfd;
}

.contact-location-layout {
  display: grid;
  grid-template-columns: .65fr 1.7fr;
  align-items: center;
  gap: 40px;
}

.contact-location-copy h2 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 1.45rem;
}

.contact-location-copy p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: .88rem;
}

.contact-map-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(rgba(195,225,243,.72), rgba(221,239,248,.72)),
    #dceef8;
  border: 1px solid #cfe0ea;
  border-radius: 9px;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.65) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-6deg) scale(1.15);
}

.map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(36,106,151,.38);
  stroke-width: 3;
}

.map-routes path:nth-child(2) {
  stroke: rgba(255,255,255,.95);
  stroke-width: 7;
}

.map-pin-card {
  position: absolute;
  top: 50%;
  left: 49%;
  min-width: 206px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(5,40,91,.18);
  transform: translate(-50%, -50%);
}

.map-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-800);
  border-radius: 50%;
}

.map-pin svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.map-pin-card strong,
.map-pin-card span,
.map-pin-card small {
  display: block;
}

.map-pin-card strong {
  color: var(--navy-950);
  font-size: .82rem;
}

.map-pin-card span,
.map-pin-card small {
  color: var(--muted);
  font-size: .69rem;
}

.contact-final-cta {
  padding: 15px 0 0;
  background: #fff;
}

.contact-final-cta-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: 210px minmax(250px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 17px 28px;
  color: #fff;
  background: linear-gradient(110deg, var(--navy-950), var(--navy-800));
  border-radius: 10px 10px 0 0;
}

.contact-final-city {
  color: rgba(124,229,235,.52);
}

.contact-final-city svg {
  width: 100%;
  max-height: 100px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-final-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.contact-final-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1120px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-info-card-action {
    margin-top: 0 !important;
  }

  .contact-benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-final-cta-inner {
    grid-template-columns: 150px 1fr;
  }

  .contact-final-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    padding-top: 28px;
  }

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

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

  .contact-hero-copy h1,
  .contact-hero-copy > p {
    margin-inline: auto;
  }

  .contact-hero-trust {
    justify-content: center;
  }

  .contact-hero-visual {
    min-height: 300px;
  }

  .contact-hero-image {
    height: 285px;
  }

  .contact-faq-layout,
  .contact-location-layout {
    grid-template-columns: 1fr;
  }

  .contact-faq-art {
    max-width: 320px;
    margin-inline: auto;
  }

  .contact-location-copy {
    text-align: center;
  }

  .contact-location-copy .button {
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .contact-hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .contact-hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-hero-visual {
    min-height: 245px;
  }

  .contact-hero-image {
    height: 235px;
    clip-path: polygon(11% 0,100% 0,100% 100%,0 100%,5% 72%,0 48%);
  }

  .contact-shape-one {
    width: 70px;
    height: 92px;
  }

  .contact-shape-two {
    width: 80px;
    height: 180px;
  }

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

  .contact-form-card {
    padding: 22px 18px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-benefit-card {
    grid-template-columns: 54px 1fr;
  }

  .contact-map-card {
    min-height: 190px;
  }

  .map-pin-card {
    left: 50%;
    min-width: 205px;
  }

  .contact-final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-final-city {
    width: 200px;
    margin-inline: auto;
  }

  .contact-final-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .contact-final-actions .button {
    width: 100%;
  }
}


/* =========================================================
   LANGUAGE SWITCHER + ARABIC / RTL
   ========================================================= */

.language-toggle {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 7px 13px;
  color: var(--navy-900);
  background: rgba(11, 184, 199, 0.08);
  border: 1px solid rgba(11, 184, 199, 0.42);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover {
  color: #fff;
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(11, 184, 199, 0.3);
  outline-offset: 3px;
}

html[dir="rtl"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] .brand-name,
html[dir="rtl"] .email-ltr,
html[dir="rtl"] a[href^="mailto:"],
html[dir="rtl"] a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .brand {
  text-align: right;
}

html[dir="rtl"] .primary-nav {
  direction: rtl;
}

html[dir="rtl"] .dropdown-menu {
  text-align: right;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .page-hero-copy,
html[dir="rtl"] .startup-hero-copy,
html[dir="rtl"] .contact-hero-copy,
html[dir="rtl"] .contact-location-copy,
html[dir="rtl"] .startup-cta-copy {
  text-align: right;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .startup-cta-actions,
html[dir="rtl"] .contact-final-actions,
html[dir="rtl"] .services-bottom-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .hero-trust,
html[dir="rtl"] .startup-trust,
html[dir="rtl"] .contact-hero-trust {
  justify-content: flex-start;
}

html[dir="rtl"] .heading-line-left {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea,
html[dir="rtl"] .contact-form select {
  text-align: right;
}

html[dir="rtl"] .contact-form input[type="email"],
html[dir="rtl"] .contact-form input[type="tel"] {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .form-submit-row,
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .contact-benefit-card,
html[dir="rtl"] .startup-feature-card,
html[dir="rtl"] .audience-card,
html[dir="rtl"] .digital-solution-card,
html[dir="rtl"] .difference-card,
html[dir="rtl"] .domain-heading,
html[dir="rtl"] .testimonial-person {
  direction: rtl;
}

html[dir="rtl"] .check-list li {
  padding-right: 25px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom {
  direction: rtl;
}

html[dir="rtl"] .footer-bottom div {
  direction: rtl;
}

html[dir="rtl"] .contact-list svg {
  margin-right: 0;
}

html[dir="rtl"] .faq-item button {
  text-align: right;
}

html[dir="rtl"] .map-pin-card {
  direction: rtl;
}

@media (max-width: 900px) {
  .language-toggle {
    width: 100%;
    min-height: 45px;
    margin-top: 12px;
    border-radius: 8px;
  }

  html[dir="rtl"] .hero-copy,
  html[dir="rtl"] .page-hero-copy,
  html[dir="rtl"] .startup-hero-copy,
  html[dir="rtl"] .contact-hero-copy {
    text-align: center;
  }

  html[dir="rtl"] .hero-actions,
  html[dir="rtl"] .hero-trust,
  html[dir="rtl"] .startup-trust,
  html[dir="rtl"] .contact-hero-trust {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  html[dir="rtl"] .hero-trust,
  html[dir="rtl"] .startup-trust,
  html[dir="rtl"] .contact-hero-trust {
    align-items: flex-end;
  }

  html[dir="rtl"] .contact-location-copy {
    text-align: center;
  }
}


/* FIDTECH RESPONSIVE FIXES V2 */

/* ---------- Services page: missing page-specific layout ---------- */

.services-page {
  overflow-x: hidden;
}

.services-page .dropdown-toggle.active::after {
  transform: scaleX(1);
}

.services-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 36px;
  background:
    radial-gradient(circle at 16% 10%, rgba(11, 184, 199, 0.08), transparent 30%),
    #fff;
}

.services-page .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 36px;
}

.services-page .page-hero-grid > *,
.services-page .services-page-grid > *,
.services-page .domain-grid > *,
.services-page .difference-grid > * {
  min-width: 0;
}

.services-page .page-hero-copy {
  position: relative;
  z-index: 3;
  padding: 34px 0;
}

.services-page .page-hero-copy h1 {
  max-width: 650px;
  margin: 12px 0 17px;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4.7vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.047em;
}

.services-page .page-hero-copy > p {
  max-width: 625px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
}

.services-page .page-hero-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
}

.services-page .page-hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 390px;
  overflow: hidden;
  background: #eaf3f8;
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%, 8% 73%, 0 50%);
}

.services-page .page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page .page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.23), transparent 23%);
  pointer-events: none;
}

.services-page .page-shape {
  position: absolute;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(5, 40, 91, 0.14));
}

.services-page .page-shape-one {
  left: 2%;
  bottom: 13%;
  width: 116px;
  height: 158px;
  background: linear-gradient(145deg, var(--cyan-600), var(--navy-800));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.services-page .page-shape-two {
  right: -4%;
  top: 8%;
  width: 145px;
  height: 320px;
  background: linear-gradient(150deg, #15bfd5, var(--navy-900));
  clip-path: polygon(100% 0, 100% 100%, 0 67%, 61% 27%);
}

.services-page .services-catalogue {
  padding: 18px 0 76px;
}

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

.services-page .service-card-large {
  min-height: 300px;
  padding: 28px 22px 22px;
}

.services-page .service-card-large h2 {
  min-height: 54px;
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.12rem;
  line-height: 1.3;
}

.services-page .service-card-large p {
  overflow-wrap: anywhere;
}

.services-page .icon-badge {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  flex: 0 0 66px;
  overflow: hidden;
}

.services-page .icon-badge svg {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
}

.services-page .icon-badge-cyan {
  background: linear-gradient(145deg, var(--cyan-500), var(--navy-700));
}

.services-page .domains-section {
  padding: 48px 0 52px;
  background:
    linear-gradient(180deg, rgba(242, 248, 253, 0.88), rgba(237, 246, 252, 0.72)),
    #f1f7fb;
}

.services-page .domains-section .section-heading {
  margin-bottom: 30px;
}

.services-page .domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-page .domain-column {
  padding: 0 42px;
  border-left: 1px solid #c6d5e3;
}

.services-page .domain-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.services-page .domain-column:last-child {
  padding-right: 0;
}

.services-page .domain-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}

.services-page .domain-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  color: var(--cyan-600);
  overflow: hidden;
}

.services-page .domain-icon svg {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .domain-heading h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.05rem;
  line-height: 1.3;
}

.services-page .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .check-list li {
  position: relative;
  padding-left: 25px;
  color: #263750;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.services-page .check-list li + li {
  margin-top: 8px;
}

.services-page .check-list li::before {
  content: "✓";
  position: absolute;
  top: 0.05em;
  left: 0;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: var(--cyan-600);
  border: 1.7px solid var(--cyan-500);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.services-page .difference-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 38px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 35%, rgba(11, 184, 199, 0.18), transparent 30%),
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.services-page .difference-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 27px;
  text-align: center;
}

.services-page .difference-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
}

.services-page .difference-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-page .difference-card {
  min-width: 0;
  min-height: 110px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 8px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.services-page .difference-card:first-child {
  border-left: 0;
}

.services-page .difference-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: grid;
  place-items: center;
  color: var(--cyan-300);
  overflow: hidden;
}

.services-page .difference-icon svg {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .difference-card h3 {
  margin: 4px 0 5px;
  font-size: 0.97rem;
}

.services-page .difference-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.services-page .services-process {
  padding: 58px 0 0;
}

.services-page .services-process .section-heading {
  margin-bottom: 27px;
}

.services-page .services-process-list {
  padding-bottom: 42px;
}

.services-page .services-bottom-cta {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 0 34px;
  padding: 18px 26px;
  color: #fff;
  background: linear-gradient(115deg, var(--navy-950), var(--navy-800));
  border-radius: 10px 10px 0 0;
  box-shadow: 0 18px 38px rgba(5, 40, 91, 0.16);
}

.services-page .cta-symbol {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  overflow: hidden;
}

.services-page .cta-symbol svg {
  width: 31px !important;
  height: 31px !important;
  max-width: 31px !important;
  max-height: 31px !important;
}

.services-page .services-bottom-cta h2 {
  max-width: 550px;
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  line-height: 1.22;
}

.services-page .services-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.services-page .button-cyan {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-500), #0098bd);
}

/* ---------- Contact page stability ---------- */

.contact-page {
  overflow-x: hidden;
}

.contact-page svg,
.services-page svg {
  flex-shrink: 0;
}

.contact-page .contact-layout > *,
.contact-page .contact-info-card > *,
.contact-page .contact-benefit-card > *,
.contact-page .contact-final-cta-inner > * {
  min-width: 0;
}

.contact-page .contact-info-card a,
.contact-page .contact-info-card strong,
.contact-page .contact-list a,
.contact-page .contact-list span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form-status p {
  margin: 0;
}

.contact-form-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
}

.contact-form-status-actions .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.8rem;
}

.button-gmail {
  color: #fff;
  background: var(--navy-800);
}

.button-mail-app {
  color: var(--navy-900);
  background: #fff;
  border-color: #8ca1b8;
}

/* ---------- Tablet ---------- */

@media (max-width: 1120px) {
  .services-page .page-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  }

  .services-page .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .difference-card:nth-child(3) {
    border-left: 0;
  }

  .services-page .difference-card {
    padding-block: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .services-page .services-bottom-cta {
    grid-template-columns: auto 1fr;
  }

  .services-page .services-bottom-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 76px;
  }
}

@media (max-width: 900px) {
  .services-page .page-hero {
    padding-top: 28px;
  }

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

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

  .services-page .page-hero-copy h1,
  .services-page .page-hero-copy > p {
    margin-inline: auto;
  }

  .services-page .page-hero-copy .hero-actions {
    justify-content: center;
  }

  .services-page .page-hero-visual {
    min-height: 350px;
  }

  .services-page .page-hero-image {
    height: 340px;
  }

  .services-page .domain-grid {
    grid-template-columns: 1fr;
  }

  .services-page .domain-column,
  .services-page .domain-column:first-child,
  .services-page .domain-column:last-child {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid #c6d5e3;
  }

  .services-page .domain-column:last-child {
    border-bottom: 0;
  }
}

/* ---------- Phone ---------- */

@media (max-width: 768px) {
  .services-page .services-catalogue {
    padding-bottom: 48px;
  }

  .services-page .services-page-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .services-page .service-card-large {
    min-height: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 16px;
    row-gap: 5px;
    padding: 19px;
    text-align: left;
  }

  .services-page .service-card-large .icon-badge {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    margin: 0;
    border-radius: 17px;
  }

  .services-page .service-card-large .icon-badge svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;
  }

  .services-page .service-card-large h2,
  .services-page .service-card-large p,
  .services-page .service-card-large > a {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .services-page .service-card-large h2 {
    min-height: 0;
    margin: 0;
    font-size: 1rem;
  }

  .services-page .service-card-large p {
    margin: 0;
    font-size: 0.79rem;
  }

  .services-page .service-card-large > a {
    margin-top: 5px;
  }

  .services-page .difference-grid {
    grid-template-columns: 1fr;
  }

  .services-page .difference-card,
  .services-page .difference-card:nth-child(3) {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .services-page .difference-card:last-child {
    border-bottom: 0;
  }

  .services-page .services-process-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .services-page .services-process-list .process-item:last-child {
    grid-column: auto;
  }

  .services-page .services-bottom-cta {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-inline: 0;
    padding: 23px 19px;
    text-align: center;
  }

  .services-page .cta-symbol {
    margin-inline: auto;
  }

  .services-page .services-bottom-actions {
    grid-column: auto;
    width: 100%;
    flex-direction: column;
    padding-left: 0;
  }

  .services-page .services-bottom-actions .button {
    width: 100%;
  }

  .contact-page .contact-main-section {
    padding-top: 10px;
  }

  .contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-page .contact-info-column {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-page .contact-info-card,
  .contact-page .contact-info-card-action {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    margin-top: 0 !important;
    padding: 15px;
  }

  .contact-page .contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .contact-page .contact-info-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .contact-page .contact-form-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    border-radius: 10px;
  }

  .contact-page .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-page .form-field-full {
    grid-column: auto;
  }

  .contact-page .form-field input,
  .contact-page .form-field select,
  .contact-page .form-field textarea {
    min-width: 0;
    max-width: 100%;
    font-size: 16px;
  }

  .contact-page .form-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .contact-page .contact-submit-button {
    width: 100%;
    min-width: 0;
  }

  .contact-page .form-submit-note {
    max-width: none;
    text-align: center;
  }

  .contact-page .contact-form-status-actions {
    flex-direction: column;
  }

  .contact-page .contact-form-status-actions .button {
    width: 100%;
  }

  .contact-page .contact-benefits-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-page .contact-benefit-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }

  .contact-page .contact-benefit-icon {
    width: 48px;
    height: 48px;
  }

  .contact-page .contact-faq-layout,
  .contact-page .contact-location-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-page .contact-faq-art {
    display: none;
  }

  .contact-page .contact-map-card {
    width: 100%;
    min-height: 180px;
  }

  .contact-page .map-pin-card {
    width: min(235px, calc(100% - 28px));
    min-width: 0;
  }

  .contact-page .contact-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 16px;
    text-align: center;
  }

  .contact-page .contact-final-city {
    width: 180px;
    margin-inline: auto;
  }

  .contact-page .contact-final-actions {
    grid-column: auto;
    width: 100%;
    flex-direction: column;
  }

  .contact-page .contact-final-actions .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .services-page .page-hero-copy h1 {
    font-size: clamp(2.05rem, 11.5vw, 3.2rem);
  }

  .services-page .page-hero-copy .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-page .page-hero-copy .button {
    width: 100%;
  }

  .services-page .page-hero-visual {
    min-height: 270px;
  }

  .services-page .page-hero-image {
    height: 260px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 5% 72%, 0 48%);
  }

  .services-page .page-shape-one {
    width: 70px;
    height: 94px;
  }

  .services-page .page-shape-two {
    width: 80px;
    height: 180px;
  }

  .contact-page .contact-hero-trust {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .contact-page .contact-hero {
    padding-bottom: 8px;
  }

  .contact-page .contact-hero-copy {
    padding-bottom: 8px;
  }

  .contact-page .contact-hero-visual {
    min-height: 205px;
  }

  .contact-page .contact-hero-image {
    height: 200px;
  }

  .contact-page .contact-shape-three,
  .services-page .page-shape-two {
    display: none;
  }

  .contact-page .contact-info-card a,
  .contact-page .contact-info-card strong {
    font-size: 0.9rem;
  }
}

/* ---------- RTL fixes for the new responsive rules ---------- */

html[dir="rtl"] .services-page .service-card-large,
html[dir="rtl"] .services-page .service-card-large h2,
html[dir="rtl"] .services-page .service-card-large p,
html[dir="rtl"] .services-page .service-card-large > a {
  text-align: right;
}

html[dir="rtl"] .services-page .check-list li {
  padding-right: 25px;
  padding-left: 0;
}

html[dir="rtl"] .services-page .check-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .services-page .services-bottom-actions {
  padding-right: 76px;
  padding-left: 0;
}

html[dir="rtl"] .contact-form-status-actions {
  direction: rtl;
}

@media (max-width: 768px) {
  html[dir="rtl"] .services-page .services-bottom-actions {
    padding-right: 0;
  }
}

/* FINAL NAVBAR + SERVICE MODALS */
.primary-nav {
  gap: 26px;
}

.primary-nav .language-toggle {
  margin-left: 4px;
}

.service-details-button {
  margin-top: auto;
  padding: 0;
  color: var(--cyan-600);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.service-details-button:hover {
  color: var(--navy-800);
}

.service-details-button:focus-visible {
  outline: 3px solid rgba(11, 184, 199, 0.3);
  outline-offset: 4px;
  border-radius: 4px;
}

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 28, 66, 0.72);
  backdrop-filter: blur(4px);
}

.service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: min(82vh, 680px);
  overflow-y: auto;
  padding: 34px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(3, 28, 66, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
  outline: none;
}

.service-modal.open .service-modal-dialog {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-dialog h2 {
  margin: 8px 34px 14px 0;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 3.8vw, 2.3rem);
  line-height: 1.18;
}

.service-modal-dialog > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.service-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 22px;
  padding: 15px 17px;
  color: var(--navy-900);
  background: var(--surface-soft);
  border-left: 4px solid var(--cyan-500);
  border-radius: 8px;
}

.service-modal-contact span {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 0.84rem;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-whatsapp {
  color: #fff;
  background: #128c4a;
  box-shadow: 0 10px 22px rgba(18, 140, 74, 0.18);
}

.button-whatsapp:hover {
  background: #0f7a40;
}

html[dir="rtl"] .primary-nav .language-toggle {
  margin-right: 4px;
  margin-left: 0;
}

.service-modal[dir="rtl"] .service-modal-close {
  right: auto;
  left: 15px;
}

.service-modal[dir="rtl"] .service-modal-dialog h2 {
  margin-right: 0;
  margin-left: 34px;
}

.service-modal[dir="rtl"] .service-modal-contact {
  border-right: 4px solid var(--cyan-500);
  border-left: 0;
}

@media (max-width: 900px) {
  .primary-nav {
    gap: 0;
  }

  .primary-nav .language-toggle {
    margin: 12px 0 0;
  }
}

@media (max-width: 680px) {
  .service-modal {
    align-items: end;
    padding: 0;
  }

  .service-modal-dialog {
    width: 100%;
    max-height: 88vh;
    padding: 28px 20px 22px;
    border-radius: 18px 18px 0 0;
  }

  .service-modal-actions {
    flex-direction: column;
  }

  .service-modal-actions .button {
    width: 100%;
  }

  .services-page .service-card-large .service-details-button {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  html[dir="rtl"] .services-page .service-card-large .service-details-button {
    justify-self: end;
    text-align: right;
  }
}
