@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
  --blue: #5646c6;
  --blue-dark: #322b7c;
  --magenta: #7c3aed;
  --ink: #2b2a45;
  --muted: #5c5b78;
  --line: #ddd8f0;
  --paper: #fbfafe;
  --soft: #efedf9;
  --mint: #e6e1fb;
  --shadow: 0 22px 70px rgba(49, 40, 120, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(251, 250, 254, 0.94) 0%, rgba(251, 250, 254, 0.6) 60%, rgba(251, 250, 254, 0) 100%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, min-height 180ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(251, 250, 254, 0.92);
  border-bottom: 1px solid rgba(221, 216, 240, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(49, 40, 120, 0.08);
}

/* Transparent header over dark page heroes: switch to white text until scrolled */
.site-header.on-dark:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(22, 17, 66, 0.6) 0%, rgba(22, 17, 66, 0) 100%);
}

.site-header.on-dark:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}

@media (min-width: 981px) {
  .site-header.on-dark:not(.is-scrolled) .site-nav {
    color: #fff;
  }

  .site-header.on-dark:not(.is-scrolled) .site-nav a::after {
    background: #fff;
  }
}

.brand img {
  width: clamp(178px, 18vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #34325c;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--magenta);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-style: normal;
  font-size: 10px;
  transition: transform 180ms ease;
}

.has-dropdown:hover .dropdown-toggle i,
.has-dropdown:focus-within .dropdown-toggle i {
  transform: rotate(180deg);
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 286px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(49, 40, 120, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index: 40;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #34325c;
  white-space: nowrap;
}

.dropdown-menu a::after {
  content: none;
}

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

@media (max-width: 980px) {
  .has-dropdown {
    display: block;
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: space-between;
    padding: 12px 0;
  }

  .has-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: auto;
  }

  .dropdown-menu a {
    padding: 10px 0;
    white-space: normal;
  }
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn.primary:hover {
  box-shadow: 0 16px 34px rgba(86, 70, 198, 0.38);
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(86, 70, 198, 0.28);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1100ms ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  right: clamp(18px, 5vw, 64px);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 2px 8px rgba(44, 36, 108, 0.35);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.hero-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 246, 252, 0.98) 0%, rgba(247, 246, 252, 0.86) 32%, rgba(247, 246, 252, 0.25) 58%, rgba(247, 246, 252, 0.05) 100%),
    linear-gradient(0deg, rgba(44, 36, 108, 0.22), rgba(44, 36, 108, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100% - 36px));
  min-height: 760px;
  padding: 120px 0 54px clamp(18px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--magenta);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 900;
}

h3 {
  font-weight: 800;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  color: #2c2670;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  color: #322e7d;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #322e6b;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: #4b4a6d;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin: 0;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 216, 240, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(49, 40, 120, 0.08);
}

.hero-stats dt {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: #565579;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.services,
.process {
  background: var(--soft);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 36px;
}

.section-heading .section-intro {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* PDF-style stacked text blocks with dividers */
.pdf-blocks {
  display: grid;
  gap: 0;
}

.pdf-blocks > div {
  padding: 18px 0;
}

.pdf-blocks > div + div {
  border-top: 1px solid var(--line);
}

.pdf-blocks h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 19px;
}

.pdf-blocks p {
  margin: 0;
  color: var(--muted);
}

/* PDF-style lavender callout note */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 22px 24px;
  background: #ddd6f8;
  border-radius: 16px;
}

.callout svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--magenta);
}

.callout p {
  margin: 0;
  color: #2b2a45;
  font-weight: 600;
}

/* Industries & Sectors quadrant cards */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sector-card {
  padding: 24px;
  background: #fff;
  border: 2px solid #3d3585;
  border-radius: 24px;
}

.sector-card h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.sector-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.sectors-copy h3 {
  color: var(--blue-dark);
  font-size: 22px;
}

.sectors-copy > p {
  color: var(--muted);
}

@media (max-width: 640px) {
  .sector-grid {
    grid-template-columns: 1fr;
  }
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 26px;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-feature div {
  padding: clamp(18px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.service-feature p,
.service-card p,
.why p,
.timeline p,
.contact p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 218px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card .card-more {
  width: auto;
  height: auto;
  margin: auto 0 0;
  align-self: flex-start;
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 800;
}

.service-card .card-more i {
  font-style: normal;
  transition: transform 180ms ease;
  display: inline-block;
}

.service-card:hover .card-more i {
  transform: translateX(4px);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 42px rgba(49, 40, 120, 0.1);
}

.service-card span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, #6d5ae8 0%, #8b5cf6 100%);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(109, 90, 232, 0.32);
  transition: transform 220ms ease;
}

.service-card:hover > span:first-child,
.timeline li:hover > span {
  transform: scale(1.12) rotate(-6deg);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.client-grid li {
  display: flex;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 132px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.client-grid img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 210px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5fd 100%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 245px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact {
  background: linear-gradient(135deg, #241f5c 0%, #4438a8 62%, #7c3aed 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
}

.contact h2,
.contact h3,
.contact p,
.contact .eyebrow {
  color: #fff;
}

.contact p {
  max-width: 650px;
  opacity: 0.84;
  font-size: 18px;
}

address {
  display: grid;
  gap: 10px;
  padding: 28px;
  font-style: normal;
  color: #2b2a45;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-frame {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

address strong {
  color: var(--blue);
  font-size: 20px;
}

address a {
  color: var(--magenta);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.whatsapp-fab {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: #565579;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

/* Service detail pages */
.page-hero {
  position: relative;
  padding: clamp(118px, 16vw, 170px) clamp(18px, 5vw, 64px) clamp(48px, 7vw, 76px);
  background: linear-gradient(135deg, #241f5c 0%, #4438a8 66%, #7c3aed 128%);
  color: #fff;
}

.page-hero .wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero .wrap-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.page-hero-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 70px rgba(20, 15, 60, 0.35);
}

@media (max-width: 980px) {
  .page-hero .wrap-split {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  opacity: 0.55;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
}

.page-hero .page-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.svc {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.svc-alt {
  background: var(--soft);
}

.svc-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.svc-intro {
  max-width: 880px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  color: var(--muted);
  font-size: 19px;
}

.svc-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.svc-panel h2,
.svc-wrap > h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.svc-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-list li {
  position: relative;
  padding-left: 32px;
  color: #4b4a6d;
  font-size: 16px;
}

.svc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--blue-dark);
  background: var(--mint);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.svc-steps li {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.svc-steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, #6d5ae8 0%, #8b5cf6 100%);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(109, 90, 232, 0.32);
  transition: transform 220ms ease;
}

.svc-steps li:hover::before {
  transform: scale(1.12) rotate(-6deg);
}

/* Card hover lifts */
.svc-steps li,
.svc-cards article,
.why-grid article,
.timeline li,
.sector-card,
.hero-stats div {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.svc-steps li:hover,
.svc-cards article:hover,
.why-grid article:hover,
.timeline li:hover,
.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 18px 44px rgba(49, 40, 120, 0.14);
}

/* Image hovers */
.page-hero-img,
.service-feature img {
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.page-hero-img:hover,
.service-feature img:hover {
  transform: scale(1.02);
}

/* Scroll entrance animation (class applied via script.js) */
.will-animate {
  opacity: 0;
}

.will-animate.in-view {
  animation: fade-up 640ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .will-animate {
    opacity: 1;
  }

  .will-animate.in-view {
    animation: none;
  }
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.svc-cards article {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5fd 100%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
}

.svc-more {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.svc-more a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.svc-more a:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 14px 36px rgba(49, 40, 120, 0.1);
}

.svc-more a span {
  color: var(--magenta);
}

.svc-cta {
  background: linear-gradient(135deg, #241f5c 0%, #4438a8 62%, #7c3aed 100%);
  color: #fff;
  text-align: center;
}

.svc-cta .svc-wrap {
  max-width: 760px;
}

.svc-cta h2 {
  color: #fff;
}

.svc-cta p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.svc-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.svc-cta .btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.form-note {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.form-note.ok {
  color: #0d6b3f;
  background: #e3f6ec;
  border: 1px solid #b7e3c9;
}

.form-note.err {
  color: #8a1f2b;
  background: #fdecee;
  border: 1px solid #f3c2c8;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #4b4a6d;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(86, 70, 198, 0.18);
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.contact-methods li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-methods b {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-methods a,
.contact-methods span.val {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-methods a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  .svc-grid2,
  .svc-steps,
  .svc-cards,
  .svc-more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .svc-grid2,
  .svc-steps,
  .svc-cards,
  .svc-more {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 46px;
    height: 42px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--blue-dark);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(49, 40, 120, 0.1);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(247, 246, 252, 0.98) 0%, rgba(247, 246, 252, 0.82) 62%, rgba(247, 246, 252, 0.32) 100%);
  }

  .section-grid,
  .service-feature,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 178px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 680px;
    padding-top: 112px;
  }

  .hero-stats,
  .service-grid,
  .why-grid,
  .timeline,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .service-card,
  .timeline li,
  .why-grid article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
    height: 300px;
  }
}
