@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f4f2;
  --surface: #ffffff;
  --surface-soft: #f7f7f5;
  --text: #1f2430;
  --muted: #667085;
  --line: #e6e8ec;
  --primary: #0b57d9;
  --primary-dark: #0a43a5;
  --accent: #f2a61a;
  --accent-deep: #db8c00;
  --hero: #163548;
  --hero-overlay: rgba(9, 31, 46, 0.78);
  --shadow: 0 24px 60px rgba(14, 23, 40, 0.08);
  --shadow-soft: 0 14px 40px rgba(14, 23, 40, 0.06);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

.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;
}

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

main section {
  padding: 84px 0;
}

.page-light {
  background: var(--bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(242, 166, 26, 0.12);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.section-heading h2,
.section-heading h1,
.hero-copy h1,
.page-hero-copy h1,
.contact-copy h1,
.service-detail-copy h1 {
  margin: 16px 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading h2,
.section-heading h1 {
  font-size: clamp(34px, 4vw, 56px);
}

.section-heading p,
.hero-copy p,
.page-hero-copy p,
.contact-copy p,
.service-detail-copy p,
.mission-card p,
.feature-card p,
.service-card p,
.team-card p,
.story-card p,
.network-card p,
.footer-about p,
.footer-links a,
.footer-meta p,
.list-muted,
.timeline-copy p,
.info-card p,
.article-card p {
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 30px rgba(11, 87, 217, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(11, 87, 217, 0.16);
}

.btn-link {
  padding: 0;
  min-height: auto;
  color: var(--primary);
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.topbar {
  background: #2b2d31;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
}

.topbar-meta,
.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: #fff;
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 154px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5565;
}

.nav-links a.is-active,
.nav-links a:hover {
  background: rgba(11, 87, 217, 0.08);
  color: var(--primary);
}

.site-header--home .nav-wrap {
  background: rgba(12, 22, 35, 0.38);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header--home {
  position: absolute;
  inset: 0 0 auto 0;
}

.site-header--home .nav-links a {
  color: rgba(255, 255, 255, 0.84);
}

.site-header--home .nav-links a.is-active,
.site-header--home .nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header--home .nav-toggle,
.site-header--home .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
}

.hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 690px;
  color: #fff;
  background: linear-gradient(90deg, var(--hero-overlay) 0%, rgba(9, 31, 46, 0.5) 42%, rgba(9, 31, 46, 0.08) 100%), url('assets/img/hero-bg.png') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 610px;
  gap: 40px;
}

.hero-copy {
  max-width: 540px;
  padding: 72px 0 100px;
}

.site-header--home + main .hero-copy {
  padding-top: 164px;
}

.hero-copy h1 {
  font-size: clamp(52px, 7vw, 88px);
}

.hero-copy p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-note {
  display: grid;
  gap: 18px;
  justify-items: end;
  padding-bottom: 84px;
}

.hero-badge {
  width: min(100%, 280px);
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

.service-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.15;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.service-card p {
  margin: 0 0 16px;
  font-size: 15px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(11, 87, 217, 0.08);
  flex-shrink: 0;
}

.icon-pill img {
  width: 26px;
  height: 26px;
}

.stat-band {
  padding: 14px 0 8px;
}

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

.stat-card {
  padding: 18px 0;
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.92;
  color: rgba(242, 166, 26, 0.48);
}

.stat-card span {
  font-size: 15px;
  color: var(--muted);
}

.tech-section {
  padding-top: 34px;
}

.tech-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
}

.tech-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
  box-shadow: var(--shadow-soft);
}

.tech-copy-card h2 {
  margin: 16px 0;
  font-size: clamp(34px, 4.4vw, 52px);
}

.tech-copy-card .btn {
  align-self: flex-start;
}

.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 32px;
  background: #dfe6f3;
}

.video-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(20, 35, 60, 0.18);
}

.play-button::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 24px solid var(--primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.feature-card,
.network-card,
.info-card,
.article-card,
.story-card,
.team-card,
.mission-card,
.value-card,
.type-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card img,
.info-icon img {
  width: 34px;
  height: 34px;
}

.feature-card h3,
.network-card h3,
.info-card h3,
.story-card h3,
.team-card h3,
.mission-card h3,
.value-card h3,
.article-card h3,
.type-card h3 {
  margin: 18px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

.trust-strip {
  padding: 28px 0 26px;
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-card img {
  max-height: 96px;
  width: auto;
  margin: 0 auto;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.quote-box {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 92px;
  line-height: 0.8;
  color: rgba(11, 87, 217, 0.15);
}

.quote-box p {
  max-width: 520px;
  font-size: 18px;
  color: #485264;
}

.quote-author {
  margin-top: 24px;
}

.quote-author strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

.portrait-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(242, 166, 26, 0.08), rgba(11, 87, 217, 0.06));
  box-shadow: var(--shadow-soft);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b57d9 0%, #1359cf 70%, #2a6ee4 100%);
  color: #fff;
}

.cta-banner::before,
.footer-top-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(60deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.12) 50%, transparent calc(50% + 1px)), linear-gradient(-60deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.12) 50%, transparent calc(50% + 1px));
  background-size: 220px 190px;
  opacity: 0.22;
  pointer-events: none;
}

.cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  min-height: 320px;
}

.cta-copy {
  padding: 26px 0;
}

.cta-copy h2,
.footer-top-cta h3 {
  margin: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
}

.cta-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-visual img {
  width: min(100%, 360px);
  margin-left: auto;
  transform: translateY(34px);
}

.app-promo {
  padding-top: 62px;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.app-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4.6vw, 54px);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-badges img {
  height: 46px;
  width: auto;
}

.app-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: 28px;
  background: #efa618;
}

.app-visual img {
  width: min(100%, 390px);
}

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

.story-thumb,
.team-thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.08;
  background: #dde3ed;
}

.story-thumb img,
.team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card {
  padding: 14px;
}

.story-card h3,
.team-card h3 {
  font-size: 18px;
}

.story-card a,
.article-card a,
.service-card a {
  font-weight: 700;
  color: var(--primary);
}

.page-hero {
  padding: 74px 0 62px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.page-hero-copy h1,
.contact-copy h1,
.service-detail-copy h1 {
  font-size: clamp(42px, 5vw, 66px);
  color: var(--text);
}

.page-hero-copy p,
.contact-copy p,
.service-detail-copy p {
  font-size: 17px;
}

.collage {
  position: relative;
  min-height: 430px;
}

.collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #fff;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-card--large {
  inset: 40px 0 0 170px;
}

.collage-card--top {
  top: 0;
  left: 0;
  width: 250px;
  height: 170px;
}

.collage-card--bottom {
  left: 90px;
  bottom: 0;
  width: 240px;
  height: 160px;
}

.mini-stats {
  padding-top: 18px;
}

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

.mini-stat {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
}

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

.mission-card {
  min-height: 100%;
}

.mission-card ul,
.service-checklist,
.footer-links ul,
.footer-meta ul,
.list-plain {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-checklist li,
.mission-card li,
.footer-meta li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
}

.service-checklist li::before,
.mission-card li::before,
.footer-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #ffd57a);
  box-shadow: 0 0 0 4px rgba(242, 166, 26, 0.12);
}

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

.team-card {
  padding: 14px;
  text-align: center;
}

.team-card p {
  margin-top: -4px;
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 12px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 166, 26, 0.24), rgba(11, 87, 217, 0.24));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 18px;
  margin-bottom: 28px;
  align-items: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(242, 166, 26, 0.18);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(11, 87, 217, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.timeline-copy {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 24px;
}

.contact-panel,
.map-panel {
  padding: 26px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

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

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1.05;
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
}

.network-map {
  overflow: hidden;
  border-radius: 26px;
  background: #eff2f7;
}

.network-map img {
  width: 100%;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2b2d31;
  color: #fff;
  font-weight: 700;
}

.service-detail-hero {
  padding-bottom: 36px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.service-detail-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.image-stack,
.support-visual {
  display: grid;
  gap: 18px;
}

.rounded-image {
  overflow: hidden;
  border-radius: 28px;
  background: #dfe6f3;
  box-shadow: var(--shadow-soft);
}

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

.warning-box {
  display: grid;
  place-items: center;
  min-height: 188px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffe39f, #f2a61a);
  color: #3b2a03;
  font-family: 'Montserrat', sans-serif;
  font-size: 74px;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 16px;
}

.support-checks {
  display: grid;
  gap: 12px;
}

.support-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f8fb;
}

.support-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

.check-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11, 87, 217, 0.08);
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.type-section {
  background: linear-gradient(180deg, #0b57d9 0%, #0f58d1 100%);
  color: #fff;
}

.type-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

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

.type-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.type-card img {
  width: 32px;
  height: 32px;
}

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

.article-card {
  padding: 14px;
}

.article-thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.08;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 24px 0 44px;
}

.footer-top-cta {
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b57d9 0%, #1b65df 100%);
  color: #fff;
  box-shadow: 0 22px 42px rgba(11, 87, 217, 0.18);
}

.footer-top-cta p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-top-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 24px;
  margin-top: 28px;
  padding: 32px;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.footer-column h4 {
  margin: 12px 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.footer-links ul,
.footer-meta ul {
  display: grid;
  gap: 12px;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-note span:last-child {
  text-align: right;
}

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

body.has-open-nav {
  overflow: hidden;
}

body.motion-ready [data-aos],
body.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--aos-delay, 0ms);
  will-change: opacity, transform;
}

body.motion-ready [data-aos="fade-down"] {
  transform: translate3d(0, -26px, 0);
}

body.motion-ready [data-aos="fade-left"] {
  transform: translate3d(34px, 0, 0);
}

body.motion-ready [data-aos="fade-right"] {
  transform: translate3d(-34px, 0, 0);
}

body.motion-ready [data-aos="zoom-in"] {
  transform: scale(0.92);
}

body.motion-ready [data-aos="zoom-out"] {
  transform: scale(1.04);
}

body.motion-ready [data-aos].is-inview,
body.motion-ready .reveal.is-inview {
  opacity: 1;
  transform: none;
}

[data-typewriter] {
  position: relative;
  display: inline-block;
  min-height: 1em;
  white-space: pre-wrap;
}

.typewriter-block {
  display: block;
}

body.motion-ready [data-typewriter].is-typing::after {
  content: '';
  position: absolute;
  right: -0.08em;
  top: 0.1em;
  width: 2px;
  height: 0.9em;
  background: currentColor;
  animation: type-caret 900ms steps(1) infinite;
}

@keyframes type-caret {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos],
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-typewriter].is-typing::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .service-grid,
  .story-grid,
  .article-grid,
  .team-grid,
  .type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .service-detail-grid,
  .tech-layout,
  .contact-layout,
  .network-layout,
  .support-grid,
  .testimonial-layout,
  .app-card,
  .cta-layout,
  .footer-main,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    justify-items: start;
    padding-top: 0;
  }

  .page-hero {
    padding-top: 56px;
  }

  .collage {
    min-height: 360px;
  }

  .collage-card--large {
    inset: 50px 0 0 140px;
  }

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

@media (max-width: 860px) {
  main section {
    padding: 68px 0;
  }

  .topbar {
    display: none;
  }

  .nav-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header--home .nav-panel {
    background: rgba(255, 255, 255, 0.98);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .site-header--home .nav-links a {
    display: block;
    color: var(--text);
  }

  .home-hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 64px 0 24px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-note {
    padding-bottom: 56px;
  }

  .service-grid,
  .feature-grid,
  .mini-stat-grid,
  .stat-grid,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .page-hero-copy h1,
  .contact-copy h1,
  .service-detail-copy h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .collage {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .collage-card {
    position: static;
    width: 100%;
    height: 210px;
  }

  .field-grid,
  .service-detail-collage {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
  }

  .timeline-item > :first-child {
    grid-column: 2;
  }

  .timeline-item:nth-child(even) > :first-child {
    order: 0;
  }

  .timeline-dot {
    grid-row: 1 / span 2;
    width: 14px;
    height: 14px;
    margin-top: 18px;
  }

  .timeline-copy {
    margin-top: 6px;
  }

  .footer-main,
  .story-grid,
  .article-grid,
  .team-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row,
  .footer-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note span:last-child {
    text-align: left;
  }
}

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

  .nav-inner {
    gap: 12px;
  }

  .brand img {
    width: 138px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .store-badges {
    width: 100%;
  }

  .hero-actions .btn,
  .store-badges img {
    width: 100%;
  }

  .store-badges img {
    height: auto;
  }

  .feature-card,
  .network-card,
  .info-card,
  .article-card,
  .story-card,
  .team-card,
  .mission-card,
  .value-card,
  .type-card,
  .contact-panel,
  .map-panel,
  .quote-box,
  .tech-copy-card,
  .app-card,
  .footer-main,
  .footer-top-cta {
    padding: 22px;
  }

  .cta-visual img {
    transform: translateY(16px);
  }

  .app-visual {
    min-height: 300px;
  }
}

/* Shared redesign */
body {
  background: #f5f5f2;
}

main,
.page-light {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.ck-shell {
  width: min(calc(100% - clamp(24px, 4vw, 40px)), 1280px);
  margin: 0 auto;
}

.ck-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
}

.ck-header.is-home {
  position: absolute;
  inset: 0 0 auto 0;
}

.ck-header-top {
  background: #2a2a2a;
}

.ck-header-top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 28px;
}

.ck-header-top-meta {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.ck-header-top-item {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1;
}

.ck-header-top-item:hover {
  color: #fff;
}

.ck-nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 clamp(18px, 2vw, 28px);
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
}

.ck-brand {
  flex-shrink: 0;
}

.ck-brand img {
  width: clamp(162px, 14vw, 198px);
}

.ck-nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}

.ck-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #5d6270;
}

.ck-nav-links a.is-active {
  color: var(--primary);
  border: 1px solid rgba(11, 87, 217, 0.24);
}

.ck-nav-links a:hover {
  color: var(--primary);
}

.ck-caret {
  font-size: 10px;
  line-height: 1;
}

.ck-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ck-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 8;
}

.ck-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #202432;
  transition: transform 220ms ease, opacity 220ms ease;
}

.ck-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ck-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.ck-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ck-nav-backdrop {
  display: none;
}

.ck-footer {
  position: relative;
  padding: 44px 0 28px;
  background: #f5f5f2;
  overflow: hidden;
}

.ck-footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1.2fr);
  gap: 56px;
  padding: 56px 0 28px;
  border-top: 1px solid #e2e3df;
}

.ck-footer-rotor {
  position: absolute;
  left: -245px;
  top: -30px;
  width: 690px;
  height: 690px;
  pointer-events: none;
  animation: ckOrbitSpin 40s linear infinite;
}

.ck-footer-rotor::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #dfe1ef;
  border-radius: 50%;
}

.ck-footer-orbit {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 24, 40, 0.08);
  color: #2f3566;
  font-size: 16px;
  font-weight: 700;
}

.ck-footer-orbit img {
  width: 20px;
  height: 20px;
}

.ck-footer-orbit--one {
  left: 474px;
  top: 78px;
}

.ck-footer-orbit--two {
  left: 92px;
  top: 610px;
}

.ck-footer-brand-block,
.ck-footer-right {
  position: relative;
  z-index: 2;
}

.ck-footer-logo {
  width: 270px;
  margin-bottom: 22px;
}

.ck-footer-brand-block p,
.ck-footer-column p,
.ck-footer-column li {
  color: #555a67;
  font-size: 14px;
  line-height: 1.7;
}

.ck-footer-column a {
  color: inherit;
}

.ck-footer-column a:hover {
  color: var(--primary);
}

.ck-footer-navline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 38px;
}

.ck-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ck-footer-socials a,
.ck-footer-socials span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f7f9fc;
  color: #263042;
  box-shadow: inset 0 0 0 1px #e1e6ef;
}

.ck-footer-socials a:hover {
  transform: translateY(-2px);
  background: #eef4ff;
  color: #0d58d9;
}

.ck-footer-socials span.is-placeholder {
  opacity: 0.72;
}

.ck-footer-socials svg {
  width: 18px;
  height: 18px;
}

.ck-footer-navline a {
  position: relative;
  padding-right: 24px;
  margin-right: 18px;
  color: #2f3342;
  font-weight: 500;
}

.ck-footer-navline a::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  color: #c6c8d2;
}

.ck-footer-navline a:last-child::after {
  display: none;
}

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

.ck-footer-column h4 {
  margin: 0 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #252a35;
}

.ck-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ck-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 18px;
  color: #7c808d;
  font-size: 11px;
}

.ck-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 87, 217, 0.16);
}

.ck-footer-strip strong {
  font-weight: 700;
}

.ck-footer-strip-arrow {
  font-size: 18px;
}

.home-main {
  overflow: hidden;
}

.home-hero-v2 {
  position: relative;
  min-height: clamp(520px, 62vw, 720px);
  background: #123b49;
}

.home-hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 29, 44, 0.26) 0%, rgba(9, 29, 44, 0.08) 100%), url('assets/img/hero-bg.png') center/cover no-repeat;
}

.home-hero-shell {
  position: relative;
  min-height: clamp(520px, 62vw, 720px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding-top: 188px;
  color: #fff;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 5.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.home-hero-rotor {
  position: absolute;
  left: -596px;
  top: -150px;
  z-index: 1;
  width: 1059px;
  height: 1059px;
  pointer-events: none;
  will-change: transform;
  animation: homeHeroRotorSpin 38s linear infinite;
}

.home-hero-guide {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(209, 223, 255, 0.4);
  border-radius: 50%;
}

.home-hero-guide::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(218, 230, 255, 0.36);
  border-radius: 50%;
}

.home-hero-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 28px rgba(10, 15, 30, 0.16);
}

.home-hero-orbit img {
  width: 22px;
  height: 22px;
}

.home-hero-orbit--top {
  left: 200px;
  top: 86px;
}

.home-hero-orbit--bottom {
  left: 80px;
  top: 810px;
}

@keyframes homeHeroRotorSpin {
  from {
    transform: rotate(-8deg);
  }

  to {
    transform: rotate(352deg);
  }
}

@keyframes ckOrbitSpin {
  from {
    transform: rotate(-8deg);
  }

  to {
    transform: rotate(352deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-rotor,
  .about-hero-rotor,
  .contact-orbit-rotor-v2,
  .service-detail-orbitline-v2,
  .ck-footer-rotor {
    animation: none;
  }
}

.home-services-v2,
.home-stats-v2,
.home-testimonials-v2,
.home-app-v2,
.home-blogs-v2 {
  background: #f5f5f2;
}

.home-services-v2 {
  padding: 92px 0 54px;
}

.home-section-heading.is-centered {
  text-align: center;
}

.home-services-v2 .home-section-heading.is-centered,
.about-services-v2 .home-section-heading.is-centered {
  display: grid;
  justify-items: center;
}

.home-section-heading h2 {
  margin: 18px auto 0;
  max-width: 760px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #12151f;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  background: #f4ead7;
  color: #eba014;
  font-size: 14px;
  font-weight: 600;
}

.home-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eda31d;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 40px;
  margin-top: 58px;
}

.home-service-card {
  color: #222731;
}

.home-service-thumb {
  position: relative;
  overflow: visible;
  border-radius: 18px;
}

.home-service-thumb > img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  border-radius: 18px;
}

.home-service-icon {
  position: absolute;
  right: 18px;
  bottom: -34px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 31, 48, 0.12);
}

.home-service-icon img {
  width: 28px;
  height: 28px;
}

.home-service-card h3 {
  margin: 28px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.home-service-card p {
  margin: 0 0 16px;
  color: #6c7280;
  font-size: 15px;
  line-height: 1.48;
}

.home-service-card a,
.home-tech-card a {
  color: #3a6d9d;
  font-weight: 600;
  border-bottom: 2px solid rgba(58, 109, 157, 0.2);
}

.home-service-note {
  margin: 36px 0 0;
  text-align: center;
  color: #8c909a;
  font-size: 14px;
}

.home-service-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-stats-v2 {
  padding: 84px 0 88px;
}

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

.home-stat-card {
  text-align: center;
}

.home-stat-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(90px, 9.4vw, 122px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 2px #e8a118;
}

.home-stat-card span {
  display: block;
  margin-top: 2px;
  color: #b28a45;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-tech-v2 {
  position: relative;
  padding: 0 0 92px;
  background: linear-gradient(180deg, #f5f5f2 0 42%, #0d58d9 42% 100%);
  overflow: hidden;
}

.home-tech-v2::before,
.home-cta-v2::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 64%;
  height: 74%;
  background: rgba(8, 46, 112, 0.32);
  clip-path: polygon(0 0, 62% 0, 46% 100%, 0% 100%);
}

.home-tech-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  padding: 36px;
  border-radius: 28px;
  background: #fff;
}

.home-tech-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 14px 10px 14px 6px;
}

.home-tech-copy h2 {
  margin: 18px 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-primary-btn,
.home-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.home-primary-btn {
  background: #241ff7;
  color: #fff;
}

.home-secondary-btn {
  background: #fff;
  color: #1c5db7;
}

.home-tech-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 336px;
}

.home-tech-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 34px rgba(18, 29, 46, 0.18);
}

.home-play-btn::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #1f25f7;
}

.home-tech-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.home-tech-card {
  min-height: 210px;
  padding: 32px 30px;
  border-radius: 24px;
  background: #fff;
}

.home-tech-card img {
  width: 32px;
  height: 32px;
}

.home-tech-card h3 {
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.home-tech-card p {
  margin: 0 0 18px;
  color: #767b87;
  font-size: 15px;
  line-height: 1.5;
}

.home-certs-v2 {
  border-top: 1px solid #dfdfda;
  border-bottom: 1px solid #dfdfda;
}

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

.home-cert-item {
  display: grid;
  place-items: center;
  min-height: 118px;
  border-left: 1px solid #dfdfda;
}

.home-cert-item:first-child {
  border-left: 0;
}

.home-cert-item img {
  max-width: 170px;
  max-height: 64px;
  object-fit: contain;
}

.home-iso-badge {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 4px solid #989898;
  border-radius: 50%;
  color: #5d6067;
  text-align: center;
}

.home-iso-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.home-iso-badge small {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonials-v2 {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
}

.home-testimonials-v2::after {
  content: '';
  position: absolute;
  right: -220px;
  top: 110px;
  width: 680px;
  height: 680px;
  border: 1px solid #dde0ef;
  border-radius: 50%;
}

.home-testimonial-truck {
  position: absolute;
  right: 180px;
  top: 72px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 30px rgba(22, 28, 44, 0.08);
}

.home-testimonial-truck img {
  width: 24px;
  height: 24px;
}

.home-testimonial-heading {
  position: relative;
  z-index: 2;
}

.home-testimonial-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 348px;
  gap: 0;
  max-width: 1080px;
  margin: 52px auto 20px;
}

.home-testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 292px;
  padding: 58px 58px 52px;
  border-radius: 26px 0 0 26px;
  background: #efedf5;
}

.home-testimonial-copy p {
  max-width: 420px;
  margin: 0 0 28px;
  color: #161b23;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24;
}

.home-testimonial-author strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.home-testimonial-author span,
.home-blog-date {
  color: #7a7f8d;
  font-size: 13px;
}

.home-testimonial-photo {
  overflow: hidden;
  border-radius: 0 26px 26px 0;
}

.home-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-testimonial-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2d4dc;
}

.home-testimonial-dots span.is-active {
  background: #6f7380;
}

.home-cta-v2 {
  position: relative;
  padding: 60px 0 46px;
  background: #0d58d9;
  overflow: hidden;
}

.home-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
}

.home-cta-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-cta-copy p {
  max-width: 420px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.home-cta-visual {
  display: flex;
  justify-content: flex-end;
}

.home-cta-visual img {
  width: min(100%, 458px);
  transform: translateY(-22px) rotate(-3deg);
}

.home-app-v2 {
  padding: 96px 0 104px;
}

.home-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
}

.home-app-card {
  min-height: 404px;
  border-radius: 34px;
}

.home-app-card--copy {
  padding: 64px 58px;
  background: #efedf5;
}

.home-app-card--copy h2 {
  max-width: 440px;
  margin: 22px 0 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.home-app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-app-badges img {
  height: 42px;
  width: auto;
}

.home-app-card--visual {
  display: grid;
  place-items: center;
  background: #f2a61a;
}

.home-app-card--visual img {
  width: min(100%, 350px);
}

.home-blogs-v2 {
  padding: 6px 0 64px;
}

.home-blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.home-blog-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.28;
  margin-bottom: 14px;
}

.home-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(83, 83, 90, 0.68);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.home-blog-card h3 {
  margin: 8px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.28;
}

.home-blog-card p {
  margin: 0;
  color: #828792;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .ck-footer-main,
  .home-app-grid,
  .home-testimonial-card,
  .home-cta-grid,
  .home-tech-panel {
    grid-template-columns: 1fr;
  }

  .home-services-grid,
  .home-tech-cards,
  .home-blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-testimonial-copy,
  .home-testimonial-photo {
    border-radius: 26px;
  }

  .home-cta-visual {
    justify-content: center;
  }

  .about-tech-media-v2 {
    width: 100%;
    max-width: 695px;
    height: 520px;
    min-height: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 860px) {
  .ck-header.is-home {
    position: sticky;
  }

  .ck-header-top-inner {
    justify-content: center;
    min-height: 34px;
  }

  .ck-header-top-meta {
    justify-content: center;
  }

  .ck-nav-shell {
    min-height: 72px;
    padding: 0 18px;
  }

  .ck-nav-toggle {
    display: inline-block;
  }

  .ck-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(9, 15, 30, 0.32);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
    z-index: 4;
  }

  .ck-nav-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .ck-nav-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(108px + env(safe-area-inset-top, 0px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 42px rgba(16, 24, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    max-height: calc(100dvh - 132px);
    overflow-y: auto;
    z-index: 7;
  }

  .ck-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .ck-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .ck-nav-links a {
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: #f5f7fb;
    font-size: 15px;
  }

  .ck-nav-links a.is-active {
    background: rgba(11, 87, 217, 0.08);
  }

  .ck-nav-cta {
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    font-size: 14px;
  }

  .home-hero-v2 {
    min-height: 500px;
  }

  .home-hero-shell {
    min-height: 500px;
  }

  .home-hero-copy {
    max-width: 320px;
    padding-top: 182px;
  }

  .home-testimonials-v2::after,
  .ck-footer-main::before {
    display: none;
  }

  .home-hero-rotor {
    left: -214px;
    top: 54px;
    width: 520px;
    height: 520px;
  }

  .home-services-grid,
  .home-tech-cards,
  .home-blogs-grid,
  .home-certs-grid,
  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-tech-v2 {
    background: #0d58d9;
    padding-top: 72px;
  }

  .home-tech-v2::before,
  .home-cta-v2::before {
    width: 100%;
    height: 42%;
  }

  .home-tech-panel,
  .home-tech-card,
  .home-app-card--copy {
    padding: 24px;
  }

  .home-testimonial-truck {
    right: 30px;
    top: 36px;
  }

  .home-testimonial-copy p {
    font-size: 22px;
  }

  .ck-footer-main,
  .ck-footer-meta {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .ck-footer-navline {
    margin-bottom: 26px;
  }

  .about-tech-media-v2 {
    height: 420px;
    min-height: 420px;
  }

  .ck-footer-orbit--one,
  .ck-footer-orbit--two {
    display: none;
  }
}

@media (max-width: 560px) {
  .ck-shell {
    width: min(calc(100% - 24px), 1280px);
  }

  .ck-header-top {
    display: none;
  }

  .ck-nav-shell {
    min-height: 68px;
    padding: 0 14px;
  }

  .ck-brand img {
    width: 154px;
  }

  .ck-nav-panel {
    left: 10px;
    right: 10px;
    top: calc(68px + env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - 84px);
    padding: 14px;
    border-radius: 18px;
  }

  .home-hero-copy {
    max-width: 220px;
    padding-top: 152px;
  }

  .home-section-heading h2,
  .home-tech-copy h2,
  .home-app-card--copy h2,
  .home-cta-copy h2 {
    font-size: 34px;
  }

  .home-service-thumb > img {
    height: 184px;
  }

  .home-stat-card strong {
    font-size: 72px;
  }

  .home-hero-orbit {
    width: 46px;
    height: 46px;
  }

  .home-hero-orbit--top {
    left: 312px;
    top: 72px;
  }

  .home-hero-orbit--bottom {
    left: 126px;
    top: 398px;
  }

  .home-app-badges img {
    height: 38px;
  }

  .ck-footer-logo {
    width: 220px;
  }

  .ck-footer-strip {
    min-height: 54px;
    padding: 0 16px;
  }
}

@media (max-width: 960px) {
  .home-services-grid,
  .service-grid {
    gap: 28px 22px;
  }

  .about-hero-grid-v2,
  .contact-hero-grid-v2,
  .service-detail-hero-grid-v2,
  .service-detail-support-grid-v2 {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .ck-header-top {
    display: none;
  }

  .ck-nav-panel {
    top: calc(72px + env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - 92px);
  }

  .home-hero-copy h1,
  .about-hero-copy-v2 h1,
  .contact-copy-v2 h1,
  .service-detail-copy-v2 h1 {
    text-wrap: balance;
  }

  .about-hero-copy-v2 p,
  .contact-copy-v2 p,
  .service-detail-copy-v2 p,
  .service-detail-support-copy-v2 p {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .home-hero-v2,
  .home-hero-shell {
    min-height: 460px;
  }

  .home-hero-copy {
    max-width: 208px;
    padding-top: 144px;
  }

  .home-hero-rotor {
    left: -170px;
    top: 62px;
    width: 400px;
    height: 400px;
  }

  .home-section-heading h2,
  .home-tech-copy h2,
  .home-app-card--copy h2,
  .home-cta-copy h2,
  .service-detail-goods-heading-v2 h2,
  .service-detail-insight-card-v2 h2 {
    font-size: 29px;
  }

  .contact-chip-grid-v2 {
    gap: 10px;
  }

  .home-hero-orbit--top {
    left: 244px;
    top: 50px;
  }

  .home-hero-orbit--bottom {
    left: 92px;
    top: 308px;
  }
}

@media (max-width: 860px) and (orientation: landscape) {
  .ck-nav-panel {
    max-height: calc(100dvh - 92px);
  }

  .home-hero-v2,
  .home-hero-shell {
    min-height: 420px;
  }

  .home-hero-copy {
    padding-top: 124px;
  }

  .home-hero-rotor {
    top: 14px;
    left: -210px;
    width: 480px;
    height: 480px;
  }
}

.about-main-v2 {
  background: #f5f5f2;
}

.about-hero-v2 {
  padding: 62px 0 70px;
  background: #f5f5f2;
}

.about-hero-grid-v2 {
  display: grid;
  grid-template-columns: 408px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.about-hero-copy-v2 {
  position: relative;
  min-height: 396px;
  padding: 54px 0 0 6px;
}

.about-hero-copy-v2 h1 {
  margin: 20px 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #131722;
}

.about-hero-copy-v2 p {
  max-width: 336px;
  margin: 0 0 24px;
  color: #727885;
  font-size: 14px;
  line-height: 1.68;
}

.about-hero-rotor {
  position: absolute;
  left: -190px;
  top: -8px;
  width: 476px;
  height: 476px;
  pointer-events: none;
  animation: ckOrbitSpin 34s linear infinite;
}

.about-hero-curve {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(208, 216, 239, 0.9);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.about-hero-curve::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(208, 216, 239, 0.9);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.about-hero-orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
}

.about-hero-orbit img {
  width: 18px;
  height: 18px;
}

.about-hero-orbit--top {
  left: 290px;
  top: 28px;
}

.about-hero-orbit--bottom {
  left: 156px;
  bottom: 20px;
}

.about-hero-collage-v2 {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 18px 22px;
  align-items: start;
  padding-top: 18px;
}

.about-collage-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(16, 24, 40, 0.08);
  background: #fff;
}

.about-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-collage-card--wide {
  grid-column: 1 / span 2;
  height: 126px;
}

.about-collage-card--small {
  height: 180px;
  margin-left: 24px;
}

.about-collage-card--large {
  height: 236px;
}

.about-certs-v2 {
  margin-top: 8px;
}

.about-services-v2 {
  padding-top: 64px;
}

.about-stats-v2 {
  padding-top: 68px;
  padding-bottom: 50px;
}

.about-mission-v2 {
  padding: 0 0 86px;
}

.about-mission-stage-v2 {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.about-mission-heading-v2 {
  max-width: 400px;
}

.about-mission-heading-v2 h2 {
  margin-top: 16px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.about-mission-heading-v2 p {
  margin: 18px 0 0;
  color: #68707d;
  font-size: 15px;
  line-height: 1.75;
}

.about-mission-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-mission-card-v2 {
  position: relative;
  min-height: 0;
  padding: 28px 28px 30px;
  border: 1px solid #e3eaf3;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #131b28;
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.06);
  overflow: hidden;
}

.about-mission-card-v2::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #f2a61a 0%, #0d58d9 100%);
}

.about-mission-card-top-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.about-mission-index-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7f8fb;
  color: #4d5c73;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef4ff;
}

.about-mission-icon img {
  width: 20px;
  height: 20px;
}

.about-mission-card-v2 h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-mission-card-v2 p {
  margin: 0;
  color: #67707d;
  font-size: 15px;
  line-height: 1.74;
}

.about-tech-v2 {
  padding-bottom: 84px;
}

.about-tech-panel-v2 {
  grid-template-columns: minmax(0, 1fr) 695px;
  align-items: stretch;
}

.about-tech-media-v2 {
  width: 100%;
  min-height: 620px;
  height: 620px;
  margin-left: auto;
  background: #0a1629;
}

.about-tech-video-v2 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-v2,
.about-journey-v2 {
  position: relative;
  background: #f5f5f2;
  overflow: hidden;
}

.about-team-v2::before,
.about-journey-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 24%, rgba(190, 212, 242, 0.45) 24.7%, transparent 25.3%), linear-gradient(60deg, transparent 24%, rgba(190, 212, 242, 0.45) 24.7%, transparent 25.3%), linear-gradient(0deg, transparent 24%, rgba(190, 212, 242, 0.45) 24.7%, transparent 25.3%);
  background-size: 110px 96px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.34;
  pointer-events: none;
}

.about-team-v2 {
  padding: 82px 0 104px;
}

.about-team-heading-v2 {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-bottom: 28px;
}

.about-team-heading-v2 h2 {
  margin: 18px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-team-grid-v2 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.about-team-card-v2 {
  text-align: center;
}

.about-team-photo-v2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 254px;
}

.about-team-photo-v2 img {
  max-height: 254px;
  width: auto;
  z-index: -1;
}

.about-team-label-v2 {
  width: min(100%, 138px);
  margin: -16px auto 0;
  padding: 10px 8px 9px;
  border-radius: 7px;
  background: #1a63c4;
  color: #fff;
  box-shadow: 0 12px 20px rgba(14, 62, 145, 0.16);
}

.about-team-label-v2 strong,
.about-team-label-v2 span {
  display: block;
}

.about-team-label-v2 strong {
  font-size: 12px;
  font-weight: 700;
}

.about-team-label-v2 span {
  margin-top: 3px;
  font-size: 10px;
  opacity: 0.88;
}

.about-journey-v2 {
  padding: 52px 0 132px;
}

.about-journey-heading-v2 {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.about-journey-heading-v2 h2 {
  margin-top: 16px;
}

.about-journey-line-v2 {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 0 18px;
}

.about-journey-line-v2::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f73d6 0%, #1a63c4 100%);
  transform: translateX(-50%);
}

.about-journey-item-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 68px;
}

.about-journey-item-v2:last-child {
  margin-bottom: 0;
}

.about-journey-item-v2::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #f2a61a;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.about-journey-item-v2.is-left .about-journey-card-v2 {
  grid-column: 1;
  text-align: right;
}

.about-journey-item-v2.is-left .about-journey-year-v2 {
  grid-column: 2;
  text-align: left;
}

.about-journey-item-v2.is-right .about-journey-year-v2 {
  grid-column: 2;
  text-align: right;
}

.about-journey-item-v2.is-right .about-journey-card-v2 {
  grid-column: 3;
  text-align: left;
}

.about-journey-year-v2 {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
}

.about-journey-card-v2 {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding-top: 8px;
}

.about-journey-card-v2::before {
  content: '';
  position: absolute;
  top: 16px;
  width: 250px;
  border-top: 2px dashed rgba(96, 101, 110, 0.55);
}

.about-journey-item-v2.is-left .about-journey-card-v2::before {
  right: -282px;
}

.about-journey-item-v2.is-right .about-journey-card-v2::before {
  left: -282px;
}

.about-journey-card-v2 h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.about-journey-card-v2 p {
  margin: 0;
  color: #5f6572;
  font-size: 15px;
  line-height: 1.55;
}

.about-cta-v2 {
  margin-top: -8px;
}

.about-app-v2 {
  padding-top: 82px;
}

@media (max-width: 1100px) {
  .about-hero-grid-v2,
  .about-mission-stage-v2 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .about-hero-v2 {
    padding-top: 24px;
  }

  .about-hero-copy-v2 {
    min-height: 0;
    padding-top: 18px;
  }

  .about-hero-grid-v2 {
    gap: 26px;
  }

  .about-hero-curve,
  .about-journey-line-v2::before,
  .about-journey-card-v2::before {
    display: none;
  }

  .about-hero-orbit--top {
    left: auto;
    right: 16px;
    top: 0;
  }

  .about-hero-orbit--bottom {
    left: 16px;
    bottom: -14px;
  }

  .about-collage-card--small {
    margin-left: 0;
  }

  .about-mission-stage-v2,
  .about-mission-grid-v2,
  .about-team-grid-v2,
  .about-journey-item-v2 {
    grid-template-columns: 1fr;
  }

  .about-journey-item-v2 {
    gap: 10px;
    padding-left: 34px;
  }

  .about-journey-item-v2::before {
    left: 12px;
    top: 6px;
    transform: none;
  }

  .about-journey-year-v2,
  .about-journey-item-v2.is-left .about-journey-year-v2,
  .about-journey-item-v2.is-right .about-journey-year-v2,
  .about-journey-item-v2.is-left .about-journey-card-v2,
  .about-journey-item-v2.is-right .about-journey-card-v2 {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .about-hero-copy-v2 h1,
  .about-team-heading-v2 h2 {
    font-size: 34px;
  }

  .about-hero-collage-v2,
  .about-team-grid-v2 {
    grid-template-columns: 1fr;
  }

  .about-collage-card--wide,
  .about-collage-card--small,
  .about-collage-card--large {
    grid-column: auto;
    height: 200px;
  }

  .about-mission-card-v2 {
    min-height: 0;
  }
}

.contact-main-v2 {
  background: #f5f5f2;
}

.contact-hero-v2 {
  padding: 68px 0 74px;
  background: #f5f5f2;
}

.contact-hero-grid-v2 {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-copy-v2 {
  padding: 52px 0 0 18px;
}

.contact-copy-v2 h1 {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #11151e;
}

.contact-copy-v2 p {
  max-width: 410px;
  margin: 0 0 26px;
  color: #6e7480;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-v2 {
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.contact-form-v2 input,
.contact-form-v2 select {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #d9ddd8;
  border-radius: 12px;
  background: transparent;
  color: #2d313b;
}

.contact-form-v2 select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5c6473 50%), linear-gradient(135deg, #5c6473 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-chip-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
}

.contact-chip-grid-v2 button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #d5d9d4;
  border-radius: 12px;
  background: #fff;
  color: #434854;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(18, 24, 40, 0.04);
}

.contact-chip-grid-v2 button.is-active {
  border-color: rgba(36, 31, 247, 0.28);
  background: rgba(36, 31, 247, 0.08);
  color: #241ff7;
  box-shadow: 0 10px 18px rgba(36, 31, 247, 0.12);
}

.contact-submit-v2 {
  margin-top: 8px;
  height: 54px;
  border: 0;
  border-radius: 10px;
  background: #241ff7;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map-wrap-v2 {
  position: relative;
  min-height: 520px;
  padding-top: 40px;
}

.contact-orbit-rotor-v2 {
  position: absolute;
  right: -112px;
  top: -18px;
  width: 530px;
  height: 530px;
  pointer-events: none;
  animation: ckOrbitSpin 38s linear infinite;
}

.contact-curve-v2 {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 221, 241, 0.95);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.contact-curve-v2::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(216, 221, 241, 0.95);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.contact-map-card-v2 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 620px);
  margin-left: auto;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.08);
}

.contact-map-card-v2 iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.contact-orbit-v2 {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 28px rgba(18, 24, 40, 0.08);
}

.contact-orbit-v2 img {
  width: 22px;
  height: 22px;
}

.contact-orbit-v2--top {
  left: 390px;
  top: 10px;
}

.contact-orbit-v2--bottom {
  left: 472px;
  top: 436px;
}

.contact-network-v2 {
  padding: 30px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  overflow-x: hidden;
}

.contact-network-heading-v2 h2 {
  max-width: 780px;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.08;
}

.contact-network-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.contact-network-grid-v2 > * {
  min-width: 0;
}

.contact-network-map-card-v2 {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(18, 24, 40, 0.08);
}

.contact-network-map-top-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 348px);
  gap: 22px;
  align-items: end;
}

.contact-network-map-top-v2 h3 {
  margin: 14px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2.15vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #121924;
}

.contact-network-map-top-v2 p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #69707c;
  font-size: 15px;
  line-height: 1.72;
}

.contact-network-stats-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  justify-self: end;
}

.contact-network-stats-v2 div {
  min-width: 0;
  min-height: 88px;
  display: grid;
  align-content: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid #e4ebf5;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fd 100%);
  text-align: center;
}

.contact-network-stats-v2 strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #101521;
}

.contact-network-stats-v2 span {
  display: block;
  margin-top: 4px;
  color: #657081;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-network-map-v2 {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #dce5f0;
  background:
    radial-gradient(circle at 15% 18%, rgba(13, 88, 217, 0.08), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(242, 166, 26, 0.12), transparent 20%),
    linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
  overflow: hidden;
}

.contact-network-map-v2::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(186, 204, 228, 0.7);
  border-radius: 22px;
  pointer-events: none;
}

.contact-world-stage-v2 {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
}

.contact-world-map-image-v2 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 18px 28px rgba(13, 88, 217, 0.08));
}

.contact-world-routes-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-world-routes-v2 path {
  fill: none;
  stroke: rgba(19, 105, 214, 0.45);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  animation: contactRouteShift 18s linear infinite;
}

.contact-world-pin-v2 {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(244, 166, 28, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(28, 34, 54, 0.12);
  transform: translate(-50%, -50%);
  animation: contactPinPulse 2.8s ease-in-out infinite;
}

.contact-world-pin-v2::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #f2a61a;
}

.contact-world-pin-v2::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(244, 166, 28, 0.18);
  border-radius: 50%;
}

.contact-world-pin-v2--india {
  left: 70.244%;
  top: 39.402%;
}

.contact-world-pin-v2--usa {
  left: 29.443%;
  top: 27.382%;
}

.contact-world-pin-v2--uk {
  left: 49.965%;
  top: 21.385%;
}

.contact-world-pin-v2--poland {
  left: 55.837%;
  top: 20.983%;
}

.contact-world-pin-v2--uae {
  left: 65.353%;
  top: 35.997%;
}

.contact-world-pin-v2--kenya {
  left: 60.228%;
  top: 50.718%;
}

.contact-world-pin-v2--uganda {
  left: 59.051%;
  top: 49.807%;
}

.contact-world-pin-v2--china {
  left: 83.743%;
  top: 32.650%;
}

.contact-world-pin-v2--singapore {
  left: 78.839%;
  top: 49.249%;
}

.contact-world-pin-v2--indonesia {
  left: 79.679%;
  top: 53.449%;
}

.contact-world-pin-v2--brazil {
  left: 37.046%;
  top: 63.084%;
}

.contact-world-label-v2 {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(210, 220, 234, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #263242;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(18, 24, 40, 0.08);
}

.contact-world-label-v2--india {
  left: calc(70.244% + 16px);
  top: calc(39.402% - 34px);
}

.contact-world-label-v2--usa {
  left: calc(29.443% + 18px);
  top: calc(27.382% - 36px);
}

.contact-world-label-v2--uk {
  left: calc(49.965% + 18px);
  top: calc(21.385% - 34px);
}

.contact-world-label-v2--singapore {
  left: calc(78.839% + 18px);
  top: calc(49.249% - 34px);
}

@keyframes contactPinPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes contactRouteShift {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -180;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-world-routes-v2 path,
  .contact-world-pin-v2 {
    animation: none;
  }
}

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

.contact-network-lane-v2 {
  padding: 16px 16px 15px;
  border: 1px solid #e2ebf6;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 24, 40, 0.04);
}

.contact-network-lane-v2 strong,
.contact-network-lane-v2 span {
  display: block;
}

.contact-network-lane-v2 strong {
  color: #111926;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-network-lane-v2 span {
  margin-top: 6px;
  color: #667180;
  font-size: 12px;
  line-height: 1.6;
}

.contact-network-aside-v2 {
  display: grid;
  gap: 20px;
}

.contact-network-panel-v2 {
  padding: 26px 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.06);
}

.contact-network-panel-v2--presence {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-network-panel-v2 h3 {
  margin: 0 0 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #121720;
}

.contact-network-panel-v2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-network-panel-v2 li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #434954;
  font-size: 15px;
  line-height: 1.55;
}

.contact-network-panel-v2 li strong {
  font-size: 18px;
  line-height: 1;
}

.contact-network-panel-v2 a {
  color: inherit;
}

.contact-network-panel-v2 a:hover {
  color: var(--primary);
}

.contact-presence-list-v2 {
  margin-top: 0;
}

.contact-presence-list-v2 h4 {
  margin: 0 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #161b24;
}

.contact-presence-list-v2 p {
  margin: 0 0 16px;
  color: #69707c;
  font-size: 14px;
  line-height: 1.72;
}

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

.contact-presence-node-v2 {
  min-width: 0;
  padding: 15px 16px 14px;
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(18, 24, 40, 0.04);
}

.contact-presence-node-v2 strong,
.contact-presence-node-v2 span {
  display: block;
}

.contact-presence-node-v2 strong {
  color: #111a24;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-presence-node-v2 span {
  margin-top: 6px;
  color: #68717f;
  font-size: 12px;
  line-height: 1.55;
}

.contact-social-v2 {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5eaf2;
}

.contact-social-v2 h4 {
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161b24;
}

.contact-social-row-v2 {
  display: flex;
  gap: 16px;
}

.contact-social-row-v2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #171c25;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-social-row-v2 a:hover {
  transform: translateY(-2px);
  background: #0d58d9;
}

.contact-social-row-v2 a svg {
  width: 20px;
  height: 20px;
}

.contact-cta-v2 {
  margin-top: -2px;
}

.contact-app-v2 {
  padding-top: 84px;
}

.ck-whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
}

.ck-whatsapp-fab:hover {
  background: #1fb958;
  transform: translateY(-1px);
}

.ck-whatsapp-fab__icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.ck-whatsapp-fab__icon svg {
  width: 20px;
  height: 20px;
}

.ck-whatsapp-fab__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .contact-hero-grid-v2,
  .contact-network-grid-v2 {
    grid-template-columns: 1fr;
  }

  .contact-copy-v2,
  .contact-network-copy-v2 {
    padding-left: 0;
  }

  .contact-map-card-v2 {
    margin-left: 0;
  }

  .contact-network-aside-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-network-map-top-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-hero-v2 {
    padding-top: 34px;
  }

  .contact-copy-v2 {
    padding-top: 20px;
  }

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

  .contact-map-wrap-v2 {
    min-height: 0;
    padding-top: 18px;
  }

  .contact-map-card-v2 iframe {
    height: 420px;
  }

  .contact-curve-v2 {
    display: none;
  }

  .contact-orbit-v2--top {
    right: 18px;
  }

  .contact-orbit-v2--bottom {
    right: 10px;
    bottom: -16px;
  }

  .contact-network-stats-v2 {
    width: 100%;
  }

  .contact-network-lanes-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-network-aside-v2 {
    grid-template-columns: 1fr;
  }

  .contact-world-label-v2 {
    display: none;
  }

  .ck-whatsapp-fab {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  .contact-copy-v2 h1,
  .contact-network-copy-v2 h3 {
    font-size: 36px;
  }

  .contact-copy-v2 p {
    max-width: none;
  }

  .contact-chip-grid-v2 button,
  .contact-submit-v2 {
    width: 100%;
  }

  .contact-network-grid-v2 {
    gap: 28px;
  }

  .contact-map-card-v2 iframe {
    height: 340px;
  }

  .contact-network-map-card-v2,
  .contact-network-panel-v2 {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-network-map-v2 {
    padding: 16px;
    border-radius: 22px;
  }

  .contact-network-stats-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-network-stats-v2 div {
    min-width: 0;
    padding: 12px 10px;
  }

  .contact-network-stats-v2 strong {
    font-size: 20px;
  }

  .contact-network-lanes-v2 {
    grid-template-columns: 1fr;
  }

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

  .contact-world-pin-v2 {
    width: 15px;
    height: 15px;
  }

  .contact-world-pin-v2::before {
    inset: 3px;
  }

  .contact-world-pin-v2::after {
    inset: -6px;
  }

  .contact-social-row-v2 {
    flex-wrap: wrap;
  }

  .ck-whatsapp-fab {
    padding-right: 12px;
  }

  .ck-whatsapp-fab__label {
    display: none;
  }
}

/* Service detail redesign */
.service-detail-main-v2 {
  position: relative;
  overflow: hidden;
  background: #f5f5f2;
}

.service-detail-orbitline-v2 {
  position: absolute;
  inset: 0 auto auto 0;
  width: 520px;
  height: 980px;
  pointer-events: none;
  z-index: 0;
  animation: ckOrbitSpin 42s linear infinite;
}

.service-detail-orbitline-v2::before {
  content: '';
  position: absolute;
  left: -515px;
  top: 44px;
  width: 920px;
  height: 920px;
  border: 1px solid rgba(215, 221, 243, 0.98);
  border-radius: 50%;
}

.service-detail-orbit-v2 {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 26px rgba(18, 24, 40, 0.08);
}

.service-detail-orbit-v2 img {
  width: 22px;
  height: 22px;
}

.service-detail-orbit-v2--top {
  left: 273px;
  top: 118px;
}

.service-detail-orbit-v2--mid {
  left: 227px;
  top: 488px;
}

.service-detail-main-v2 section {
  position: relative;
  z-index: 1;
}

.service-detail-hero-v2 {
  padding: 86px 0 60px;
}

.service-detail-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.service-detail-copy-v2 {
  padding-left: 54px;
}

.service-detail-copy-v2 .eyebrow {
  margin-bottom: 20px;
}

.service-detail-copy-v2 h1 {
  max-width: 440px;
  margin: 0 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.06em;
  color: #141a20;
}

.service-detail-copy-v2 p {
  max-width: 480px;
  margin: 0;
  color: #727882;
  font-size: 15px;
  line-height: 1.82;
}

.service-detail-copy-paragraph-v2 {
  margin: 0;
}

.service-detail-copy-paragraph-v2 + .service-detail-copy-paragraph-v2 {
  margin-top: 14px;
}

.service-detail-collage-v2 {
  position: relative;
  height: 468px;
}

.service-detail-frame-v2 {
  position: absolute;
  overflow: hidden;
  padding: 8px 0 0 8px;
  background: #f4a400;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(18, 24, 40, 0.06);
}

.service-detail-frame-v2 img,
.service-detail-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.service-detail-frame-v2--hero {
  right: 48px;
  top: 14px;
  width: 384px;
  height: 394px;
}

.service-detail-card-v2 {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 24, 40, 0.08);
}

.service-detail-card-v2--trailer {
  left: 34px;
  top: 170px;
  width: 238px;
  height: 218px;
  border: 5px solid #fff;
}

.service-detail-support-v2 {
  padding: 76px 0 90px;
}

.service-detail-support-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 104px;
  align-items: center;
}

.service-detail-support-media-v2 {
  position: relative;
  height: 390px;
}

.service-detail-frame-v2--package {
  left: 52px;
  top: 8px;
  width: 378px;
  height: 330px;
}

.service-detail-card-v2--halle {
  left: 352px;
  top: 196px;
  width: 160px;
  height: 200px;
  border: 6px solid #fff;
}

.service-detail-support-copy-v2 {
  padding-top: 12px;
}

.service-detail-support-copy-v2 h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.055em;
  color: #171c23;
}

.service-detail-support-copy-v2 p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #707680;
  font-size: 14px;
  line-height: 1.7;
}

.service-detail-support-paragraph-v2 {
  margin: 0 0 14px;
}

.service-detail-support-paragraph-v2:last-of-type {
  margin-bottom: 24px;
}

.service-detail-checklist-v2 {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-checklist-v2 li {
  position: relative;
  padding: 12px 18px 12px 42px;
  border-radius: 4px;
  background: #ededeb;
  color: #30353d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.service-detail-checklist-v2 li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: #f3a516;
  box-shadow: inset 0 0 0 4px #f7d47e;
}

.service-detail-goods-v2 {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 35%),
    linear-gradient(135deg, #0d64ca 0%, #0b5ec2 100%);
}

.service-detail-goods-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(55deg, transparent 18%, rgba(255, 255, 255, 0.06) 18.8%, transparent 19.4%) 0 0 / 220px 220px,
    linear-gradient(-55deg, transparent 18%, rgba(255, 255, 255, 0.05) 18.8%, transparent 19.4%) 0 0 / 220px 220px;
  opacity: 0.55;
}

.service-detail-goods-v2 .container {
  position: relative;
  z-index: 1;
}

.service-detail-goods-heading-v2 {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-detail-goods-heading-v2 .eyebrow {
  margin-bottom: 12px;
}

.service-detail-goods-heading-v2 h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 3.3vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #fff;
}

.service-detail-goods-heading-v2 .text-accent {
  display: block;
}

.service-detail-goods-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  max-width: 1110px;
  margin: 0 auto;
}

.service-detail-goods-card-v2 {
  min-height: 156px;
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 31, 71, 0.12);
}

.service-detail-goods-icon-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: #d8ecff;
}

.service-detail-goods-icon-v2 img {
  width: 26px;
  height: 26px;
}

.service-detail-goods-card-v2 h3 {
  max-width: 230px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #31353d;
}

.service-detail-insights-v2 {
  padding: 92px 0 108px;
  background: #f5f5f2;
}

.service-detail-insights-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-detail-insight-card-v2 {
  min-height: 100%;
  padding: 34px 30px 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 24, 40, 0.06);
}

.service-detail-insight-card-v2 .eyebrow {
  margin-bottom: 18px;
}

.service-detail-insight-card-v2 h2 {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #171c23;
}

.service-detail-insight-paragraph-v2 {
  margin: 0 0 14px;
  color: #707680;
  font-size: 14px;
  line-height: 1.78;
}

.service-detail-insight-paragraph-v2:last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .service-detail-orbitline-v2 {
    width: 420px;
  }

  .service-detail-orbitline-v2::before {
    left: -572px;
    top: 64px;
    width: 920px;
    height: 920px;
  }

  .service-detail-orbit-v2--top {
    left: 220px;
  }

  .service-detail-orbit-v2--mid {
    left: 188px;
  }

  .service-detail-hero-grid-v2,
  .service-detail-support-grid-v2 {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-detail-copy-v2,
  .service-detail-support-copy-v2 {
    padding-left: 0;
  }

  .service-detail-collage-v2,
  .service-detail-support-media-v2 {
    margin: 0 auto;
    width: min(100%, 620px);
  }

  .service-detail-insights-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-detail-main-v2 {
    overflow: visible;
  }

  .service-detail-orbitline-v2 {
    display: none;
  }

  .service-detail-hero-v2 {
    padding: 42px 0 34px;
  }

  .service-detail-support-v2 {
    padding: 28px 0 64px;
  }

  .service-detail-goods-v2 {
    padding: 56px 0 64px;
  }

  .service-detail-goods-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-insights-v2 {
    padding: 56px 0 68px;
  }

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

@media (max-width: 680px) {
  .service-detail-copy-v2 h1,
  .service-detail-support-copy-v2 h2 {
    font-size: 36px;
  }

  .service-detail-copy-v2 p,
  .service-detail-support-copy-v2 p,
  .service-detail-checklist-v2 li,
  .service-detail-insight-paragraph-v2 {
    font-size: 14px;
  }

  .service-detail-collage-v2,
  .service-detail-support-media-v2 {
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .service-detail-frame-v2,
  .service-detail-card-v2 {
    position: relative;
  }

  .service-detail-frame-v2--hero,
  .service-detail-frame-v2--package {
    left: auto;
    right: auto;
    top: auto;
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 0.92;
  }

  .service-detail-frame-v2--package {
    aspect-ratio: 1.05;
  }

  .service-detail-card-v2--trailer,
  .service-detail-card-v2--halle {
    left: auto;
    top: auto;
    width: min(62%, 220px);
    height: auto;
    aspect-ratio: 0.92;
    margin: -78px 0 0 auto;
  }

  .service-detail-support-media-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-collage-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

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

  .service-detail-goods-card-v2 {
    min-height: 150px;
    padding: 28px 24px 24px;
  }

  .service-detail-insight-card-v2 {
    padding: 28px 24px 24px;
  }
}

/* 2026-03 UI pass overrides */
.ck-header .ck-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ck-header-top-inner {
  min-height: 32px;
  padding: 0 34px;
}

.ck-nav-shell {
  min-height: 84px;
  padding: 0 34px;
}

.ck-brand img {
  width: clamp(214px, 17vw, 258px);
}

.home-service-card,
.home-blog-card,
.service-card {
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.home-service-card:hover,
.home-blog-card:hover,
.service-card:hover {
  transform: translateY(-6px);
}

.home-service-card:focus-within,
.home-blog-card:focus-within,
.service-card:focus-within {
  outline: 2px solid rgba(11, 87, 217, 0.22);
  outline-offset: 4px;
}

.home-service-card a,
.home-tech-card a,
.home-blog-link {
  color: #3a6d9d;
  font-weight: 600;
  border-bottom: 2px solid rgba(58, 109, 157, 0.2);
}

.home-heading-line {
  display: block;
}

.home-services-title {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(38px, 4.45vw, 60px) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.055em !important;
}

.home-services-title .home-heading-line {
  width: 100%;
  text-align: center;
}

@media (min-width: 861px) {
  .home-services-title .home-heading-line {
    white-space: nowrap;
  }
}

.home-tech-copy h2 {
  max-width: 290px;
}

.about-tech-v2 .home-tech-copy h2 {
  max-width: 420px;
}

.home-tech-title {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
}

.home-testimonials-v2 {
  padding: 112px 0 102px;
}

.home-testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 52px auto 0;
}

.home-testimonial-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px 28px 28px;
  max-width: none;
  margin: 0;
  border: 1px solid #e3e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(18, 24, 40, 0.05);
}

.home-testimonial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6eaf2;
}

.home-testimonial-card p {
  margin: 18px 0 0;
  color: #20252f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.68;
}

.home-testimonial-stars {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7f8fb;
  color: #295fb2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-testimonial-author {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

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

.home-testimonial-author strong {
  font-size: 16px;
}

.home-testimonial-author span {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #6d7682;
}

.home-testimonial-kicker,
.home-testimonial-photo,
.home-testimonial-quote,
.home-testimonial-card-top {
  display: none;
}

.home-blogs-v2 {
  padding: 6px 0 86px;
}

.home-blogs-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home-blogs-head .home-section-heading {
  margin-bottom: 0;
}

.home-blogs-head .home-section-heading h2 {
  max-width: 640px;
  margin: 18px 0 0;
}

.home-blogs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: #1d5ab6;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(18, 24, 40, 0.08);
}

.home-blog-card {
  padding: 16px 16px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.06);
}

.home-blog-thumb {
  margin-bottom: 16px;
}

.home-blog-card p {
  margin: 0 0 14px;
}

.home-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-blog-link::after {
  content: '→';
  font-size: 14px;
}

.blog-listing-main-v2 {
  background: #f5f5f2;
}

.blog-listing-hero-v2 {
  padding: 76px 0 48px;
}

.blog-listing-hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: end;
}

.blog-listing-copy-v2 h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #11151e;
}

.blog-listing-copy-v2 p {
  max-width: 560px;
  margin: 0;
  color: #707680;
  font-size: 16px;
  line-height: 1.72;
}

.blog-listing-badge-v2 {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f58d8 0%, #2979f0 100%);
  color: #fff;
  box-shadow: 0 20px 40px rgba(16, 60, 152, 0.18);
}

.blog-listing-badge-v2 strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.blog-listing-badge-v2 span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.blog-listing-grid-wrap-v2 {
  padding: 0 0 92px;
}

.blog-listing-grid-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.about-hero-grid-v2 {
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-hero-copy-v2 {
  min-height: 0;
  padding-top: 28px;
}

.about-hero-collage-v2 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 260px;
  gap: 20px;
  align-items: end;
  padding: 12px 0 10px;
}

.about-collage-card {
  border-radius: 24px;
}

.about-collage-card--main {
  height: 388px;
  padding: 10px 0 0 10px;
  background: linear-gradient(160deg, #f2a61a 0%, #ffbe4d 100%);
}

.about-collage-stack-v2 {
  display: grid;
  gap: 20px;
}

.about-collage-card--top {
  height: 154px;
}

.about-collage-card--bottom {
  height: 214px;
}

.about-collage-badge-v2 {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
  width: 188px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(10, 20, 36, 0.84);
  backdrop-filter: blur(10px);
  color: #fff;
}

.about-collage-badge-v2 strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-collage-badge-v2 span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.about-directors-v2 {
  padding: 16px 0 96px;
}

.about-directors-stage-v2 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 388px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid #e2eaf5;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 20px 38px rgba(18, 24, 40, 0.07);
  overflow: hidden;
}

.about-directors-stage-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(13, 88, 217, 0.1), transparent 26%),
    radial-gradient(circle at 88% 84%, rgba(242, 166, 26, 0.12), transparent 24%);
  pointer-events: none;
}

.about-directors-heading-v2 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-bottom: 0;
  color: #121924;
  display: grid;
  align-content: center;
}

.about-directors-heading-v2 .home-pill {
  background: #fff3df;
  color: #f2a61a;
}

.about-directors-heading-v2 h2 {
  margin-top: 14px;
  color: #131a24;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-directors-heading-v2 p {
  margin: 0;
  color: #637082;
  font-size: 15px;
  line-height: 1.78;
}

.about-director-identity-v2 {
  display: grid;
  gap: 4px;
  margin: 20px 0 18px;
}

.about-director-identity-v2 strong,
.about-director-identity-v2 span {
  display: block;
}

.about-director-identity-v2 strong {
  color: #101926;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-director-identity-v2 span {
  color: #0d58d9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-director-note-v2 {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid #f2a61a;
  border-radius: 22px;
  background: #fff7e9;
  color: #17202b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.about-director-points-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-director-points-v2 li {
  position: relative;
  min-height: 100%;
  padding: 16px 16px 16px 42px;
  border: 1px solid #e2ebf7;
  border-radius: 20px;
  background: #fff;
  color: #273241;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  box-shadow: 0 12px 24px rgba(18, 24, 40, 0.04);
}

.about-director-card-v2 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(13, 88, 217, 0.14);
  border-radius: 30px;
  background: linear-gradient(160deg, #0d58d9 0%, #1e67c7 58%, #0d3f83 100%);
  box-shadow: 0 24px 40px rgba(11, 34, 74, 0.16);
}

.about-director-photo-v2 {
  position: relative;
  min-height: 0;
  aspect-ratio: 0.84;
  border-radius: 24px;
  overflow: hidden;
  background: #d7dfef;
}

.about-director-photo-v2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 12%;
}

.about-director-points-v2 li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f2a61a;
  box-shadow: 0 0 0 4px rgba(242, 166, 26, 0.14);
}

.about-team-grid-v2 {
  gap: 34px 26px;
}

.about-team-card-v2 {
  position: relative;
  min-height: 440px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about-team-card-v2::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 112px;
  bottom: 0;
  border-radius: 18px;
  background: #3079c7;
  box-shadow: 0 18px 36px rgba(19, 71, 149, 0.14);
}

.about-team-card-v2::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 144px;
  bottom: 92px;
  border-radius: 16px;
  background: #fff;
}

.about-team-card-v2--centered {
  grid-column: 2 / span 2;
  width: min(100%, 260px);
  justify-self: center;
}

.about-team-photo-v2 {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 356px;
  padding: 18px 10px 92px;
}

.about-team-photo-v2 img {
  max-height: 332px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(17, 26, 44, 0.12));
}

.about-team-label-v2 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  z-index: 3;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  color: #fff;
}

.about-team-label-v2 strong {
  font-size: clamp(18px, 1.65vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-team-label-v2 span {
  margin-top: 6px;
  font-size: clamp(14px, 1.1vw, 18px);
  opacity: 0.94;
}

.contact-office-v2 {
  padding: 0 0 86px;
  background: #f5f5f2;
}

.contact-office-heading-v2 {
  max-width: 580px;
  margin-bottom: 32px;
}

.contact-office-grid-v2 {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.68fr);
  grid-template-areas:
    "office-top office-feature"
    "office-bottom office-feature";
  grid-auto-rows: 218px;
  gap: 24px;
  align-items: stretch;
}

.contact-office-card-v2 {
  padding: 10px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.06);
}

.contact-office-card-v2--top {
  grid-area: office-top;
}

.contact-office-card-v2--feature {
  grid-area: office-feature;
  grid-row: span 2;
}

.contact-office-card-v2--bottom {
  grid-area: office-bottom;
}

.contact-office-media-v2 {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.contact-office-media-v2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-office-card-v2--top .contact-office-media-v2 img {
  object-position: center top;
}

.contact-office-card-v2--feature .contact-office-media-v2 img {
  object-position: 58% center;
}

.contact-office-card-v2--bottom .contact-office-media-v2 img {
  object-position: left center;
}

@media (max-width: 1100px) {
  .home-testimonials-grid,
  .blog-listing-hero-grid-v2,
  .contact-office-grid-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "office-feature"
      "office-top"
      "office-bottom";
  }

  .about-directors-stage-v2 {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-director-card-v2 {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .home-testimonial-card--feature {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .contact-office-card-v2--feature {
    grid-row: auto;
  }

  .about-team-card-v2--centered {
    grid-column: 1 / -1;
  }

  .contact-network-map-top-v2 {
    flex-direction: column;
  }

  .contact-network-map-card-v2,
  .contact-network-panel-v2 {
    padding: 24px;
  }

  .contact-network-stats-v2 div {
    flex: 1 1 120px;
  }
}

@media (max-width: 860px) {
  .ck-nav-shell {
    min-height: 76px;
    padding: 0 18px;
  }

  .ck-header-top-inner {
    padding: 0 18px;
  }

  .home-testimonial-card {
    padding: 24px;
  }

  .home-testimonial-card {
    min-height: 0;
  }

  .home-testimonial-head {
    gap: 12px;
    padding-bottom: 16px;
  }

  .about-directors-stage-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .about-director-card-v2 {
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 10px;
  }

  .about-director-photo-v2 {
    aspect-ratio: 0.88;
  }

  .about-hero-rotor {
    left: -128px;
    top: 18px;
    width: 360px;
    height: 360px;
  }

  .about-hero-curve {
    display: block;
  }

  .about-hero-orbit--top {
    left: 220px;
    right: auto;
    top: 8px;
  }

  .about-hero-orbit--bottom {
    left: 118px;
    right: auto;
    bottom: 16px;
  }

  .about-team-card-v2 {
    min-height: 400px;
  }

  .about-team-card-v2::before {
    top: 98px;
  }

  .about-team-card-v2::after {
    top: 126px;
    bottom: 82px;
  }

  .about-team-photo-v2 {
    min-height: 320px;
    padding-bottom: 86px;
  }

  .about-team-photo-v2 img {
    max-height: 286px;
  }

  .contact-orbit-rotor-v2 {
    right: -28px;
    top: 22px;
    width: 380px;
    height: 380px;
  }

  .contact-curve-v2 {
    display: block;
  }

  .contact-orbit-v2--top {
    right: auto;
    left: 286px;
    top: 8px;
  }

  .contact-orbit-v2--bottom {
    right: auto;
    bottom: auto;
    left: 334px;
    top: 300px;
  }

  .contact-network-map-v2 {
    padding: 18px;
  }

  .contact-network-aside-v2 {
    gap: 16px;
  }

  .service-detail-orbitline-v2 {
    display: block;
    left: -48px;
    top: 12px;
    width: 280px;
    height: 620px;
    opacity: 0.54;
  }

  .service-detail-orbitline-v2::before {
    left: -394px;
    top: 42px;
    width: 700px;
    height: 700px;
  }

  .service-detail-orbit-v2 {
    width: 48px;
    height: 48px;
  }

  .service-detail-orbit-v2--top {
    left: 170px;
    top: 114px;
  }

  .service-detail-orbit-v2--mid {
    left: 146px;
    top: 364px;
  }

  .ck-footer-rotor {
    left: -210px;
    top: 36px;
    width: 500px;
    height: 500px;
    opacity: 0.74;
  }

  .ck-footer-orbit {
    display: grid;
    width: 42px;
    height: 42px;
  }

  .ck-footer-orbit--one {
    left: 342px;
    top: 66px;
  }

  .ck-footer-orbit--two {
    left: 70px;
    top: 444px;
  }

  .blog-listing-hero-v2 {
    padding-top: 36px;
  }
}

@media (max-width: 560px) {
  .ck-brand img {
    width: 178px;
  }

  .about-tech-media-v2 {
    height: 320px;
    min-height: 320px;
  }

  .home-testimonial-card p {
    font-size: 15px;
  }

  .about-hero-collage-v2,
  .blog-listing-grid-v2 {
    grid-template-columns: 1fr;
  }

  .home-services-title {
    font-size: clamp(28px, 8.8vw, 40px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }

  .about-collage-card--main,
  .about-collage-card--top,
  .about-collage-card--bottom {
    height: 220px;
  }

  .about-mission-heading-v2 h2 {
    font-size: 28px;
  }

  .about-mission-card-v2 {
    padding: 24px 22px 24px;
  }

  .about-directors-stage-v2 {
    padding: 22px;
    border-radius: 28px;
  }

  .about-directors-heading-v2 h2 {
    font-size: 28px;
  }

  .about-director-note-v2 {
    padding: 14px 16px;
  }

  .about-director-card-v2 {
    width: 100%;
    padding: 8px;
    border-radius: 24px;
  }

  .about-director-photo-v2 {
    aspect-ratio: 0.92;
    border-radius: 18px;
  }

  .about-director-points-v2 {
    grid-template-columns: 1fr;
  }

  .about-team-grid-v2 {
    gap: 28px;
  }

  .about-team-card-v2,
  .about-team-card-v2--centered {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .about-team-card-v2 {
    min-height: 360px;
  }

  .about-team-card-v2::before {
    top: 88px;
  }

  .about-team-card-v2::after {
    left: 16px;
    right: 16px;
    top: 114px;
    bottom: 74px;
  }

  .about-team-photo-v2 {
    min-height: 286px;
    padding-bottom: 74px;
  }

  .about-team-photo-v2 img {
    max-height: 236px;
  }

  .about-collage-badge-v2 {
    position: static;
    width: auto;
  }

  .about-hero-rotor {
    left: -84px;
    top: 32px;
    width: 270px;
    height: 270px;
  }

  .about-hero-orbit--top {
    left: 170px;
    top: 0;
  }

  .about-hero-orbit--bottom {
    left: 86px;
    bottom: 8px;
  }

  .contact-orbit-rotor-v2 {
    right: -12px;
    top: 34px;
    width: 270px;
    height: 270px;
  }

  .contact-orbit-v2 {
    width: 44px;
    height: 44px;
  }

  .contact-orbit-v2--top {
    right: auto;
    left: 198px;
    top: 0;
  }

  .contact-orbit-v2--bottom {
    right: auto;
    bottom: auto;
    left: 232px;
    top: 206px;
  }

  .contact-network-map-card-v2,
  .contact-network-panel-v2 {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-network-map-v2 {
    padding: 14px;
  }

  .contact-network-stats-v2 {
    width: 100%;
  }

  .contact-network-stats-v2 div {
    flex: 1 1 0;
  }

  .service-detail-orbitline-v2 {
    left: -56px;
    top: 10px;
    width: 220px;
    height: 520px;
    opacity: 0.42;
  }

  .service-detail-orbitline-v2::before {
    left: -332px;
    top: 34px;
    width: 560px;
    height: 560px;
  }

  .service-detail-orbit-v2 {
    width: 42px;
    height: 42px;
  }

  .service-detail-orbit-v2--top {
    left: 136px;
    top: 92px;
  }

  .service-detail-orbit-v2--mid {
    left: 116px;
    top: 298px;
  }

  .ck-footer-rotor {
    left: -180px;
    top: 52px;
    width: 400px;
    height: 400px;
    opacity: 0.58;
  }

  .ck-footer-orbit {
    width: 38px;
    height: 38px;
  }

  .ck-footer-orbit--one {
    left: 274px;
    top: 52px;
  }

  .ck-footer-orbit--two {
    left: 50px;
    top: 354px;
  }

  .contact-office-grid-v2 {
    grid-auto-rows: auto;
  }

  .contact-office-card-v2 {
    min-height: 220px;
  }

  .contact-office-card-v2--feature {
    min-height: 320px;
  }
}
