:root {
  --bg: #f7f9ff;
  --bg2: #eef3fb;
  --dark: #111827;
  --dark2: #1f2937;
  --card: #ffffff;
  --text: #111827;
  --muted: #5d6678;
  --line: rgba(17, 24, 39, 0.12);
  --accent: #3b82f6;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --shadow: 0 20px 55px rgba(30, 41, 59, 0.1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.section-pad {
  padding: 110px 0;
}
.section-pad-sm {
  padding: 70px 0;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -0.06em;
  color: var(--text);
}
.brand-text {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: var(--muted);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 7px 0;
  border-radius: 10px;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #05060a;
  display: grid;
  place-items: center;
  transition: 0.45s;
}
.loader-inner {
  display: grid;
  place-items: center;
  gap: 16px;
}
.loader-logo {
  width: 78px;
  height: 78px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 30px;
  animation: pulse 1.2s infinite alternate;
}
.loader-line {
  width: 170px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.loader-line:after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: load 1.15s infinite;
}
@keyframes pulse {
  to {
    transform: scale(1.07);
  }
}
@keyframes load {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 75% 20%,
      rgba(59, 130, 246, 0.22),
      transparent 35%
    ),
    linear-gradient(180deg, #0b0d14 0%, #07080c 100%);
}
.hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero {
  min-height: 100vh;
  padding-top: 170px;
}
.page-hero {
  padding: 160px 0 92px;
  text-align: center;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 58px;
  align-items: center;
}
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.eyebrow:before,
.section-label:before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}
p {
  color: var(--muted);
  font-size: 17px;
}
.hero-content p {
  max-width: 650px;
  font-size: 19px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.28s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 35px rgba(59, 130, 246, 0.22);
}
.btn-primary:hover {
  filter: brightness(1.04);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.2);
}
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--dark);
}
.btn-ghost:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}
.hero-card,
.image-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  padding: 12px;
}
.hero-card img,
.image-frame img {
  border-radius: 24px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: 18px;
}
.floating-stat strong {
  display: block;
  font-size: 30px;
}
.floating-stat span {
  color: var(--muted);
  font-size: 13px;
}
.stat-one {
  left: -18px;
  bottom: 40px;
}
.stat-two {
  right: 24px;
  top: 26px;
}
.cards-3,
.service-grid,
.portfolio-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card,
.service-card,
.portfolio-card,
.success-card,
.contact-form,
.newsletter-box,
.value-card,
.team-card,
.process-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: 0.28s;
}
.info-card,
.value-card,
.team-card,
.process-card {
  padding: 30px;
  min-height: 250px;
}
.info-card:hover,
.service-card:hover,
.portfolio-card:hover,
.success-card:hover,
.value-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.45);
}
.icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  font-size: 34px;
}
.why,
.clients,
.contact,
.split-section,
.process {
  background: var(--bg2);
}
.why-grid,
.clients-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.mini-cta,
.map-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
}
.mini-cta h5 {
  font-size: 22px;
  margin-bottom: 18px;
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.service-card {
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.24),
    rgba(139, 92, 246, 0.16)
  );
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 24px;
}
.service-card h4 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.service-card p {
  margin-bottom: 18px;
}
.service-card ul {
  margin: 0 0 22px 18px;
  color: var(--muted);
}
.service-card li {
  margin: 6px 0;
}
.service-card a {
  margin-top: auto;
  color: var(--accent2);
  font-weight: 900;
}
.services-large .service-card {
  min-height: 455px;
}
.custom-strip {
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.14),
    rgba(139, 92, 246, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.custom-strip a {
  color: var(--accent2);
  font-weight: 900;
}
.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.success-card {
  padding: 28px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.stat-box {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: 36px;
  color: var(--accent2);
}
.portfolio-card {
  overflow: hidden;
}
.portfolio-card img {
  height: 250px;
  object-fit: cover;
}
.portfolio-card div {
  padding: 26px;
}
.portfolio-card h4,
.info-card h4,
.success-card h4,
.value-card h4,
.process-card h4 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag-row span {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  padding: 7px 10px;
  border-radius: 999px;
}
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(139, 92, 246, 0.1)
  );
}
.newsletter-form {
  display: flex;
  gap: 12px;
  min-width: min(460px, 100%);
}
input,
textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--accent2);
}
.newsletter-form button,
.contact-form button {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--text);
  font-weight: 900;
  padding: 0 24px;
  cursor: pointer;
}
.contact-form {
  padding: 34px;
  display: grid;
  gap: 16px;
}
.accordion {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.accordion-panel p {
  padding: 0 24px 22px;
}
.accordion-btn.active span {
  transform: rotate(45deg);
}
.footer {
  padding: 70px 0 22px;
  background: #111827;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 22px;
  margin: 22px 0 12px;
}
.footer h5 {
  font-size: 16px;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}
.footer a:hover {
  color: var(--accent2);
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer-bottom div {
  display: flex;
  gap: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 92px;
    display: grid;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s;
  }
  .nav-menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .hero-grid,
  .why-grid,
  .clients-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
  .cards-3,
  .service-grid,
  .portfolio-grid,
  .process-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 140px;
  }
  .section-pad {
    padding: 90px 0;
  }
}
@media (max-width: 640px) {
  .navbar {
    height: 74px;
  }
  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .brand-text {
    font-size: 14px;
  }
  .page-hero {
    padding: 132px 0 70px;
  }
  .hero {
    padding-top: 130px;
  }
  .section-pad {
    padding: 76px 0;
  }
  .cards-3,
  .service-grid,
  .portfolio-grid,
  .process-grid,
  .success-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
  .newsletter-box,
  .custom-strip,
  .footer-bottom,
  .newsletter-form {
    display: grid;
    align-items: stretch;
  }
  .newsletter-form button {
    padding: 15px 20px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  h1 {
    font-size: 43px;
  }
  .floating-stat {
    position: static;
    margin: 12px 0 0;
  }
  .hero-card {
    display: grid;
  }
  .service-card,
  .services-large .service-card {
    min-height: auto;
  }
  .portfolio-card img {
    height: 210px;
  }
  .footer-bottom div {
    display: block;
  }
}

.brand {
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  background: #fff;
  border: 1px solid rgba(59, 130, 246, 0.16);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  overflow: hidden;
}
.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}
.brand-text {
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.brand-text small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer .brand-text {
  color: #fff;
}
.footer .brand-text small {
  color: rgba(255, 255, 255, 0.65);
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer h4,
.footer h5,
.footer-bottom p,
.footer-bottom a {
  color: #fff;
}
.footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.18);
}
.site-header {
  box-shadow: 0 10px 35px rgba(30, 41, 59, 0.06);
}
.nav-menu a {
  color: var(--dark2);
}
.nav-menu a.active,
.nav-menu a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}
.menu-toggle span {
  background: var(--dark);
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--dark);
}
.footer h4,
.footer h5 {
  color: #fff;
}
.eyebrow,
.section-label,
.service-card a,
.custom-strip a,
.footer a:hover {
  color: var(--accent2);
}
.floating-stat strong,
.stat-box strong {
  color: var(--accent2);
}
.info-card,
.service-card,
.portfolio-card,
.success-card,
.contact-form,
.newsletter-box,
.value-card,
.team-card,
.process-card,
.hero-card,
.image-frame {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-color: rgba(17, 24, 39, 0.1);
}
.mini-cta,
.map-card,
.stat-box {
  background: #fff;
}
.tag-row span {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
}
.floating-stat {
  color: var(--dark);
}
.page-loader {
  background: #ffffff;
}
.loader-logo {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.16);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.14);
}
.loader-logo img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}
.loader-logo span {
  position: absolute;
  right: 9px;
  bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  color: var(--accent2);
}
.loader-line {
  background: rgba(59, 130, 246, 0.1);
}
.loader-line:after {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.reveal {
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.delay-1 {
  transition-delay: 0.07s;
}
.delay-2 {
  transition-delay: 0.12s;
}
.delay-3 {
  transition-delay: 0.17s;
}
html {
  scroll-behavior: smooth;
}
img {
  content-visibility: auto;
}
.section-pad {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.hero.section-pad,
.page-hero {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .page-loader {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .brand-text {
    font-size: 13px;
  }
  .brand-text small {
    font-size: 10px;
  }
  .nav-menu {
    top: 82px;
  }
  .section-head {
    text-align: left;
  }
  .hero-content p {
    font-size: 17px;
  }
}

:root {
  --bg: #101726;
  --bg2: #151f33;
  --dark: #f8fbff;
  --dark2: #dce7ff;
  --card: #18243a;
  --text: #f8fbff;
  --muted: #b8c4d8;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #2f80ed;
  --accent2: #8f5bff;
  --accent3: #22d3ee;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
body {
  background: radial-gradient(
      circle at 12% 4%,
      rgba(47, 128, 237, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #101726 0%, #121a2b 45%, #101726 100%);
  color: var(--text);
}
.site-header {
  background: rgba(13, 19, 33, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.navbar {
  height: 82px;
}
.brand {
  min-width: max-content;
}
.brand-mark {
  width: 58px;
  height: 58px;
  padding: 5px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.brand-text {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  font-size: 17px;
}
.brand-text small {
  color: #ccd8ec;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-menu a {
  color: #dbe6f6;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}
.menu-toggle span {
  background: #fff;
}
.hero,
.page-hero {
  background: radial-gradient(
      circle at 72% 22%,
      rgba(143, 91, 255, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 16% 18%,
      rgba(47, 128, 237, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, #121b2d 0%, #0e1525 100%);
}
.hero:before,
.page-hero:before {
  opacity: 0.55;
}
.hero-content,
.page-hero .container,
.hero-grid {
  z-index: 2;
}
.hero-content h1,
.page-hero h1,
h1 {
  color: #fff;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.36);
}
.hero-content p,
.page-hero p {
  color: #d9e4f4;
}
.eyebrow,
.section-label {
  color: #9fc7ff;
}
.section-label:before,
.eyebrow:before {
  background: linear-gradient(90deg, #2f80ed, #8f5bff, #22d3ee);
}
h2,
h3,
h4,
h5 {
  color: #fff;
}
p {
  color: var(--muted);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #8f5bff);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.28);
}
.btn-ghost {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  border-color: #8f5bff;
}
.info-card,
.service-card,
.portfolio-card,
.success-card,
.contact-form,
.newsletter-box,
.value-card,
.team-card,
.process-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.045)
  );
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}
.why,
.clients,
.contact,
.split-section,
.process {
  background: linear-gradient(180deg, #151f33 0%, #121a2b 100%);
}
.mini-cta,
.map-card,
.stat-box,
.accordion {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.13);
}
.floating-stat {
  background: rgba(16, 23, 38, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.floating-stat strong,
.stat-box strong {
  color: #9fc7ff;
}
.service-card .service-icon {
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.22),
    rgba(143, 91, 255, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card a,
.custom-strip a,
.footer a:hover {
  color: #9fc7ff;
}
.custom-strip,
.newsletter-box {
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.14),
    rgba(143, 91, 255, 0.11)
  );
  border-color: rgba(143, 91, 255, 0.27);
}
.tag-row span {
  background: rgba(255, 255, 255, 0.1);
  color: #eaf1ff;
}
.footer {
  background: #0d1422;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer a {
  color: #b8c4d8;
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}
input,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
input::placeholder,
textarea::placeholder {
  color: #aab7cc;
}
.newsletter-form button,
.contact-form button {
  color: #fff;
}
.accordion-btn {
  color: #fff;
}
.accordion-panel p {
  color: #c1cce0;
}
.image-frame,
.hero-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.page-loader {
  background: #101726;
}
.loader-logo {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-image: url("assets/logo-mark.png");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.loader-line {
  background: rgba(255, 255, 255, 0.12);
}
.reveal {
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.info-card:hover,
.service-card:hover,
.portfolio-card:hover,
.success-card:hover,
.value-card:hover,
.process-card:hover {
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  .nav-menu {
    background: rgba(13, 19, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  }
  .nav-menu a {
    color: #eef5ff;
  }
  .brand-text {
    font-size: 15px;
  }
  .brand-mark {
    width: 52px;
    height: 52px;
  }
  .hero {
    padding-top: 145px;
  }
  .hero-content h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.03;
  }
  .hero-content p {
    font-size: 17px;
  }
  .floating-stat {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .stat-one,
  .stat-two {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .info-card,
  .service-card,
  .portfolio-card,
  .success-card,
  .value-card,
  .process-card {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --bg: #101524;
  --bg2: #141d31;
  --card: #172238;
  --text: #f8fbff;
  --muted: #c0cbe0;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #3b82f6;
  --accent2: #8b5cf6;
  --accent3: #22d3ee;
}
body {
  background: linear-gradient(180deg, #101524 0%, #141d31 48%, #101524 100%);
}
.container {
  width: min(1220px, 92vw);
}
.section-pad {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
  padding: clamp(76px, 8vw, 118px) 0;
}
.page-hero {
  padding: clamp(128px, 16vw, 178px) 0 clamp(70px, 9vw, 104px);
}
.hero {
  min-height: auto;
  padding: clamp(136px, 15vw, 178px) 0 clamp(70px, 8vw, 110px);
}
h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(30px, 4.6vw, 58px);
}
p {
  font-size: clamp(16px, 1.35vw, 18px);
}
.site-header {
  background: rgba(13, 19, 33, 0.92);
}
.navbar {
  height: clamp(74px, 8vw, 86px);
}
.brand {
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}
.brand-mark {
  width: clamp(48px, 5vw, 58px);
  height: clamp(48px, 5vw, 58px);
}
.brand-text {
  font-size: clamp(14px, 1.5vw, 17px);
  white-space: nowrap;
  letter-spacing: -0.025em;
}
.brand-main {
  word-spacing: 0.18em;
}
.brand-text small {
  font-size: clamp(9px, 0.9vw, 11px);
  letter-spacing: 0.14em;
}
.nav-menu {
  gap: 6px;
}
.nav-menu a {
  padding: 9px 12px;
}
.hero-grid,
.split-grid,
.why-grid,
.contact-grid {
  gap: clamp(28px, 5vw, 60px);
}
.about-card {
  max-width: 960px;
  margin: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: var(--shadow);
  text-align: center;
}
.about-card h2 {
  text-transform: uppercase;
}
.about-card p {
  max-width: 820px;
  margin: 0 auto 14px;
  color: #e4ecfa;
  font-weight: 500;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow);
  min-height: 330px;
}
.mv-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 900;
}
.mv-card h2 {
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(30px, 4vw, 48px);
}
.mv-card p {
  color: #eef4ff;
  font-weight: 500;
}
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.work-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease;
}
.work-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.48);
}
.work-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.work-tile h4 {
  padding: 18px 20px 22px;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}
.contact-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.24);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contact-form button:hover {
  transform: translateY(-2px);
}
.contact-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #dffbff;
  font-weight: 700;
}
.form-status.show {
  display: block;
}
.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
}
@media (min-width: 1440px) {
  .container {
    width: min(1320px, 88vw);
  }
  .work-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero .container {
    max-width: 1050px;
  }
}
@media (max-width: 1100px) {
  .nav-menu a {
    font-size: 14px;
    padding: 9px 10px;
  }
  .cards-3,
  .service-grid,
  .portfolio-grid,
  .process-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }
  .nav-menu {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(13, 19, 33, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 15px 16px;
    border-radius: 14px;
    border-bottom: 0;
  }
  .hero-grid,
  .why-grid,
  .clients-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 680px;
    margin: auto;
  }
  .contact-grid {
    align-items: start;
  }
  .newsletter-box {
    display: grid;
  }
  .newsletter-form {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 34px, 1220px);
  }
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .brand-text {
    font-size: 13px;
  }
  .brand-text small {
    font-size: 8.5px;
    letter-spacing: 0.09em;
  }
  .navbar {
    height: 72px;
  }
  h1 {
    font-size: clamp(38px, 12vw, 50px);
  }
  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }
  .cards-3,
  .service-grid,
  .portfolio-grid,
  .process-grid,
  .success-grid,
  .footer-grid,
  .stats-row,
  .work-gallery {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .service-card {
    padding: 26px;
    min-height: auto;
  }
  .info-card,
  .value-card,
  .team-card,
  .process-card {
    min-height: auto;
  }
  .about-card {
    text-align: left;
    border-radius: 26px;
  }
  .mv-card {
    min-height: auto;
  }
  .work-tile h4 {
    text-align: left;
  }
  .footer-bottom {
    display: grid;
  }
  .footer-bottom div {
    display: flex;
    gap: 16px;
  }
  .newsletter-form {
    display: grid;
  }
  .page-hero {
    text-align: left;
  }
  .page-hero .eyebrow {
    justify-content: flex-start;
  }
}
@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1220px);
  }
  .brand-text {
    font-size: 12px;
  }
  .brand-text small {
    display: none;
  }
  .nav-menu {
    left: 12px;
    right: 12px;
  }
  .page-hero {
    padding-top: 118px;
  }
  .service-card,
  .contact-form,
  .newsletter-box,
  .about-card,
  .mv-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

:root {
  --container: min(1160px, 92vw);
}
.container {
  width: var(--container);
}
.section-pad {
  padding: clamp(52px, 6.5vw, 88px) 0 !important;
}
.page-hero {
  padding: clamp(112px, 12vw, 146px) 0 clamp(44px, 6vw, 72px) !important;
}
.hero {
  padding: clamp(116px, 12vw, 152px) 0 clamp(54px, 6vw, 86px) !important;
}

h1 {
  font-size: clamp(34px, 5.2vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
}
h2 {
  font-size: clamp(25px, 3.5vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
}
h3 {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  line-height: 1.16 !important;
}
h4 {
  font-size: clamp(18px, 1.6vw, 23px) !important;
  line-height: 1.22 !important;
}
p {
  font-size: clamp(14.5px, 1.08vw, 16.5px) !important;
  line-height: 1.68 !important;
}
.hero-content p,
.page-hero p {
  font-size: clamp(15.5px, 1.35vw, 18px) !important;
  max-width: 680px;
}
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 46px);
}
.section-head p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.brand-mark {
  width: clamp(42px, 4.2vw, 52px) !important;
  height: clamp(42px, 4.2vw, 52px) !important;
}
.brand-text {
  font-size: clamp(13px, 1.15vw, 15.5px) !important;
  line-height: 1.05 !important;
}
.brand-text small {
  font-size: clamp(8px, 0.72vw, 9.5px) !important;
  letter-spacing: 0.12em !important;
}
.navbar {
  height: clamp(68px, 6.4vw, 78px) !important;
}
.nav-menu a {
  font-size: 14px !important;
  padding: 8px 11px !important;
}

.hero-card,
.image-frame {
  border-radius: 24px !important;
}
.info-card,
.service-card,
.portfolio-card,
.success-card,
.value-card,
.process-card,
.contact-form,
.newsletter-box,
.about-card,
.mv-card,
.work-tile {
  border-radius: 22px !important;
}
.service-card {
  padding: 24px !important;
}
.value-card,
.process-card,
.info-card {
  padding: 24px !important;
}
.about-card {
  max-width: 860px !important;
  padding: clamp(24px, 4vw, 42px) !important;
}
.about-card p {
  max-width: 740px !important;
  font-weight: 500 !important;
}
.soft-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #9fc7ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.soft-label:before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.mv-grid {
  gap: 20px !important;
}
.mv-card {
  min-height: 240px !important;
  padding: clamp(24px, 3vw, 34px) !important;
}
.mv-card span {
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
  font-size: 13px !important;
}
.mv-card h2 {
  font-size: clamp(24px, 3vw, 34px) !important;
}

.work-gallery {
  gap: 20px !important;
}
.work-tile h4 {
  font-size: 17px !important;
  padding: 15px 16px 18px !important;
  text-align: center !important;
}
.work-tile img {
  aspect-ratio: 4/3;
}
.stats-row {
  gap: 16px !important;
}
.stat-box {
  padding: 22px 16px !important;
}
.stat-box strong {
  font-size: clamp(26px, 3.4vw, 38px) !important;
}

.footer {
  padding-top: 48px !important;
}
.footer-grid {
  gap: 28px !important;
  align-items: start !important;
}
.footer h4 {
  font-size: 20px !important;
  margin-top: 18px !important;
}
.footer h5 {
  font-size: 14px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px !important;
}
.footer a,
.footer p {
  font-size: 14.5px !important;
}
.footer .brand {
  display: inline-flex;
}
.footer-bottom {
  padding: 20px 0 !important;
  gap: 16px !important;
}

@media (min-width: 1440px) {
  :root {
    --container: min(1240px, 88vw);
  }
  h1 {
    font-size: clamp(46px, 4.4vw, 70px) !important;
  }
  h2 {
    font-size: clamp(30px, 3vw, 46px) !important;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .split-grid {
    gap: 34px !important;
  }
  .page-hero,
  .hero {
    text-align: center !important;
  }
  .page-hero p,
  .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .eyebrow,
  .section-label {
    justify-content: center !important;
  }
  .hero-actions {
    justify-content: center !important;
  }
  .section-copy,
  .section-head {
    text-align: center !important;
  }
  .mini-cta {
    text-align: center !important;
  }
  .nav-menu a {
    text-align: center !important;
    padding: 14px 16px !important;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 30px, 1160px);
  }
  .section-pad {
    padding: 46px 0 !important;
  }
  .page-hero {
    padding: 104px 0 40px !important;
  }
  .hero {
    padding: 110px 0 48px !important;
  }
  h1 {
    font-size: clamp(30px, 10vw, 42px) !important;
    letter-spacing: -0.035em !important;
  }
  h2 {
    font-size: clamp(23px, 7.6vw, 32px) !important;
  }
  h3 {
    font-size: 22px !important;
  }
  p {
    font-size: 14.5px !important;
    line-height: 1.62 !important;
  }
  .navbar {
    height: 68px !important;
  }
  .brand {
    gap: 9px !important;
  }
  .brand-mark {
    width: 40px !important;
    height: 40px !important;
    border-radius: 13px !important;
  }
  .brand-text {
    font-size: 12.5px !important;
    max-width: 132px;
    white-space: normal !important;
  }
  .brand-main {
    word-spacing: 0.08em !important;
  }
  .brand-text small {
    font-size: 7.5px !important;
    letter-spacing: 0.08em !important;
  }
  .hero-actions {
    display: grid !important;
    gap: 12px !important;
  }
  .btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
  }
  .section-head,
  .section-copy,
  .about-card,
  .mv-card,
  .value-card,
  .process-card,
  .service-card,
  .contact-form,
  .newsletter-box,
  .footer {
    text-align: center !important;
  }
  .about-card {
    text-align: center !important;
    padding: 24px 18px !important;
  }
  .soft-label {
    justify-content: center !important;
  }
  .soft-label:before {
    display: none;
  }
  .mv-card {
    padding: 24px 18px !important;
  }
  .mv-card span {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .work-gallery {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .work-tile {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .work-tile h4 {
    text-align: center !important;
    font-size: 16px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 26px !important;
  }
  .footer .brand {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer a {
    display: block !important;
    margin: 8px auto !important;
  }
  .socials {
    justify-content: center !important;
    display: flex !important;
  }
  .footer-bottom {
    display: grid !important;
    text-align: center !important;
    justify-items: center !important;
  }
  .footer-bottom div {
    justify-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .newsletter-form {
    display: grid !important;
    gap: 10px !important;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100% !important;
  }
  .contact-form button {
    padding: 14px 20px !important;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100% - 22px, 1160px);
  }
  h1 {
    font-size: 29px !important;
  }
  .brand-text {
    max-width: 112px;
    font-size: 11.5px !important;
  }
}

.page-hero .container {
  max-width: 920px !important;
  text-align: center !important;
}
.page-hero h1,
.section-head h2 {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-hero p,
.section-head p {
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.hero-content p {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.section-copy > p {
  max-width: 620px !important;
}
.service-card,
.info-card,
.value-card,
.process-card,
.success-card,
.portfolio-card div,
.mv-card,
.contact-form,
.map-card,
.mini-cta {
  text-align: left !important;
}
.service-card .service-icon,
.icon-circle {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.work-gallery-section > .container > p {
  max-width: 680px !important;
  margin: 0 auto 30px !important;
  text-align: center !important;
}
.work-tile h4 {
  text-align: center !important;
}
.contact-form button,
.newsletter-form button {
  min-height: 52px !important;
  color: #ffffff !important;
}
.footer {
  background: linear-gradient(180deg, #0e1424 0%, #0a0f1d 100%) !important;
}
.footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, 0.7fr) minmax(
      190px,
      1fr
    ) minmax(210px, 1fr) !important;
}
.footer .brand-text,
.site-header .brand-text {
  color: #ffffff !important;
}
.footer p,
.footer a {
  color: rgba(226, 232, 240, 0.78) !important;
}
.footer a:hover {
  color: #aebcff !important;
}

@media (max-width: 900px) {
  .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .section-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .contact-grid .section-copy,
  .split-grid .section-copy,
  .why-grid .section-copy {
    text-align: center !important;
  }
  .cards-3,
  .service-grid,
  .portfolio-grid,
  .process-grid,
  .stats-row,
  .work-gallery {
    gap: 18px !important;
  }
}

@media (max-width: 640px) {
  .page-hero .container,
  .section-head,
  .hero-content {
    text-align: center !important;
  }
  .page-hero p,
  .section-head p,
  .hero-content p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .service-card,
  .info-card,
  .value-card,
  .process-card,
  .success-card,
  .portfolio-card div,
  .mv-card,
  .about-card,
  .contact-form,
  .map-card,
  .mini-cta,
  .newsletter-box {
    text-align: left !important;
  }
  .service-card p,
  .service-card li,
  .info-card p,
  .value-card p,
  .process-card p,
  .success-card p,
  .portfolio-card p,
  .mv-card p,
  .about-card p,
  .contact-form p,
  .map-card p,
  .mini-cta p,
  .newsletter-box p {
    text-align: left !important;
  }
  .service-card .service-icon,
  .icon-circle,
  .mv-card span {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .work-gallery-section > .container > p {
    text-align: center !important;
    margin-bottom: 22px !important;
  }
  .work-tile h4 {
    text-align: center !important;
  }
  .footer {
    text-align: center !important;
    padding: 42px 0 18px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    text-align: center !important;
  }
  .footer-grid > div {
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer .brand {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer h4,
  .footer h5,
  .footer p,
  .footer a {
    text-align: center !important;
  }
  .footer-bottom {
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .footer-bottom div {
    justify-content: center !important;
  }
  .socials {
    justify-content: center !important;
  }
}

body.menu-open {
  overflow-x: hidden;
}
.page-hero .container,
.section-head {
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
}
.page-hero p,
.section-head p {
  width: 100% !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.mv-grid {
  align-items: stretch !important;
}
.mv-card {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-content: start !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
  min-height: 0 !important;
  padding: clamp(24px, 3vw, 36px) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.04)),
    radial-gradient(circle at 100% 0%, rgba(139,92,246,.16), transparent 34%) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  position: relative !important;
  overflow: hidden !important;
}
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent2), var(--accent3));
  opacity: .95;
}
.mv-card span {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
}
.mv-card h2 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  margin: 0 !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
}
.mv-card p {
  grid-column: 1 / -1 !important;
  margin-top: 18px !important;
  text-align: left !important;
  color: #dce7f7 !important;
}

.contact-form input,
.contact-form textarea {
  text-align: left !important;
}
.contact-form .form-status {
  text-align: center !important;
}

.footer {
  padding: 54px 0 20px !important;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, .7fr) minmax(190px, 1fr) minmax(210px, 1fr) !important;
  gap: clamp(24px, 4vw, 42px) !important;
  align-items: start !important;
}
.footer-grid > div:first-child p {
  max-width: 420px !important;
}
.footer h5 {
  margin-top: 4px !important;
}
.footer a {
  line-height: 1.45 !important;
}
.footer-bottom {
  align-items: center !important;
}

@media (max-width: 900px) {
  .nav-menu {
    max-height: calc(100vh - 96px) !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 640px) {
  .page-hero .container,
  .section-head,
  .hero-content,
  .contact-grid .section-copy,
  .split-grid .section-copy,
  .why-grid .section-copy {
    text-align: center !important;
    justify-items: center !important;
  }
  .page-hero p,
  .section-head p,
  .hero-content p,
  .section-copy > p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .service-card,
  .info-card,
  .value-card,
  .process-card,
  .success-card,
  .portfolio-card div,
  .mv-card,
  .about-card,
  .contact-form,
  .map-card,
  .mini-cta,
  .newsletter-box {
    text-align: left !important;
  }
  .mv-card {
    grid-template-columns: auto 1fr !important;
    padding: 22px 18px !important;
  }
  .mv-card span {
    margin: 0 !important;
  }
  .mv-card p {
    text-align: left !important;
    margin-top: 16px !important;
  }
  .service-card p,
  .service-card li,
  .info-card p,
  .value-card p,
  .process-card p,
  .success-card p,
  .portfolio-card p,
  .about-card p,
  .map-card p,
  .mini-cta p,
  .newsletter-box p {
    text-align: left !important;
  }
  .contact-form label,
  .contact-form input,
  .contact-form textarea {
    text-align: left !important;
  }
  .footer {
    padding: 42px 0 18px !important;
    text-align: center !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    text-align: center !important;
  }
  .footer-grid > div {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 22px 0 !important;
  }
  .footer-grid > div + div {
    border-top: 1px solid rgba(255,255,255,.1) !important;
  }
  .footer-grid > div:first-child {
    padding-top: 0 !important;
  }
  .footer-grid > div:first-child p {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer .brand {
    justify-content: center !important;
    width: fit-content !important;
    margin: 0 auto !important;
  }
  .footer h4,
  .footer h5,
  .footer p,
  .footer a {
    text-align: center !important;
  }
  .footer a {
    width: fit-content !important;
    max-width: 100% !important;
    margin: 8px auto !important;
  }
  .socials {
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 12px !important;
  }
  .socials a {
    margin: 0 !important;
  }
  .footer-bottom {
    margin-top: 10px !important;
    padding-top: 18px !important;
    display: grid !important;
    gap: 10px !important;
    justify-items: center !important;
    text-align: center !important;
  }
  .footer-bottom p {
    text-align: center !important;
  }
  .footer-bottom div {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
  }
}

body.menu-open {
  overflow: hidden;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.contact-info a,
.footer a[href^="mailto:"],
.footer a[href^="tel:"] {
  word-break: break-word;
}

.contact-form label {
  display: block;
  margin: 4px 0 -6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input[type="hidden"] {
  display: none;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thank-you-hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-menu.open {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }

  .footer-grid {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .contact-form label {
    font-size: 0.86rem;
  }

  .footer-actions {
    justify-content: center;
  }
}

body.menu-open {
  overflow: hidden;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.hero-card {
  overflow: visible;
}

.hero-card img {
  display: block;
  width: 100%;
}

.floating-stat {
  min-width: 142px;
  max-width: calc(100% - 32px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  z-index: 3;
}

.stat-one {
  left: 18px;
  bottom: 28px;
}

.stat-two {
  right: 18px;
  top: 24px;
}

.info-card {
  isolation: isolate;
  overflow: hidden;
}

.info-card.card-excellence,
.info-card.card-success,
.info-card.card-global {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
}

.info-card.card-excellence::before,
.info-card.card-success::before,
.info-card.card-global::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.85), transparent 38%), radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.8), transparent 34%);
}


.icon-circle {
  color: #ffffff;
  font-weight: 900;
  flex: 0 0 auto;
}

.icon-circle .material-symbols-rounded {
  font-size: 34px;
}

.stat-badge {
  font-size: 28px;
  letter-spacing: -0.06em;
}

.process-grid {
  align-items: stretch;
}

.process-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 245px;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.13), transparent 38%);
  pointer-events: none;
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-size: 31px;
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.18);
}

.process-card h4,
.process-card p,
.process-card .process-icon {
  position: relative;
  z-index: 1;
}

.mv-grid.mv-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.mv-grid.mv-grid-5 .mv-card {
  grid-column: span 2;
  min-height: 230px !important;
  height: 100%;
}

.mv-grid.mv-grid-5 .mv-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.mv-grid.mv-grid-5 .mv-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.mv-card {
  gap: 0;
}

.mv-card span.material-symbols-rounded {
  font-size: 24px;
}

.mv-card h2 {
  font-size: clamp(23px, 2.4vw, 34px) !important;
  line-height: 1.05;
}

.mv-card p {
  line-height: 1.72;
}

@media (max-width: 980px) {
  .mv-grid.mv-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mv-grid.mv-grid-5 .mv-card,
  .mv-grid.mv-grid-5 .mv-card:nth-child(4),
  .mv-grid.mv-grid-5 .mv-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero-card {
    overflow: hidden;
    gap: 12px;
  }

  .floating-stat {
    position: static !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
  }

  .floating-stat strong {
    font-size: 25px;
    flex: 0 0 auto;
  }

  .floating-stat span {
    text-align: right;
    font-size: 12px;
  }

  .process-card {
    min-height: 0;
    padding: 24px !important;
  }

  .process-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 28px;
  }

  .mv-grid.mv-grid-5 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .mv-grid.mv-grid-5 .mv-card,
  .mv-grid.mv-grid-5 .mv-card:nth-child(4),
  .mv-grid.mv-grid-5 .mv-card:nth-child(5) {
    grid-column: auto;
  }
}


.info-card.card-excellence,
.info-card.card-success,
.info-card.card-global {
  background-image: none !important;
}

.info-card.card-excellence::after,
.info-card.card-success::after,
.info-card.card-global::after {
  display: none !important;
  background: none !important;
}

.process-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.process-icon {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 34px !important;
  line-height: 1 !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.process-icon.material-symbols-rounded,
.process-card .material-symbols-rounded {
  font-size: 34px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer .socials,
.footer-actions {
  display: none !important;
}

@media (max-width: 640px) {
  .site-header .brand-mark {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 15px !important;
  }

  .site-header .brand-mark img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .site-header .brand-text {
    font-size: 14px !important;
    max-width: 170px !important;
    line-height: 1.05 !important;
  }

  .site-header .brand-text small {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .footer-bottom p,
  .footer-bottom div,
  .footer-bottom a {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-bottom div {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand-mark {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .site-header .brand-text {
    font-size: 13px !important;
    max-width: 145px !important;
  }

  .site-header .brand-text small {
    font-size: 8px !important;
  }
}
