:root {
  --dark: #0a4047;
  --primary: #54bd80;
  --secondary: #eda621;

  --bg: #f2f8f6;
  --surface: #ffffff;
  --surface-soft: #f5fbf8;
  --text: #10363d;
  --text-soft: #4f676d;
  --line: rgba(10, 64, 71, 0.16);
  --radius: 18px;
  --shadow: 0 20px 48px rgba(7, 43, 47, 0.14);
  --container: min(1200px, 84vw);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(800px 420px at 95% -5%, rgba(84, 189, 128, 0.25), transparent 66%),
    radial-gradient(650px 360px at 8% 6%, rgba(237, 166, 33, 0.2), transparent 62%),
    linear-gradient(180deg, #f9fcfb 0%, #edf6f3 44%, #f7fbf9 100%);
  line-height: 1.8;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 251, 248, 0.9));
  border-top: 1px solid rgba(10, 64, 71, 0.08);
  border-bottom: 1px solid rgba(10, 64, 71, 0.08);
}

.section-dark {
  background:
    radial-gradient(650px 380px at 10% -10%, rgba(84, 189, 128, 0.26), transparent 64%),
    linear-gradient(160deg, #0a4047, #0c5058);
  color: #eff7f4;
}

.section-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2,
.card h2,
.policy-main h2,
.remote-copy h2,
.partners-creative__head h2,
.contact-creative__copy h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.24;
}

.card h3,
.process-track__item h3,
.why-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 64, 71, 0.09);
}

.nav-wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand img {
  height: 35px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-menu a {
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 13px;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: var(--dark);
  background: rgba(84, 189, 128, 0.14);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  /*https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2200&q=80*/
  background: url("../img/header.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 47, 0.94) 0%, rgba(6, 42, 47, 0.8) 45%, rgba(6, 42, 47, 0.52) 100%),
    linear-gradient(150deg, rgba(84, 189, 128, 0.2), rgba(237, 166, 33, 0.15));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  padding: 88px 0 82px;
}

.hero-content {
  color: #ecf7f3;
  max-width: 760px;
}

.hero-kicker {
  margin: 0;
  font-size: 13px;
  color: #f7d58a;
  font-weight: 700;
}

.hero-content h1 {
  margin: 12px 0;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.18;
}

.hero-content p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  max-width: 680px;
  color: rgba(236, 247, 243, 0.95);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), #37a363);
  color: #073136;
}

.btn-light {
  color: #f1f9f5;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.quick-points {
  margin-top: -72px;
  padding: 0 0 20px;
  position: relative;
  z-index: 8;
}

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

.quick-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow: 0 10px 24px rgba(8, 49, 56, 0.08);
}

.quick-point__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(145deg, rgba(84, 189, 128, 0.35), rgba(237, 166, 33, 0.22));
  border: 1px solid rgba(10, 64, 71, 0.12);
}

.quick-point__icon svg {
  width: 22px;
  height: 22px;
}

.quick-point h3 {
  margin: 10px 0 6px;
  color: var(--dark);
  font-size: 19px;
}

.quick-point p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 16px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  direction: ltr;
}

.about-visual {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 460px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-copy {
  direction: rtl;
  text-align: right;
}

.about-copy h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(32px, 4.2vw, 48px);
}

.about-copy h3 {
  margin: 24px 0 8px;
  color: var(--dark);
  font-size: clamp(23px, 2.6vw, 30px);
}

.about-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}

.profile-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark), #0f5a64);
  color: #eef9f6;
  font-weight: 800;
  font-size: 14px;
}

.domains-section {
  padding-top: 84px;
}

.domains-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
}

.domains-head__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(145deg, rgba(84, 189, 128, 0.35), rgba(237, 166, 33, 0.28));
  border: 1px solid rgba(10, 64, 71, 0.1);
}

.domains-head__icon svg {
  width: 30px;
  height: 30px;
}

.domains-lead {
  margin: 10px 0 0;
  color: var(--text-soft);
  max-width: 780px;
}

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

.domain-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(8, 49, 56, 0.08);
}

.domain-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(140deg, rgba(84, 189, 128, 0.3), rgba(237, 166, 33, 0.22));
  border: 1px solid rgba(10, 64, 71, 0.1);
}

.domain-feature__icon svg {
  width: 24px;
  height: 24px;
}

.domain-feature h3 {
  margin: 12px 0 8px;
  color: var(--dark);
  font-size: 23px;
}

.domain-feature p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-showcase--reverse {
  direction: ltr;
}

.split-showcase--reverse .split-showcase__content {
  direction: rtl;
  text-align: right;
}

.split-showcase__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-showcase__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.split-showcase__content h2 {
  margin: 8px 0 0;
  color: var(--dark);
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.26;
}

.clean-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.clean-list li {
  position: relative;
  border-bottom: 1px solid rgba(10, 64, 71, 0.15);
  padding: 0 0 11px;
  color: #1d4e56;
  font-size: 17px;
}

.clean-list--check li {
  padding-right: 26px;
}

.clean-list--check li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
}

.bullet-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 11px 13px;
  color: #1f4d55;
  font-weight: 700;
}

.bullet-list.checked li {
  padding-right: 35px;
}

.bullet-list.checked li::before {
  content: "✓";
  position: absolute;
  right: 12px;
  top: 11px;
  color: var(--primary);
  font-weight: 900;
}

.wide-image-section {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.wide-image-section img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 38px min(4vw, 56px);
  background: linear-gradient(180deg, transparent 0%, rgba(7, 34, 38, 0.86) 74%);
}

.image-caption h2 {
  margin: 0;
  color: #f2faf8;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.25;
  max-width: 900px;
}

.section-dark .section-label {
  color: var(--secondary);
}

.section-dark .section-head h2 {
  color: #eff8f4;
}

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

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.why-card h3 {
  color: #f4fbf8;
  margin-bottom: 8px;
}

.why-card p {
  margin: 0;
  color: rgba(232, 246, 241, 0.92);
}

.process-hero {
  position: relative;
  margin: 0 0 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.process-hero figcaption {
  position: absolute;
  inset: auto 16px 16px 16px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(8, 54, 60, 0.72);
  color: #eefaf6;
  font-size: 14px;
}

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

.process-track__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(8, 49, 56, 0.09);
}

.process-track__num {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(145deg, var(--dark), #0e5a63);
  color: #eff8f5;
  margin-bottom: 10px;
}

.process-track__item p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.policy-creative__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.policy-main {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(380px 200px at 100% 0%, rgba(84, 189, 128, 0.22), transparent 70%),
    #ffffff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.policy-main p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.policy-main__badge {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(10, 64, 71, 0.28);
  background: rgba(84, 189, 128, 0.12);
  color: #1d4f57;
  font-weight: 700;
  font-size: 14px;
}

.policy-side {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-side img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.policy-side ul {
  list-style: none;
  margin: 0;
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.policy-side li {
  position: relative;
  padding-right: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.policy-side li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.remote-creative__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.remote-stack {
  position: relative;
  margin: 0;
  min-height: 430px;
}

.remote-stack__main {
  width: 86%;
  height: 390px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.remote-stack__sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(8, 49, 56, 0.18);
}

.remote-copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.remote-copy__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.remote-chip {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 12px;
  color: #1f5158;
  font-weight: 700;
  font-size: 14px;
}

.partners-creative {
  background:
    radial-gradient(580px 280px at 4% 0%, rgba(84, 189, 128, 0.18), transparent 72%),
    radial-gradient(580px 280px at 96% 100%, rgba(237, 166, 33, 0.18), transparent 72%);
}

.partners-creative__head p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--text-soft);
}

.partners-creative__board {
  margin-top: 18px;
  /* border: 1px solid var(--line); */
  border-radius: 20px;
  /* background: #fff; */
  /* box-shadow: var(--shadow); */
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.partner-orb {
  min-height: 98px;
  border-radius: 14px;
  /* border: 1px solid rgba(10, 64, 71, 0.12); */
  /* background: linear-gradient(160deg, #ffffff, #f7fcfa); */
  display: grid;
  place-items: center; padding:20px;
}

.partner-orb img {
  width: 100%;
  max-height: 80%;
  object-fit: cover;
  border-radius: 15px !important;
}

.partner-orb span {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 700;
}

.contact-creative {
  background: linear-gradient(180deg, rgba(84, 189, 128, 0.12), rgba(84, 189, 128, 0.02));
}

.contact-creative__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-creative__copy {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}

.contact-creative__copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.contact-creative__items {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.contact-creative__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface-soft);
  display: grid;
  gap: 3px;
}

.contact-creative__item strong {
  color: var(--dark);
  font-size: 14px;
  direction:rtl !important;
}

.contact-creative__item span {
  color: #19535b;
  font-weight: 700;
  font-size:18px !important;
  direction: ltr;
}

.contact-creative__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-creative__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.contact-form-wrap {
  margin-top: 20px;
}

.contact-form {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.contact-form__head h3 {
  margin: 8px 0 0;
  color: var(--dark);
  font-size: clamp(22px, 2.3vw, 30px);
}

.contact-form__head p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.contact-form__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.field span {
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(10, 64, 71, 0.2);
  background: #ffffff;
  padding: 12px 13px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(84, 189, 128, 0.2);
}

.contact-form__actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form__actions .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-form__note {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.contact-form__note.is-success {
  color: #13693f;
}

.contact-form__note.is-error {
  color: #9a2f2f;
}

.lang-en .about-copy {
  direction: ltr;
  text-align: left;
}

.lang-en .split-showcase--reverse .split-showcase__content {
  direction: ltr;
  text-align: left;
}

.lang-en .clean-list--check li {
  padding-left: 26px;
  padding-right: 0;
}

.lang-en .clean-list--check li::before {
  left: 0;
  right: auto;
}

.lang-en .policy-side li {
  padding-left: 18px;
  padding-right: 0;
}

.lang-en .policy-side li::before {
  left: 0;
  right: auto;
}

.lang-en .remote-stack__sub {
  left: auto;
  right: 0;
}

.lang-en .contact-creative__item strong {
  direction: ltr !important;
}

.site-footer {
  background: #fbfefd;
  border-top: 1px solid rgba(10, 64, 71, 0.1);
}

.footer-wrap {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-wrap img {
  height: 28px;
}

.footer-wrap p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

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

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

@media (max-width: 1150px) {
  .quick-points__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .about-layout,
  .policy-creative__grid,
  .remote-creative__grid,
  .contact-creative__layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .nav-wrap {
    justify-content: space-between;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) - 2px);
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 64, 71, 0.1);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .lang-switch {
    margin-inline-start: auto;
  }

  .hero,
  .hero-grid,
  .contact-creative__layout,
  .policy-creative__grid,
  .remote-creative__grid,
  .about-layout,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 62px 0;
  }

  .about-layout {
    direction: rtl;
    gap: 24px;
  }

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

  .about-visual img {
    min-height: 360px;
  }

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

  .quick-points {
    margin-top: -56px;
  }

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

  .process-hero img,
  .remote-stack__main,
  .contact-creative__media img,
  .policy-side img {
    height: 340px;
  }

  .remote-stack {
    min-height: 360px;
  }

  .remote-stack__sub {
    height: 150px;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .quick-points__grid {
    grid-template-columns: 1fr;
  }

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

  .process-track {
    grid-template-columns: 1fr;
  }

  .domains-features {
    grid-template-columns: 1fr;
  }

  .domains-head {
    grid-template-columns: 1fr;
  }

  .split-showcase--reverse {
    direction: rtl;
  }

  .split-showcase__media img {
    height: 340px;
  }

  .wide-image-section,
  .wide-image-section img {
    min-height: 320px;
    height: 320px;
  }

  .image-caption {
    padding: 22px;
  }

  .image-caption h2 {
    font-size: 24px;
  }

  .contact-creative__media img {
    min-height: 280px;
  }

  .remote-copy__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 16px;
  }

  .contact-form__actions {
    align-items: flex-start;
  }
}
