:root {
  --v2-lime: #c4d92e;
  --v2-lime-d: #b3c728;
  --v2-lime-ink: #2f3a12;
  --v2-navy: #142244;
  --v2-navy-2: #1c2b4f;
  --v2-ink: #0f1c34;
  --v2-head: #142244;
  --v2-mid: #4a5568;
  --v2-muted: #6b7482;
  --v2-red: #e31e2d;
  --v2-line: #e6e9ed;
  --v2-bg: #f1f3f5;
  --v2-off: #f7f9fa;
  --v2-white: #fff;
  --v2-max: 1320px;
  --v2-pad: clamp(16px, 1.8vw, 28px);
  /* For wrappers that carry their own horizontal padding (header, tabs, hero).
     Sections give .v2-container a bare 1320px content box; these need the pad
     added on top or their content ends up 2×pad narrower and misaligned. */
  --v2-max-pad: calc(var(--v2-max) + var(--v2-pad) * 2);
  --v2-radius: 14px;
  --v2-ff: Poppins, "Cairo", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.v2-body {
  margin: 0;
  background: var(--v2-bg);
  color: var(--v2-ink);
  font-family: var(--v2-ff);
  -webkit-font-smoothing: antialiased;
}

.v2-skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.v2-skip:focus {
  left: 12px;
  z-index: 400;
  background: #fff;
  padding: 8px 12px;
}

a { color: var(--v2-ink); text-decoration: none; }
a:hover { color: var(--v2-lime); }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
.v2-wrap { background: var(--v2-bg); color: var(--v2-ink); }

.v2-container {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.v2-eye {
  display: inline-block;
  background: var(--v2-lime);
  color: var(--v2-ink);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: 999px;
}
.v2-h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--v2-head);
  margin: 22px 0 0;
}
.v2-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--v2-mid);
  margin: 16px 0 0;
}
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}
.v2-btn-lime {
  background: var(--v2-lime);
  color: var(--v2-ink);
}
.v2-btn-lime:hover { background: var(--v2-lime-d); color: var(--v2-ink); }
.v2-btn-navy {
  background: var(--v2-navy);
  color: #fff;
}
.v2-btn-navy:hover { color: var(--v2-lime); }
.v2-btn-ghost {
  border: 1px solid var(--v2-navy);
  color: var(--v2-navy);
  background: transparent;
}
.v2-btn-ghost:hover { background: var(--v2-navy); color: #fff; }
.v2-btn-line {
  border: 1px solid #dfe3e8;
  color: var(--v2-navy);
  background: #fff;
}
.v2-btn-line:hover { border-color: var(--v2-navy); color: var(--v2-navy); }

/* WhatsApp float */
.v2-wa-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(9,20,12,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-wa-float:hover { background: #1eb457; }
html[dir=rtl] .v2-wa-float { right: auto; left: 22px; }

/* Header */
.v2-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 #edf0f3;
}
.v2-topbar {
  background: #f4f6f8;
  color: var(--v2-mid);
  border-bottom: 1px solid var(--v2-line);
  position: relative;
  z-index: 5;
}
.v2-topbar-inner {
  max-width: var(--v2-max-pad);
  margin: 0 auto;
  padding: 8px var(--v2-pad);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}
.v2-topbar a { color: var(--v2-mid); display: flex; align-items: center; gap: 8px; }
.v2-topbar a:hover { color: #7f9200; }
.v2-topbar-note { color: #7c8598; }
.v2-lang { position: relative; margin-inline-start: auto; z-index: 6; }
.v2-flag { border-radius: 2px; flex-shrink: 0; display: block; overflow: hidden; }
.v2-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #1f2b45;
  cursor: pointer;
  white-space: nowrap;
}
.v2-lang-btn:hover { color: #7f9200; }
/* Invisible bridge across the 6px gap below the trigger, so moving the pointer
   down to the panel never leaves .v2-lang and fires mouseleave. */
.v2-lang::after {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline: 0;
  height: 8px;
}
.v2-lang-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 168px;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15,28,52,0.24);
  padding: 6px;
  z-index: 80;
  gap: 2px;
}
.v2-lang.is-open .v2-lang-drop,
.v2-lang:hover .v2-lang-drop { display: grid; }
.v2-lang-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2b45;
  text-align: start;
}
.v2-lang-drop a:hover { background: #f4f6f8; color: #1f2b45; }

.v2-nav-row {
  max-width: var(--v2-max-pad);
  margin: 0 auto;
  padding: 16px var(--v2-pad);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.v2-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.v2-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--v2-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-logo-mark span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 6px solid #fff;
  display: block;
}
.v2-logo-title {
  display: block;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  line-height: 1.1;
  white-space: nowrap;
}
.v2-logo-sub {
  display: block;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--v2-mid);
  margin-top: 2px;
}
.v2-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  margin-inline-start: 18px;
}
.v2-nav a {
  white-space: nowrap;
  padding-bottom: 5px;
  font-weight: 500;
  color: #1f2b45;
  border-bottom: 2.5px solid transparent;
}
.v2-nav a:hover { color: var(--v2-red); }
.v2-nav a.is-active {
  font-weight: 600;
  color: var(--v2-red);
  border-bottom-color: var(--v2-red);
}
.v2-nav-end {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline-start: auto;
  flex-shrink: 0;
}
.v2-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #d7dbe2;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.v2-cta {
  background: var(--v2-lime);
  border: 0;
  color: var(--v2-ink);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
}
.v2-cta:hover { background: var(--v2-lime-d); color: var(--v2-ink); }

.v2-mobile {
  display: none;
  border-top: 1px solid #edf0f3;
  background: #fff;
  padding: 12px var(--v2-pad) 20px;
}
.v2-header.is-mobile-open .v2-mobile { display: grid; gap: 2px; }
.v2-mobile a {
  display: block;
  padding: 13px 4px;
  font-size: 16px;
  border-bottom: 1px solid #f4f6f8;
  color: #1f2b45;
}
.v2-mobile a.is-active { color: var(--v2-red); font-weight: 600; }
.v2-mobile-langs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.v2-mobile-langs a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: #fff;
  font-size: 14.5px;
  color: #1f2b45;
  border-bottom: 1px solid #dfe3e8;
}
.v2-mobile-langs a:hover { color: #1f2b45; background: #f4f6f8; }

.v2-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  justify-content: center;
  padding: 14px 24px 0;
  margin-top: -14px;
}
.v2-header.is-mega-open .v2-mega { display: flex; }
.v2-mega-inner {
  width: 100%;
  max-width: min(800px, calc(100vw - 32px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15,28,52,0.18);
  border: 1px solid #edf0f3;
  overflow: hidden;
}
.v2-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 22px 28px;
  padding: 26px 28px;
}
.v2-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.v2-mega-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef7c6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-mega-copy { min-width: 0; }
.v2-mega-item strong { display: block; font-size: 15.5px; color: var(--v2-ink); line-height: 1.3; }
.v2-mega-copy span { display: block; font-size: 13px; color: var(--v2-muted); margin-top: 4px; line-height: 1.45; }
.v2-mega-locs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-top: 1px solid #edf0f3;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8c95a3;
}
.v2-chip {
  border: 1px solid #e4e8ed;
  color: var(--v2-mid);
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
}
.v2-chip:hover { border-color: var(--v2-navy); color: var(--v2-navy); }
.v2-chip-lime { background: #f4f9d6; color: #5f7300; border: 0; font-weight: 600; }

/* Hero — Oman Website Design Homepage.dc.html */
.v2-hero { padding: 28px 0 0; position: relative; overflow: visible; }
.v2-hero > .v2-container,
.v2-strip > .v2-container {
  max-width: var(--v2-max-pad);
  padding-left: var(--v2-pad);
  padding-right: var(--v2-pad);
  overflow: visible;
}
.v2-hero-frame { position: relative; overflow: visible; }
.v2-hero-card {
  position: relative;
  height: 520px;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1424;
}
.v2-home .v2-hero-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.v2-home .v2-hero-card img.is-on { opacity: 1; z-index: 2; }
.v2-hero-grad {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11,20,36,0.93) 0%, rgba(11,20,36,0.74) 46%, rgba(11,20,36,0.18) 100%);
}
html[dir=rtl] .v2-hero-grad {
  background: linear-gradient(270deg, rgba(11,20,36,0.93) 0%, rgba(11,20,36,0.74) 46%, rgba(11,20,36,0.18) 100%);
}
.v2-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: clamp(30px, 4vw, 58px) clamp(24px, 3.6vw, 54px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: start;
  max-width: 660px;
  pointer-events: none;
}
.v2-hero-badge {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--v2-ink);
  background: var(--v2-lime);
  padding: 7px 15px;
  border-radius: 999px;
}
.v2-hero-copy h1 {
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 22px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}
.v2-hero-text {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: #d3d8e2;
  margin: 18px 0 0;
  max-width: 460px;
}
.v2-hero-actions {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.v2-hero-actions .v2-btn-lime {
  font-size: 15.5px;
  padding: 16px 28px;
  border-radius: 6px;
  pointer-events: auto;
}
/* The design renders this as an <a> with only a bottom border. The template uses
   a <button> so it can open the quote modal, so the UA button defaults — border
   on all four sides, padding, and its own font — have to be reset explicitly. */
.v2-hero-sec {
  font-family: inherit;
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
  border: 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.45);
  padding: 0 0 3px;
  pointer-events: auto;
  background: none;
  cursor: pointer;
}
.v2-hero-sec:hover { color: var(--v2-lime); border-color: var(--v2-lime); }
.v2-hero-progress {
  position: absolute;
  z-index: 5;
  inset-inline-end: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.v2-hero-progress b { font-size: 15px; color: #fff; }
.v2-hero-bar {
  display: block;
  width: 130px;
  height: 3px;
  background: rgba(255,255,255,0.28);
  position: relative;
}
.v2-hero-bar i {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  background: var(--v2-lime);
  width: 33%;
  transition: width .35s ease;
}
.v2-hero-progress em { font-style: normal; font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.55); }
.v2-slide-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 0;
  box-shadow: 0 8px 22px rgba(6,12,26,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  pointer-events: auto;
}
.v2-slide-arrow:hover { background: var(--v2-lime); }
.v2-home .v2-arrow-prev {
  left: 0;
  right: auto;
  transform: translate(calc(-100% - 18px), -50%);
}
.v2-home .v2-arrow-next {
  right: 0;
  left: auto;
  transform: translate(calc(100% + 18px), -50%);
}
html[dir=rtl] .v2-home .v2-arrow-prev {
  left: auto;
  right: 0;
  transform: translate(calc(100% + 18px), -50%);
}
html[dir=rtl] .v2-home .v2-arrow-next {
  right: auto;
  left: 0;
  transform: translate(calc(-100% - 18px), -50%);
}
.v2-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.v2-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c9ced6;
  cursor: pointer;
}
.v2-dots button.is-on { width: 34px; background: var(--v2-lime); }

.v2-strip { margin-top: 42px; background: var(--v2-lime); }
.v2-strip-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
  padding: 14px clamp(14px, 2vw, 32px) 0;
  flex-wrap: wrap;
}
.v2-strip-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 12px;
  flex: 1 1 auto;
  text-align: center;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 19px);
  color: var(--v2-ink);
}

/* Tabs */
.v2-tabs {
  background: #fff;
  border-bottom: 1px solid var(--v2-line);
}
.v2-tabs-inner {
  max-width: var(--v2-max-pad);
  margin: 0 auto;
  padding: 18px var(--v2-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
}
.v2-tabs a {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px 8px;
  color: var(--v2-mid);
  border-bottom: 2.5px solid transparent;
}
.v2-tabs a:first-child,
.v2-tabs a.is-on {
  font-weight: 600;
  color: var(--v2-navy);
  border-bottom-color: var(--v2-lime);
}
.v2-tabs a:hover { color: #7c9c00; }

/* Sections */
.v2-sec { padding: 80px var(--v2-pad) 90px; }
.v2-sec-head { text-align: center; max-width: 840px; margin: 0 auto 46px; }
.v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(248px, 100%), 1fr));
  gap: 22px;
}
.v2-card {
  background: #fff;
  border-radius: var(--v2-radius);
  box-shadow: 0 2px 14px rgba(15,28,52,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v2-card:hover { box-shadow: 0 12px 32px rgba(15,28,52,0.15); }
.v2-card-img { height: 150px; background: #eef1f4; overflow: hidden; }
.v2-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-card-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.v2-card h3 { font-weight: 700; font-size: 19px; color: var(--v2-head); margin: 0; }
.v2-card p { font-size: 14.5px; line-height: 1.62; color: #5b6577; margin: 12px 0 20px; }
.v2-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--v2-navy);
}
.v2-more:hover { color: #7c9c00; }
.v2-lead-card {
  background: var(--v2-lime);
  border-radius: var(--v2-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.v2-lead-card h3 { font-weight: 700; font-size: 23px; line-height: 1.24; color: var(--v2-head); margin: 0; }
.v2-lead-card p { font-size: 14.5px; line-height: 1.6; color: #3f4a1b; margin: 12px 0 20px; }
.v2-lead-card input {
  height: 46px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  padding: 0 16px;
  font-size: 14.5px;
  color: var(--v2-head);
  width: 100%;
}
.v2-lead-card .v2-btn { height: 48px; width: 100%; margin-top: 12px; }

/* Locations */
.v2-locs { background: var(--v2-off); }
.v2-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.v2-loc {
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: var(--v2-radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.v2-loc:hover { border-color: var(--v2-lime); }
.v2-loc-tag {
  align-self: flex-start;
  background: var(--v2-lime);
  color: var(--v2-lime-ink);
  font-weight: 500;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
}
.v2-loc h3 { font-weight: 700; font-size: 21px; color: var(--v2-head); margin: 18px 0 0; }
.v2-loc p { font-size: 14.5px; line-height: 1.65; color: #5b6577; margin: 14px 0 20px; }
.v2-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.v2-more-center { text-align: center; margin-top: 44px; }
.v2-more-center a { font-size: 14.5px; color: #a9c02a; font-weight: 500; }

/* About */
.v2-about { background: #fff; padding: 90px var(--v2-pad); }
.v2-about-grid {
  max-width: var(--v2-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.v2-about-photo {
  border-radius: var(--v2-radius);
  overflow: hidden;
  height: 430px;
  background: #eef1f4;
}
.v2-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-about-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.v2-about-actions a { font-weight: 600; font-size: 15.5px; padding: 15px 28px; border-radius: 8px; }

/* Stats */
.v2-stats { background: var(--v2-navy-2); padding: 68px var(--v2-pad); }
.v2-stats-grid {
  max-width: var(--v2-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
/* Divider colour is per-item data, as in the design source:
   border-left: 1px solid {{ st.divider }} — default is no line. */
.v2-stat { padding: 0 clamp(16px, 2vw, 34px); border-inline-start: 1px solid transparent; }
.v2-stat b {
  display: block;
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  color: var(--v2-lime);
  line-height: 1.05;
}
.v2-stat span { display: block; font-size: 15px; color: #e6e9f0; margin-top: 14px; }

/* Work */
.v2-work { background: #fff; }
.v2-work-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.v2-filters { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-filters button {
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid #dfe3e8;
  background: #fff;
  color: #1f2b45;
  font-weight: 500;
}
.v2-filters button.is-on {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
  font-weight: 600;
}
.v2-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.v2-proj {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f4;
}
.v2-proj img { width: 100%; height: 100%; object-fit: cover; }
.v2-proj-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,28,0.86) 0%, rgba(8,14,28,0.34) 38%, rgba(8,14,28,0) 66%);
}
.v2-proj-meta { position: absolute; left: 18px; right: 18px; bottom: 18px; }
.v2-proj-tag {
  display: inline-block;
  font-weight: 600;
  font-size: 12.5px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--v2-lime);
  color: var(--v2-lime-ink);
}
.v2-proj-tag.is-red { background: var(--v2-red); color: #fff; }
.v2-proj-meta strong { display: block; font-size: 19px; color: #fff; margin-top: 12px; }
.v2-proj-meta em {
  display: flex;
  align-items: center;
  gap: 7px;
  font-style: normal;
  font-size: 13.5px;
  color: #dfe3ea;
  margin-top: 7px;
}

/* Process */
.v2-process { background: var(--v2-navy-2); }
.v2-process .v2-h2,
.v2-process .v2-sec-head { color: #fff; }
.v2-process .v2-lead { color: #b9c1d2; }
.v2-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 78px 62px;
}
.v2-step {
  position: relative;
  background: #22315a;
  border: 1px solid #2e3f68;
  border-radius: 16px;
  padding: 30px 26px 34px;
}
.v2-step-num {
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--v2-lime);
}
.v2-step-ico { margin: 30px 0 16px; color: var(--v2-red); display: flex; align-items: center; }
.v2-step-ico.is-mute { color: #8f9fc4; }
.v2-step h3 { font-weight: 700; font-size: 19px; color: #fff; margin: 0; }
.v2-step p { font-size: 14.5px; line-height: 1.68; color: #a9b2c6; margin: 14px 0 0; }

/* Connectors between step cards (design: dot–dash–dot + arrow, last card has none) */
.v2-step-dash {
  position: absolute;
  inset-inline-end: -36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
}
.v2-step-dash i { width: 6px; height: 6px; border-radius: 50%; background: var(--v2-lime); display: block; }
.v2-step-dash s { width: 12px; height: 1px; border-top: 1px dashed #6f7c9c; display: block; }
.v2-step-arrow {
  position: absolute;
  inset-inline-end: -40px;
  bottom: -18px;
  color: var(--v2-lime);
  display: flex;
}
[dir="rtl"] .v2-step-arrow svg { transform: scaleX(-1); }
@media (max-width: 1080px) {
  .v2-step-dash, .v2-step-arrow { display: none; }
}

/* Pricing */
.v2-price { background: #fff; }
.v2-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 26px;
  align-items: center;
}
.v2-plan {
  background: #fff;
  border: 1px solid #eaeef2;
  border-radius: var(--v2-radius);
  box-shadow: 0 2px 16px rgba(15,28,52,0.07);
  padding: 32px 30px 34px;
}
.v2-plan.is-pop {
  position: relative;
  background: var(--v2-navy);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(15,28,52,0.24);
  padding: 40px 32px 36px;
}
.v2-pop {
  position: absolute;
  top: -15px;
  inset-inline-end: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--v2-lime);
  color: var(--v2-lime-ink);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
}
.v2-plan-eye { font-size: 13px; letter-spacing: 0.06em; color: var(--v2-muted); }
.v2-plan.is-pop .v2-plan-eye { color: #9aa5bd; }
.v2-plan-name { font-weight: 700; font-size: 22px; color: var(--v2-head); margin-top: 14px; }
.v2-plan.is-pop .v2-plan-name { color: #fff; }
.v2-plan-price { display: flex; align-items: baseline; gap: 10px; margin-top: 20px; }
.v2-plan-price span { font-size: 14px; color: var(--v2-muted); }
.v2-plan-price b { font-weight: 700; font-size: 46px; letter-spacing: -0.03em; color: var(--v2-head); line-height: 1; }
.v2-plan.is-pop .v2-plan-price span { color: #9aa5bd; }
.v2-plan.is-pop .v2-plan-price b { color: var(--v2-lime); font-size: 50px; }
.v2-plan-note { font-size: 14px; color: #9aa3b1; margin-top: 14px; }
.v2-plan-hr { height: 1px; background: #eaeef2; margin: 26px 0; }
.v2-plan.is-pop .v2-plan-hr { background: rgba(255,255,255,0.14); }
.v2-plan-list { display: grid; gap: 14px; }
.v2-plan-list div { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: #35415a; }
.v2-plan.is-pop .v2-plan-list div { color: #e4e8f0; }
.v2-plan .v2-btn { height: 50px; margin-top: 30px; width: 100%; }
.v2-plan.is-pop .v2-btn { height: 52px; }

/* Reviews */
.v2-reviews { background: var(--v2-off); }
.v2-rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
}
.v2-rev {
  background: #fff;
  border: 1px solid #eaeef2;
  border-radius: var(--v2-radius);
  box-shadow: 0 2px 14px rgba(15,28,52,0.06);
  padding: 28px 26px 26px;
  margin: 0;
}
.v2-rev-q { font-weight: 700; font-size: 30px; line-height: 0.7; color: var(--v2-red); }
.v2-stars { display: flex; gap: 5px; margin-top: 20px; }
.v2-rev blockquote { margin: 18px 0 0; font-size: 15px; line-height: 1.72; color: var(--v2-mid); }
.v2-rev figcaption { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.v2-rev figcaption strong { display: block; font-size: 15px; color: var(--v2-head); }
.v2-rev figcaption span { display: block; font-size: 13.5px; color: var(--v2-muted); margin-top: 3px; }
.v2-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--v2-navy);
  color: var(--v2-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* GCC */
.v2-gcc { background: var(--v2-navy-2); padding: 92px var(--v2-pad); text-align: center; }
.v2-gcc h2 { color: #fff; margin: 0; }
.v2-gcc h2 span { color: var(--v2-lime); }
.v2-gcc p { font-size: 16.5px; line-height: 1.7; color: #b9c1d2; margin: 20px 0 38px; }
.v2-gcc-flags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.v2-gcc-flags span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #dfe3ea;
}
.v2-gcc-flags span.is-on { background: var(--v2-red); border-color: var(--v2-red); color: #fff; }
.v2-gcc-flags i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-lime);
  display: block;
}
.v2-gcc-flags span.is-on i { background: #fff; }
.v2-gcc-foot { font-size: 15px; line-height: 1.75; color: #9aa5bd; margin: 42px 0 0; }

/* FAQ */
.v2-faq { background: #fff; }
.v2-faq-grid {
  max-width: var(--v2-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.v2-faq-photo { border-radius: 12px; overflow: hidden; height: 300px; background: #eef1f4; margin-top: 30px; }
.v2-faq-photo img { width: 100%; height: 100%; object-fit: cover; }
.v2-faq-item { border-bottom: 1px solid #eaeef2; padding: 22px 0; }
.v2-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: start;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--v2-head);
}
.v2-faq-sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #dfe3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--v2-mid);
}
.v2-faq-a { display: none; margin: 14px 0 0; font-size: 15px; line-height: 1.72; color: #5b6577; max-width: 620px; }
.v2-faq-item.is-open .v2-faq-a { display: block; }

/* Blog */
.v2-blog { background: var(--v2-off); }
.v2-blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.v2-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
}
.v2-blog-card {
  background: #fff;
  border: 1px solid #eaeef2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15,28,52,0.06);
  display: flex;
  flex-direction: column;
}
.v2-blog-card:hover { box-shadow: 0 12px 30px rgba(15,28,52,0.13); }
.v2-blog-img { height: 190px; background: #eef1f4; overflow: hidden; }
.v2-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-blog-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.v2-blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.v2-blog-tag { background: #f2f4f7; color: var(--v2-mid); font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.v2-blog-date { font-size: 13.5px; color: #8c95a3; }
.v2-blog-body h3 { font-weight: 700; font-size: 18.5px; line-height: 1.34; color: var(--v2-head); margin: 18px 0 0; }
.v2-blog-body p { font-size: 14.5px; line-height: 1.65; color: #5b6577; margin: 14px 0 22px; }
.v2-blog-body .v2-more:hover { color: var(--v2-red); }

/* Bottom CTA */
.v2-cta-band { padding: 100px var(--v2-pad); background: var(--v2-lime); text-align: center; }
.v2-cta-band h2 {
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--v2-head);
  margin: 0;
}
.v2-cta-band p { font-size: 17px; line-height: 1.65; color: #3f4a1b; margin: 20px 0 40px; }
.v2-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.v2-cta-actions .v2-btn { font-size: 16px; padding: 17px 34px; }

/* Footer */
.v2-footer { background: #16233f; padding: 64px var(--v2-pad) 0; color: #a3aec4; }
.v2-footer a { color: #a3aec4; }
.v2-footer a:hover { color: var(--v2-lime); }
.v2-flogo { display: flex; align-items: center; gap: 14px; }
.v2-flogo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--v2-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-flogo-mark span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 4.5px solid #fff;
  display: block;
}
.v2-flogo strong { display: block; font-size: 18px; color: #fff; letter-spacing: -0.01em; }
.v2-flogo em { display: block; font-style: normal; font-weight: 500; font-size: 10px; letter-spacing: 0.06em; color: #9aa5bd; margin-top: 2px; }
.v2-footer-about { font-size: 14.5px; line-height: 1.78; color: #a3aec4; margin: 22px 0 0; max-width: 660px; }
.v2-soc { display: flex; gap: 10px; margin-top: 26px; }
.v2-soc a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-soc a:hover { background: var(--v2-lime); }
.v2-fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 34px 30px;
  margin-top: 50px;
}
.v2-fcol h4 { font-weight: 700; font-size: 15.5px; color: #fff; margin: 0; }
.v2-fcol nav { display: grid; gap: 15px; margin-top: 20px; }
.v2-fcol a { font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.v2-fcol a img { border-radius: 2px; flex-shrink: 0; }
.v2-fareas { margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); }
.v2-flabel { font-size: 11.5px; letter-spacing: 0.1em; color: #8c96ad; }
.v2-area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.v2-area-chips a {
  border: 1px solid rgba(255,255,255,0.16);
  color: #a3aec4;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
}
.v2-area-chips a:hover { border-color: var(--v2-lime); color: var(--v2-lime); }
.v2-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 22px;
  margin-top: 16px;
}
.v2-offices strong { display: block; font-size: 14.5px; color: #fff; }
.v2-offices span { display: block; font-size: 13px; line-height: 1.6; color: #8c96ad; margin-top: 6px; }
.v2-parent { font-size: 13px; line-height: 1.6; color: #8c96ad; margin: 30px 0 0; }
.v2-parent a { color: var(--v2-lime); }
.v2-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13.5px;
  color: #8c96ad;
}
.v2-pay { display: flex; gap: 8px; }
.v2-pay span {
  background: rgba(255,255,255,0.1);
  color: #dfe3ea;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 4px;
}
.v2-pay .is-lime { color: var(--v2-lime); }

/* Quote modal */
.v2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15,26,48,0.55);
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 16px 24px;
  overflow-y: auto;
}
.v2-modal.is-open { display: flex; }
.v2-modal-card {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 12px;
  border-top: 4px solid var(--v2-lime);
  box-shadow: 0 30px 70px rgba(9,15,30,0.4);
  overflow: hidden;
}
.v2-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #f1f4f7;
}
.v2-modal-head strong { display: block; font-size: 23px; letter-spacing: -0.02em; color: var(--v2-head); }
.v2-modal-head span { display: block; font-size: 14px; color: var(--v2-muted); margin-top: 6px; }
.v2-modal-x {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #f1f4f7;
  cursor: pointer;
}
.v2-modal-body { padding: 22px 28px 24px; }
.v2-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 18px;
}
.v2-field { display: grid; gap: 8px; }
.v2-field span { font-size: 13.5px; font-weight: 500; color: #35415a; }
.v2-req { color: var(--v2-red); }
.v2-field input,
.v2-field select,
.v2-field textarea {
  height: 46px;
  border: 1px solid #e4e8ed;
  border-radius: 8px;
  background: #fafbfc;
  padding: 0 14px;
  font-size: 14px;
  color: var(--v2-head);
  width: 100%;
}
.v2-field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.v2-check { display: flex; align-items: center; gap: 11px; margin-top: 20px; font-size: 14px; color: #35415a; }
.v2-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  background: var(--v2-lime);
  color: var(--v2-head);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.v2-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--v2-muted);
}
.v2-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  background: var(--v2-off);
  border-top: 1px solid #f1f4f7;
  font-size: 13.5px;
  color: var(--v2-mid);
}

@media (max-width: 1320px) {
  .v2-nav, .v2-nav-end .v2-cta { display: none; }
  .v2-menu-btn { display: flex; }
}
@media (max-width: 1080px) {
  .v2-home .v2-hero-card { height: 460px; min-height: 460px; }
}
@media (max-width: 860px) {
  .v2-home .v2-hero-card { height: 470px; min-height: 470px; }
  .v2-home .v2-hero-copy { padding-bottom: 84px; }
  .v2-logo-title { font-size: 17px; }
}
@media (max-width: 760px) {
  .v2-home section:not(.v2-hero) { padding-top: 28px; padding-bottom: 30px; }
  .v2-footer { padding-top: 36px; }
  .v2-logo-sub { display: none; }
  .v2-topbar-note { display: none; }
  .v2-home .v2-hero-text { display: none; }
  .v2-home .v2-hero-card { height: 400px; min-height: 400px; }
  .v2-home .v2-slide-arrow { width: 40px; height: 40px; }
}
@media (max-width: 720px) {
  .v2-home .v2-hero-sec { display: none; }
  .v2-home .v2-arrow-prev { left: 14px; right: auto; transform: translateY(-50%); }
  .v2-home .v2-arrow-next { right: 14px; left: auto; transform: translateY(-50%); }
  html[dir=rtl] .v2-home .v2-arrow-prev { left: auto; right: 14px; transform: translateY(-50%); }
  html[dir=rtl] .v2-home .v2-arrow-next { right: auto; left: 14px; transform: translateY(-50%); }
}

/* Inner pages */
/* Single navy for every page hero — see also .v2-about-hero and .v2-svc-hero. */
.v2-page-hero {
  background: var(--v2-navy-2);
  padding: 62px var(--v2-pad) 70px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.v2-page-hero.is-photo {
  background-size: cover;
  background-position: center;
  text-align: start;
}
.v2-page-hero.is-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,24,48,.88) 0%, rgba(15,24,48,.55) 100%);
}
.v2-page-hero-inner { position: relative; z-index: 1; }
.v2-page-hero.is-split .v2-page-hero-inner,
.v2-page-hero.is-photo .v2-page-hero-inner {
  max-width: var(--v2-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  text-align: start;
}
.v2-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: #b9c1d2;
  margin-bottom: 18px;
}
.v2-page-hero.is-photo .v2-crumb,
.v2-page-hero.is-split .v2-crumb { justify-content: flex-start; }
/* Breathing room before the eye badge that follows the trail. */
.v2-crumb { margin-bottom: 16px; }
/* Heroes whose copy is left-aligned rather than centred. */
/* flex-start already follows writing direction, so RTL needs no override. */
.v2-about-hero .v2-crumb,
.v2-svc-hero .v2-crumb { justify-content: flex-start; }
.v2-crumb a { color: #d5dbe8; }
.v2-crumb a:hover { color: var(--v2-lime); }
.v2-crumb em { color: #fff; font-style: normal; font-weight: 600; }
.v2-page-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--v2-lime);
  color: var(--v2-lime);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .1em;
  padding: 7px 17px;
  border-radius: 999px;
}
.v2-page-hero h1 {
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.14;
  letter-spacing: -.03em;
  margin: 22px 0 0;
  color: #fff;
}
.v2-page-hero h1 span { color: var(--v2-lime); }
.v2-page-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #b9c1d2;
  margin: 18px auto 0;
  max-width: 680px;
}
.v2-page-hero.is-photo p,
.v2-page-hero.is-split p { margin-inline: 0; max-width: 560px; }
.v2-page-hero-media {
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1424;
}
.v2-page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.v2-split.is-rev { direction: rtl; }
.v2-split.is-rev > * { direction: ltr; }
html[dir=rtl] .v2-split.is-rev { direction: ltr; }
html[dir=rtl] .v2-split.is-rev > * { direction: rtl; }
.v2-split-img {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  background: #eef1f4;
}
.v2-split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.v2-contact-grid,
.v2-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.v2-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(15,28,52,.07);
  padding: 30px;
}
.v2-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(15,28,52,.06);
}
.v2-info b { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #6b7482; margin-bottom: 4px; }
.v2-info strong { font-size: 16px; color: var(--v2-navy); }
.v2-info span { display: block; font-size: 12px; color: var(--v2-mid); margin-top: 4px; }
.v2-form-card h2, .v2-form-card h3 { margin: 0; font-size: 22px; color: var(--v2-navy); }
.v2-form-card p { color: var(--v2-mid); margin: 8px 0 0; }
.v2-form { margin-top: 22px; display: grid; gap: 16px; }
/* Honeypot. Moved off-screen rather than display:none — some bots skip fields
   that are explicitly hidden, and screen readers get aria-hidden on the wrapper. */
.v2-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.v2-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.v2-field span, .v2-form label > span {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #35415a;
  margin-bottom: 8px;
}
.v2-form input, .v2-form select, .v2-form textarea {
  width: 100%;
  height: 44px;
  border: 1px solid #e2e6eb;
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--v2-navy);
}
.v2-form textarea { height: auto; padding: 12px 14px; min-height: 110px; resize: vertical; }
.v2-team-grid,
.v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 24px;
}
.v2-team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(15,28,52,.09);
  overflow: hidden;
}
.v2-team-card img { width: 100%; height: 240px; object-fit: cover; background: #eef1f4; }
.v2-team-card div { padding: 20px; }
.v2-team-card h3 { margin: 0; font-size: 17.5px; }
.v2-team-card em { display: block; font-style: normal; color: var(--v2-red); font-size: 14px; margin-top: 6px; }
.v2-team-card p { font-size: 13.5px; line-height: 1.6; color: var(--v2-mid); margin: 12px 0 0; }
.v2-values { background: #1c2b4f; padding: 84px var(--v2-pad) 96px; }
.v2-values .v2-h2, .v2-values .v2-lead { color: #fff; }
.v2-values .v2-lead { color: #b9c1d2; }
.v2-value {
  background: #22315a;
  border: 1px solid #2e3f68;
  border-radius: 12px;
  padding: 28px 24px;
}
.v2-value h3 { margin: 0; color: var(--v2-lime); font-size: 19px; }
.v2-value p { color: #a9b2c6; margin: 18px 0 0; line-height: 1.7; }
.v2-port-note {
  text-align: center;
  padding: 16px 22px;
  background: #f7f9fa;
  border-radius: 12px;
  border: 1px solid var(--v2-line);
  margin-bottom: 24px;
  color: var(--v2-mid);
}
.v2-blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15,28,52,.07);
  margin-bottom: 48px;
}
/* Direct child only — a descendant selector here also caught the author avatar
   nested in .v2-blog-feature-body and stretched it with the 280px min-height. */
.v2-blog-feature > img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.v2-blog-feature-body { padding: 36px 34px; display: flex; flex-direction: column; justify-content: center; }
.v2-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 280px;
  gap: 40px;
  align-items: start;
}
.v2-post-body { font-size: 16.5px; color: var(--v2-mid); line-height: 1.85; }
.v2-post-body h2 { font-size: 25px; color: var(--v2-navy); margin: 28px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--v2-line); }
.v2-post-body h3 { font-size: 19px; color: var(--v2-navy); margin: 24px 0 10px; }
.v2-post-body p { margin: 0 0 18px; }
.v2-post-body img { border-radius: 12px; margin: 24px 0; }
.v2-post-body img[style*="float"] {
  width: 36% !important;
  max-width: 36% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}
.v2-post-body img[style*="float:right"],
.v2-post-body img[style*="float: right"] { float: right !important; margin: 4px 0 28px 44px !important; }
.v2-post-body img[style*="float:left"],
.v2-post-body img[style*="float: left"] { float: left !important; margin: 4px 44px 28px 0 !important; }
.v2-post-body h2, .v2-post-body h3 { clear: both; }
.v2-form .v2-btn { display: inline-flex; align-items: center; justify-content: center; }
.v2-plan-list > div { padding: 6px 0; color: var(--v2-mid); font-size: 14px; }
.v2-side-card { background: #fff; border: 1px solid var(--v2-line); border-radius: 12px; padding: 22px; }
.v2-side-card h3 { margin: 0 0 14px; font-size: 16px; }
.v2-side-card a { display: block; padding: 10px 0; border-bottom: 1px solid var(--v2-line); font-weight: 600; }
.v2-side-card a:last-child { border: 0; }
.v2-center { min-height: 52vh; display: flex; align-items: center; justify-content: center; padding: 72px var(--v2-pad); text-align: center; }
.v2-center-card { max-width: 640px; }
.v2-center-card h1 { font-size: clamp(28px, 4.5vw, 44px); margin: 16px 0; }
.v2-center-card p { color: var(--v2-mid); line-height: 1.8; }
.v2-code { font-size: clamp(72px, 14vw, 112px); font-weight: 800; line-height: .85; color: #c4d92e; letter-spacing: -.05em; }
.v2-ok {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 36px rgba(34,197,94,.25);
}
.v2-steps-list { display: grid; gap: 14px; text-align: start; margin: 28px 0; }
.v2-step-row {
  display: flex; gap: 14px; padding: 16px 18px;
  background: #f7f9fa; border: 1px solid var(--v2-line); border-radius: 10px;
}
.v2-step-row b { color: var(--v2-red); min-width: 28px; }
.v2-rich { font-size: 16px; line-height: 1.8; color: var(--v2-mid); }
.v2-rich h2, .v2-rich h3 { color: var(--v2-navy); }
.v2-wrap .pricing-grid,
.v2-wrap .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.v2-wrap .price-card,
.v2-wrap .testi-card {
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  padding: 24px;
}
.v2-nf-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: start;
  margin: 28px 0;
}
.v2-nf-link {
  display: flex; gap: 12px; align-items: center;
  padding: 14px; background: #f7f9fa; border-radius: 12px;
}
.v2-nf-link strong { display: block; }
.v2-nf-link span { display: block; font-size: 12px; color: var(--v2-mid); }
.v2-loc-metric {
  position: absolute; right: 18px; bottom: 18px;
  max-width: 240px; background: #0b1424; border: 1px solid var(--v2-lime);
  border-radius: 10px; padding: 18px 20px; color: #cdd4e2;
}
html[dir=rtl] .v2-loc-metric { right: auto; left: 18px; }
.v2-loc-metric b { display: block; font-size: 21px; color: var(--v2-lime); }
.v2-clients {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  font-weight: 700; color: #9aa3b1; letter-spacing: .03em;
}
@media (max-width: 900px) {
  .v2-page-hero.is-split .v2-page-hero-inner,
  .v2-page-hero.is-photo .v2-page-hero-inner,
  .v2-split, .v2-contact-grid, .v2-two-col, .v2-blog-feature, .v2-post-layout, .v2-form-row, .v2-nf-links {
    grid-template-columns: 1fr;
  }
  .v2-page-hero.is-split, .v2-page-hero.is-photo { text-align: start; }
  .v2-svc-hero-grid, .v2-adv-grid, .v2-faq-split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .v2-wrap:not(.v2-home) main > section {
    padding-top: 28px;
    padding-bottom: 30px;
  }
}

/* Web development service page (design HTML) */
.v2-wrap.v2-svc-page { background: #fff; }
.v2-svc-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  flex-wrap: wrap;
  pointer-events: auto;
}
.v2-svc-page .v2-plan-list > div {
  padding: 0;
  color: inherit;
  font-size: 14px;
}
.v2-svc-page .v2-proj { height: 220px; }
.v2-svc-page .v2-phases .v2-h2,
.v2-svc-page .v2-adv .v2-h2 { color: #fff; }
.v2-svc-page .v2-phases .v2-lead { color: #b9c1d2; }
.v2-svc-hero {
  background: var(--v2-navy-2);
  padding: 72px var(--v2-pad) 80px;
}
.v2-svc-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
.v2-svc-hero .v2-page-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--v2-lime);
  color: var(--v2-lime);
  background: none;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}
.v2-svc-hero .v2-page-eye i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-lime);
  display: block;
}
.v2-svc-hero h1 {
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 24px 0 0;
}
.v2-svc-hero p {
  font-size: 16.5px;
  line-height: 1.72;
  color: #b9c1d2;
  margin: 22px 0 34px;
  max-width: 560px;
}
.v2-btn-ghost-light {
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 28px;
  border-radius: 6px;
}
.v2-btn-ghost-light:hover { background: #fff; color: #142244; }
.v2-svc-hero-media { position: relative; }
.v2-svc-hero-media img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: #0b1424;
}
.v2-svc-metric {
  position: absolute;
  inset-inline-end: 18px;
  top: 18px;
  max-width: 230px;
  background: #0b1424;
  border: 1px solid var(--v2-lime);
  border-radius: 10px;
  padding: 16px 18px;
}
.v2-svc-metric span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--v2-lime);
}
.v2-svc-metric b {
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-top: 8px;
}
.v2-svc-metric p {
  font-size: 12px;
  line-height: 1.5;
  color: #9aa5bd;
  margin: 6px 0 0;
}
.v2-caps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.v2-caps article {
  background: #fbfcfd;
  border: 1px solid #eaeef2;
  border-radius: 12px;
  padding: 26px 24px 28px;
}
/* Q&A variant (Contact "Common Questions") — the design gives these cards
   their own spec, tighter than the capability cards above. */
.v2-caps.is-qa { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 22px; }
.v2-caps.is-qa article { border-radius: 10px; padding: 24px 26px 26px; }
.v2-caps.is-qa h3 { font-size: 16.5px; line-height: 1.4; margin: 0; }
/* Careers: role type line under an open-position title. */
.v2-role-type { display: block; font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--v2-red); margin-top: 6px; }
.v2-caps.is-qa p { font-size: 14.5px; line-height: 1.68; }
.v2-cap-ico {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #eef7c6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-cap-ico i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #5f7300;
  display: block;
}
.v2-caps h3 { font-weight: 700; font-size: 18px; color: #142244; margin: 20px 0 0; }
.v2-caps p { font-size: 14px; line-height: 1.65; color: #5b6577; margin: 12px 0 0; }
.v2-adv { background: #142244; padding: 84px var(--v2-pad); }
.v2-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.v2-adv-photo img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #0b1424;
}
.v2-adv-list { display: grid; gap: 24px; margin-top: 30px; }
.v2-adv-list > div { display: flex; align-items: flex-start; gap: 14px; }
.v2-adv-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--v2-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.v2-adv-list strong { display: block; font-weight: 700; font-size: 16.5px; color: #fff; }
.v2-adv-list em { display: block; font-style: normal; font-size: 14px; line-height: 1.65; color: #a9b2c6; margin-top: 7px; }
.v2-stack-sec { background: #f7f9fa; }
.v2-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.v2-pills span {
  background: #fff;
  border: 1px solid #e4e8ed;
  color: #35415a;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
}
.v2-phases { background: #142244; padding: 84px var(--v2-pad) 96px; }
.v2-phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 40px 30px;
}
.v2-phase { border-inline-start: 1px solid #2e3f68; padding-inline-start: 22px; }
.v2-phase-num {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--v2-lime);
}
.v2-phase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  margin: 22px 0 14px;
  background: var(--v2-lime);
}
.v2-phase-dot.is-mute { background: #8f9fc4; }
.v2-phase h3 { font-weight: 700; font-size: 17px; color: #fff; margin: 0; }
.v2-phase p { font-size: 13.5px; line-height: 1.65; color: #a9b2c6; margin: 12px 0 0; }
.v2-faq-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.v2-cta-band .v2-btn-line { background: #fff; border-color: #fff; }

/* Inherits .v2-page-hero's navy so every hero stays one colour. */
.v2-page-hero.is-ink { text-align: start; }
.v2-page-hero.is-article { padding: 54px var(--v2-pad) 62px; }
.v2-page-hero.is-article .v2-crumb,
.v2-page-hero.is-ink .v2-crumb { justify-content: flex-start; }
.v2-page-hero.is-article h1,
.v2-page-hero.is-ink h1 { max-width: 900px; }
.v2-page-hero.is-article { max-width: none; }
.v2-page-hero.is-article h1 { max-width: 900px; margin-left: auto; margin-right: auto; }
.v2-page-hero.is-article .v2-crumb,
.v2-page-hero.is-article .v2-page-eye,
.v2-page-hero.is-article .v2-article-meta { max-width: 900px; margin-left: auto; margin-right: auto; }
.v2-page-eye i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--v2-lime); display: block;
}
.v2-page-eye.is-solid {
  background: var(--v2-lime); color: #2f3a12; border: 0;
}
.v2-page-eye.is-solid i { background: #2f3a12; }
.v2-form-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 16px rgba(15,28,52,.07);
  padding: 30px 30px 32px;
}
.v2-contact-side { display: grid; gap: 18px; align-content: start; }
.v2-info-card {
  background: #fff; border-radius: 10px;
  box-shadow: 0 2px 14px rgba(15,28,52,.06);
  padding: 22px 24px;
}
.v2-side-head { display: flex; align-items: center; gap: 11px; }
.v2-side-head strong { font-size: 16px; color: #142244; }
.v2-info-card p { font-size: 14.5px; line-height: 1.6; color: #5b6577; margin: 14px 0 0; }
.v2-info-card a { display: block; font-weight: 600; font-size: 15px; color: #142244; margin-top: 12px; }
.v2-info-card a:hover { color: #7c9c00; }
.v2-info-card span { display: block; font-size: 13px; color: #8c95a3; margin-top: 4px; }
.v2-wa-card {
  display: flex; align-items: center; gap: 12px;
  background: #e8f7ee; border: 1px solid #b8e6c9; border-radius: 10px; padding: 20px 24px;
}
.v2-wa-card:hover { background: #d9f0e3; color: #142244; }
.v2-wa-card i { width: 15px; height: 15px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.v2-wa-card strong { display: block; font-size: 15.5px; color: #142244; }
.v2-wa-card em { display: block; font-style: normal; font-size: 13.5px; color: #4a5568; margin-top: 4px; }
.v2-map-slot { margin-top: 34px; height: clamp(220px, 26vw, 330px); border-radius: 12px; overflow: hidden; background: #0b1424; }
.v2-map-slot img { width: 100%; height: 100%; object-fit: cover; }
.v2-client-strip { background: #f7f9fa; border-bottom: 1px solid #eaeef2; padding: 30px var(--v2-pad) 38px; }
.v2-client-kicker { font-size: 11.5px; letter-spacing: .1em; color: #6b7482; }
.v2-clients { margin-top: 22px; }
.v2-loc-lines { display: grid; gap: 16px; margin-top: 8px; }
.v2-loc-lines span { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.55; color: #35415a; }
.v2-loc-lines svg { flex-shrink: 0; margin-top: 2px; }
.v2-map-live { position: relative; height: 300px; border-radius: 12px; overflow: hidden; background: #0b1424; }
.v2-map-live img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.v2-map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.v2-map-live em { position: absolute; left: 14px; bottom: 14px; font-size: 12px; color: #fff; font-style: normal; }
.v2-avatar-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.v2-cat-bar { background: #fff; border-bottom: 1px solid #eaeef2; padding: 18px var(--v2-pad); }
.v2-blog-tag { background: #f4f9d6; color: #5f7300; }
.v2-blog-author { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.v2-blog-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.v2-blog-author strong { display: block; font-size: 14px; color: #142244; }
.v2-blog-author em { display: block; font-style: normal; font-size: 12.5px; color: #6b7482; margin-top: 2px; }
.v2-article-meta { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; color: #9aa5bd; font-size: 13.5px; }
.v2-article-meta .v2-blog-author { margin-top: 0; }
.v2-article-meta .v2-blog-author strong { color: #fff; }
.v2-blog-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 16px; border-top: 1px solid #f1f4f7; font-size: 13px;
}
.v2-blog-foot span { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #142244; }
.v2-blog-foot i { width: 6px; height: 6px; border-radius: 50%; background: #e31e2d; display: block; }
.v2-blog-foot em { font-style: normal; color: #8c95a3; font-size: 12.5px; }
.v2-blog-sub { background: #0f1a30; padding: 82px var(--v2-pad) 92px; text-align: center; color: #fff; }
.v2-blog-sub h2 { font-size: clamp(28px, 3.1vw, 42px); margin: 24px 0 0; }
.v2-blog-sub p { font-size: 15.5px; line-height: 1.65; color: #b9c1d2; margin: 18px 0 32px; }
.v2-sub-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.v2-sub-form input {
  flex: 1 1 300px; max-width: 340px; height: 48px; border-radius: 8px;
  border: 1px solid #2e3f68; background: #16233f; padding: 0 16px; color: #fff;
}
.v2-article-bleed { max-width: 900px; margin: -36px auto 0; padding: 0 var(--v2-pad); }
.v2-article-bleed img {
  width: 100%; height: clamp(220px, 30vw, 400px); object-fit: cover;
  border-radius: 14px; box-shadow: 0 18px 44px rgba(15,28,52,.18); display: block; background: #eef1f4;
}
.v2-post-aside { display: grid; gap: 24px; align-content: start; position: sticky; top: 104px; }
.v2-promo-card { background: #142244; border-radius: 12px; padding: 26px 24px; color: #fff; }
.v2-promo-card strong { display: block; font-size: 18px; line-height: 1.3; }
.v2-promo-card p { font-size: 13.5px; line-height: 1.62; color: #a9b2c6; margin: 12px 0 20px; }
.v2-promo-card .v2-btn { width: 100%; justify-content: center; height: 44px; }
.v2-share { display: flex; align-items: center; gap: 14px; margin-top: 44px; padding-top: 26px; border-top: 1px solid #eaeef2; flex-wrap: wrap; }
.v2-share a {
  width: 34px; height: 34px; border-radius: 7px; border: 1px solid #e4e8ed;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #4a5568;
}
.v2-map-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 40px 30px; }
.v2-map-groups h2 { font-size: 19px; color: #142244; margin: 0 0 22px; }
.v2-map-groups a { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.45; color: #35415a; margin: 0 0 16px; }
.v2-map-groups a:hover { color: #7c9c00; }
.v2-map-groups a i {
  width: 8px; height: 8px; border-right: 2px solid #9aa3b1; border-bottom: 2px solid #9aa3b1;
  transform: rotate(-45deg); margin-top: 6px; flex-shrink: 0;
}
html[dir=rtl] .v2-map-groups a i { transform: rotate(135deg); }
.v2-map-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-top: 56px; padding-top: 26px; border-top: 1px solid #eaeef2;
  font-size: 14px; color: #8c95a3;
}
.v2-map-foot a { display: flex; align-items: center; gap: 9px; font-weight: 500; color: #142244; }
.v2-map-foot a:hover { color: #7c9c00; }

/* About Us (design HTML) */
.v2-wrap.v2-about-page { background: #fff; }
.v2-eye-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f9d6;
  color: #5f7300;
  border: 0;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .1em;
  padding: 7px 16px;
  border-radius: 999px;
}
.v2-eye-soft i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9c02a;
  display: block;
}
.v2-page-eye.is-soft {
  background: rgba(196, 217, 46, .14);
  border-color: rgba(196, 217, 46, .4);
}
.v2-about-hero {
  background: var(--v2-navy-2);
  padding: 76px var(--v2-pad) 84px;
}
.v2-about-hero-grid,
.v2-about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.v2-about-hero h1 {
  font-weight: 700;
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #fff;
  margin: 26px 0 0;
  max-width: 560px;
}
.v2-about-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #aab3c6;
  margin: 22px 0 0;
  max-width: 560px;
}
.v2-about-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.v2-about-hero-actions .v2-btn-lime {
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 6px;
}
.v2-about-hero-frame {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}
.v2-about-hero-frame img {
  width: 100%;
  height: clamp(240px, 24vw, 320px);
  object-fit: cover;
  border-radius: 10px;
  display: block;
  background: #eef1f4;
}
.v2-about-metric {
  position: absolute;
  inset-inline-end: 26px;
  inset-inline-start: auto;
  bottom: 26px;
  max-width: 200px;
  background: #0f1c34;
  border: 0;
  border-radius: 10px;
  padding: 16px 18px;
  color: #b9c1d2;
}
.v2-about-metric b {
  display: block;
  font-size: 20px;
  color: var(--v2-lime);
}
.v2-about-metric span {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 6px;
}
.v2-about-stats {
  background: #fff;
  border-bottom: 1px solid #eaeef2;
  padding: 46px var(--v2-pad) 50px;
}
.v2-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 26px;
  text-align: center;
}
.v2-about-stats-grid strong {
  display: block;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.02em;
  color: #142244;
}
.v2-about-stats-grid span {
  display: block;
  font-size: 13.5px;
  color: #6b7482;
  margin-top: 8px;
}
.v2-about-story-img {
  height: clamp(280px, 28vw, 380px);
  border-radius: 14px;
  overflow: hidden;
  background: #eef1f4;
}
.v2-about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}
.v2-about-page .v2-caps article { background: #f7f9fa; }
.v2-about-mv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
}
.v2-about-mv article {
  background: #fff;
  border: 1px solid #eaeef2;
  border-radius: 12px;
  padding: 30px 28px 32px;
  border-top: 3px solid var(--v2-lime);
  box-shadow: none;
}
.v2-about-mv article.is-navy { border-top-color: #142244; }
.v2-about-mv h3 {
  font-weight: 700;
  font-size: 19px;
  color: #142244;
  margin: 24px 0 0;
}
.v2-about-mv p {
  font-size: 14.5px;
  line-height: 1.72;
  color: #5b6577;
  margin: 14px 0 0;
}
.v2-about-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f9d6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-about-ico.is-red { background: #fdeaec; }
.v2-about-journey { position: relative; }
.v2-about-rail {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e4e8ed;
}
.v2-about-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 30px 18px;
  position: relative;
  text-align: center;
}
.v2-about-year {
  display: inline-block;
  background: #142244;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0;
}
.v2-about-timeline i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--v2-lime);
  border: 2px solid #fff;
  box-shadow: none;
  display: block;
  margin: 11px auto 0;
}
.v2-about-timeline strong {
  display: block;
  font-size: 13.5px;
  color: #142244;
  margin-top: 14px;
}
.v2-about-timeline em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b7482;
  margin-top: 7px;
}
.v2-about-mv-sec,
.v2-about-lead-sec { background: #f7f9fa; }
.v2-about-mv-wrap { max-width: 1100px; }
.v2-about-lead-cta { text-align: center; margin-top: 40px; }
.v2-about-cta-wrap { max-width: 760px; }
.v2-about-partners {
  background: #f7f9fa;
  padding: 44px var(--v2-pad) 48px;
  text-align: center;
  border-top: 0;
}
.v2-about-partners .v2-client-kicker {
  letter-spacing: .12em;
  color: #8c95a3;
}
.v2-about-partners .v2-clients {
  justify-content: center;
  margin-top: 26px;
  gap: clamp(20px, 3.4vw, 54px);
  font-weight: 600;
  font-size: 14.5px;
  color: #8c95a3;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .v2-about-timeline { grid-template-columns: 1fr; text-align: start; }
  .v2-about-rail { display: none; }
  .v2-about-timeline i { margin-left: 0; }
}
