:root {
  --navy:        #1a1f5e;
  --navy-deep:   #12163f;
  --navy-mid:    #252b76;
  --blue:        #2563eb;
  --blue-light:  #4f86f7;
  --blue-sky:    #7ab3ff;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --light-grey:  #eef0f8;
  --rule:        #dde0f0;
  --text:        #1e2340;
  --text-mid:    #4a5270;
  --text-dim:    #8891b0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;
}

/* ── LOGO MARK ── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
}

.logo-chevron {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.logo-chevron span {
  display: block;
  height: 5px;
  border-radius: 1px;
  transform-origin: left center;
}

.logo-chevron span:nth-child(1) { width: 35px; background: var(--blue-sky); transform: skewY(-22deg); }
.logo-chevron span:nth-child(2) { width: 25px; background: var(--blue); transform: skewY(-22deg); margin-left: 4px; }
.logo-chevron span:nth-child(3) { width: 16px; background: var(--navy); transform: skewY(-22deg); margin-left: 6px; }

.logo-text .logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
}

.logo-text .logo-ops { color: var(--blue); }

.logo-text .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: -3px;
}

.logo-mark.light .logo-text .logo-name { color: var(--white); }
.logo-mark.light .logo-text .logo-ops  { color: var(--blue-sky); }
.logo-mark.light .logo-text .logo-sub  { color: rgba(255,255,255,0.35); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  height: 80px;
}

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 12px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  border: none;
  text-decoration: none;
}
.nav-cta:hover { background: var(--navy); }

/* ── NAV MOBILE MENU ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 16px 32px rgba(18,22,63,0.1);
  padding: 8px 20px 24px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-menu-links { list-style: none; display: flex; flex-direction: column; }
.mobile-menu-links li { border-bottom: 1px solid var(--rule); }
.mobile-menu-links a {
  display: block;
  padding: 16px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--blue); }

.mobile-menu-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  background: var(--blue);
  color: white !important;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  text-decoration: none;
}

/* ── PAGE SYSTEM ── */
.page { display: none; padding-top: 80px; min-height: 100vh; }
.page.active { display: block; }

/* ── SHARED COMPONENTS ── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue); }
.eyebrow.light { color: var(--blue-sky); }
.eyebrow.light::before { background: var(--blue-sky); }

h2.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2.section-title .t-blue { color: var(--blue); }
h2.section-title.light   { color: white; }
h2.section-title.light .t-blue { color: var(--blue-sky); }

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--navy); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-white:hover { background: var(--blue-sky); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--blue);
  padding: 64px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-top: 6px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 60px 56px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.7; }

.footer-tagline {
  font-size: 15px;
  color: white;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 220px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-sky);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 0.7; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-link svg { flex-shrink: 0; color: var(--blue-sky); }

.footer-col ul li.footer-info {
  font-size: 15px;
  color: white;
  line-height: 1.5;
}

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

.footer-copy {
  font-size: 13px;
  color: white;
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 13px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.7; }

/* ════════════════════════════════
   HOMEPAGE
════════════════════════════════ */

/* Hero */
.hero {
  background:
    linear-gradient(to right, rgba(26,31,94,0.70) 40%, rgba(18,22,63,0.88) 100%),
    url('../assets/MoveOps_sq_009.webp') center/cover no-repeat;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-sky);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-sky);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .t-sky { color: var(--blue-sky); }

.hero-sub {
  font-size: 17px;
  color: rgb(255, 255, 255);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-right {
  background: rgba(18,22,63,0.55);
  border-left: 1px solid rgba(255,255,255,0.12);
  padding: 80px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-right-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.trust-point {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-point:last-child { border-bottom: none; }

.tp-check {
  color: var(--blue-sky);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}

.tp-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.tp-desc {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

/* Who we help */
.who-section {
  background: var(--off-white);
  padding: 72px 56px;
  border-bottom: 1px solid var(--rule);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}

.who-card {
  background: white;
  padding: 32px 28px;
  transition: background 0.2s;
  cursor: pointer;
}
.who-card:hover { background: var(--light-grey); }

.svc-nav-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 16px;
}

.who-icon { margin-bottom: 14px; color: var(--blue); }

.who-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.who-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Promise section */
.promise-section {
  padding: 80px 56px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 32px;
  margin-bottom: 20px;
}
.promise-body + .promise-body { margin-top: 0; }

.promise-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  line-height: 1.5;
  margin-top: 28px;
}

.promise-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promise-point {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.promise-point:first-child { border-top: 1px solid var(--rule); }

.pp-icon {
  width: 72px; height: 72px;
  background: var(--light-grey);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.pp-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.pp-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* How it works strip */
.how-section {
  background: var(--navy);
  padding: 80px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 52px;
}

.how-step {
  background: var(--navy-mid);
  padding: 32px 28px;
}

.hs-num {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.hs-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.hs-body {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Testimonials */
.testi-section {
  padding: 80px 56px;
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: white;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blue);
  padding: 28px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f59e0b;
}

.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.testi-attr {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */

.page-banner {
  background: var(--navy);
  padding: 64px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-banner h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 14px;
  max-width: 680px;
}

.page-banner h1 .t-sky { color: var(--blue-sky); }

.page-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.8;
}

/* Service blocks */
.svc-block {
  display: block;
  border-bottom: 1px solid var(--rule);
}

.svc-img {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.3);
}

.svc-img-label {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.svc-content {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.svc-block:nth-child(even) .svc-side { background: var(--off-white); }

.svc-who {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.svc-who-label {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-who-tag {
  font-size: 11px;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 4px 10px;
  line-height: 1.5;
}

.svc-stats {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  margin: 28px 0 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.svc-stat-val {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
}

.svc-stat-label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

.svc-side {
  padding: 52px 36px;
  border-right: 1px solid var(--rule);
  background: var(--light-grey);
}

.svc-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.svc-name {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.svc-name .t-blue { color: var(--blue); }

.svc-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 10px;
}

.svc-body-col {
  padding: 52px 52px;
}

.svc-headline {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.svc-copy {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 560px;
}

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.svc-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  align-items: flex-start;
}
.svc-list li::before { content: '›'; color: var(--blue); flex-shrink: 0; font-size: 16px; line-height: 1.4; }

/* How we work on services page */
.process-section {
  padding: 80px 56px;
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.proc-card {
  background: white;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blue);
  padding: 28px 24px;
}

.proc-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.proc-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.proc-body {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

.contact-left {
  background: var(--navy);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-left h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

.contact-left h1 .t-sky { color: var(--blue-sky); }

.contact-intro {
  font-size: 15px;
  color: white;
  line-height: 1.9;
  max-width: 400px;
}

.contact-details { display: flex; flex-direction: column; }

.cd-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 20px;
}
.cd-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.cd-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.22);
  width: 68px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cd-val {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.cd-val a { color: var(--blue-sky); text-decoration: none; }

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Form */
.contact-right {
  background: var(--off-white);
  padding: 72px 56px;
}

.form-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.form-fields { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }

label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

input, textarea, select {
  background: white;
  border: 1px solid var(--rule);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  border-radius: 3px;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

textarea { min-height: 110px; resize: vertical; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px; color: var(--text-dim);
}

.form-submit {
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--navy); }

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page.active .hero-tag  { animation: fadeUp 0.4s ease 0.05s both; }
.page.active .hero h1   { animation: fadeUp 0.4s ease 0.15s both; }
.page.active .hero-sub  { animation: fadeUp 0.4s ease 0.25s both; }
.page.active .hero-btns { animation: fadeUp 0.4s ease 0.35s both; }

/* Responsive */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .hero-right { display: none; }
  .who-section, .promise-section, .testi-section, .how-section { padding: 56px 24px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .promise-section { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 48px 24px; }
  .svc-img { height: 200px; }
  .svc-content { grid-template-columns: 1fr; }
  .svc-side, .svc-body-col { padding: 36px 24px; }
  .svc-list { grid-template-columns: 1fr; }
  .svc-stats { flex-direction: column; gap: 20px; }
  .process-section { padding: 56px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; min-height: 0; }
  .contact-left, .contact-right { padding: 48px 24px; }
  .contact-details, .contact-socials { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-tagline,
  .footer-col-services,
  .footer-col-company,
  .footer-col-address,
  .footer-col-social,
  .footer-col-contact .footer-col-title { display: none; }
  .footer-regno { display: block; margin-top: 4px; }
  .footer-bottom { padding: 16px 0; flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 640px) {
  .who-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
