:root {
  --aw-bg: #000000;
  --aw-surface: #0f1415;
  --aw-surface-2: #212a2b;
  --aw-footer: #1d2526;
  --aw-accent: #99c540;
  --aw-accent-2: #a8e03a;
  --aw-accent-soft: #d4ff7a;
  --aw-on-accent: #0b0d0a;
  --aw-text: #f5f5f5;
  --aw-muted: #c9d0c4;
  --aw-nav: #e6edf3;
  --aw-light: #f4f6f6;
  --aw-ink: #1c1f24;
  --aw-ink-soft: #4a5248;
  --aw-max: 1392px;
  --aw-radius: 32px;
  --aw-hero-radius: 50px;
  --aw-font: "Montserrat", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; background: var(--aw-bg); }
[id] { scroll-margin-top: 140px; }

body.aw-body {
  background: var(--aw-bg) !important;
  color: var(--aw-text);
  font-family: var(--aw-font) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  margin: 0;
}

body.aw-body h1,
body.aw-body h2,
body.aw-body h3,
body.aw-body h4,
body.aw-body h5,
body.aw-body p,
body.aw-body li {
  font-family: var(--aw-font) !important;
  overflow: visible !important;
  clip-path: none !important;
}

body.aw-body h1,
body.aw-body h2,
body.aw-body h3,
body.aw-body h4 {
  position: relative !important;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

body.aw-body p {
  margin-bottom: 0.85em;
  color: var(--aw-muted);
  line-height: 1.7;
}

body.aw-body img { max-width: 100%; height: auto; }
body.aw-body figure { margin: 0; }
body.aw-body a { text-decoration: none; }

body.aw-body.is-preloading { overflow: hidden; }

body.aw-body .preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aw-bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.aw-body .preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.aw-body .loading-container,
body.aw-body .loading {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

body.aw-body .loading-container {
  margin: 40px auto;
}

body.aw-body .loading {
  border: 1px solid transparent;
  border-color: transparent var(--aw-accent) transparent var(--aw-accent);
  animation: aw-preloader-spin 1.5s linear infinite;
  transform-origin: 50% 50%;
}

body.aw-body #loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

body.aw-body #loading-icon img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes aw-preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.aw-wrap {
  width: 100%;
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 0 8px 32px;
  overflow: visible;
}

/* Kill leftover animation wrappers that stacked/clipped letters */
.text-anime-style-2,
.text-anime-style-3,
.text-anime-style-2 span,
[data-cursor],
.word, .char, .line {
  overflow: visible !important;
  transform: none !important;
  opacity: 1 !important;
  clip-path: none !important;
  filter: none !important;
}
.image-anime { overflow: visible !important; }
.image-anime::after { display: none !important; }
.wow { visibility: visible !important; animation: none !important; }

/* Top bar */
.aw-topbar {
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 40px;
  position: sticky;
  top: 0;
  z-index: 230;
}
.aw-topbar a { color: inherit; text-decoration: none; }
.aw-topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
.aw-topbar-socials { display: flex; gap: 16px; }
.aw-topbar-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--aw-on-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--aw-accent); font-size: 13px;
}
.aw-topbar-logo {
  display: none;
  align-items: center;
  flex-shrink: 0;
}
.aw-topbar-logo img {
  height: 36px;
  width: auto;
  max-width: 168px;
  display: block;
}
.aw-hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 28px; height: 24px; padding: 0;
  position: absolute; left: 16px;
}
.aw-hamburger span {
  display: block; height: 2px; background: var(--aw-on-accent); border-radius: 2px; margin: 6px 0;
  transition: .3s;
}
.aw-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.aw-hamburger.is-open span:nth-child(2) { opacity: 0; }
.aw-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero shell (nav lives inside) */
.aw-hero {
  background: var(--aw-surface);
  border-radius: var(--aw-hero-radius);
  margin-top: -72px;
  padding: 96px 16px 72px;
  position: relative;
  z-index: 20;
  overflow: visible;
}
body.is-home .aw-hero {
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  padding-bottom: 110px;
}
body.is-about .aw-hero {
  min-height: 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}
body.is-about .aw-hero.is-inner {
  padding-bottom: 28px;
  margin-bottom: 0;
}
.aw-hero::before, .aw-hero::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 38%; max-width: 560px;
  pointer-events: none; opacity: .55;
  background: radial-gradient(circle at 30% 40%, rgba(191, 247, 71, .22), transparent 60%);
}
.aw-hero::after { right: 0; left: auto; background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .06), transparent 55%); }
.aw-hero > * { position: relative; }
.aw-hero-copy { z-index: 0; }
.aw-hero.is-inner {
  padding: 96px 24px 56px;
  border-radius: 32px;
  overflow: visible;
  margin-bottom: 8px;
  z-index: 30;
}
.aw-navrow:has(.aw-hasdrop:hover),
.aw-navrow:has(.aw-hasdrop:focus-within) {
  z-index: 240;
}

.aw-navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 10px 16px;
  position: sticky;
  top: 58px;
  z-index: 220;
  overflow: visible;
  background: var(--aw-surface);
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.aw-navrow.is-stuck {
  background: #12191a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.aw-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.aw-logo img { height: 48px; width: auto; max-width: 220px; }

.aw-pillnav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  margin: 0;
  list-style: none;
  border-radius: 9999px;
  background: linear-gradient(#212a2b, #212a2b), linear-gradient(#ffffff05, transparent);
  box-shadow: inset 0 1px 1px #fff3, inset 0 6px 12px #ffffff0a;
  overflow: visible;
}
.aw-pillnav > li { position: relative; margin: 0; }
.aw-pillnav > li > a,
.aw-pillnav > li > button {
  appearance: none;
  background: none; border: 0;
  color: var(--aw-nav);
  font-size: 14px;
  font-family: inherit;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.aw-pillnav > li > a:hover,
.aw-pillnav > li > button:hover { background: #e6edf30f; color: #fff; }
.aw-pillnav > li > a.is-active,
.aw-pillnav > li > button.is-active { color: var(--aw-accent); }
.aw-caret {
  width: 10px; height: 10px; opacity: .7;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}

.aw-drop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: min(560px, calc(100vw - 48px));
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: #1a2223;
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 300;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.35);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 20px;
  pointer-events: auto;
}
.aw-drop::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #1a2223;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateX(-50%) rotate(45deg);
}
.aw-drop a {
  display: block;
  color: #f3f5f5;
  font-size: 14px;
  line-height: 1.35;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.aw-drop a:first-child {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  color: var(--aw-accent);
}
.aw-drop a:hover {
  color: var(--aw-accent);
  background: rgba(191, 247, 71, 0.12);
}
.aw-drop a::after { display: none; }
.aw-pillnav > li.aw-hasdrop { position: relative; z-index: 130; }
.aw-hasdrop:hover,
.aw-hasdrop:focus-within { z-index: 310; }
.aw-hasdrop:hover .aw-drop,
.aw-hasdrop:focus-within .aw-drop { display: grid; }
.aw-hasdrop:hover > button,
.aw-hasdrop:focus-within > button {
  background: #e6edf30f;
  color: #fff;
}

.aw-pay {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--aw-accent);
  color: var(--aw-on-accent) !important;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: inset 0 1px 1px #ffffff52, inset 0 6px 12px #fff3;
}

.aw-hero-copy {
  max-width: 920px;
  margin: auto;
  text-align: center;
  padding: 8px 20px 24px;
}
.aw-hero-copy h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.28;
  color: #fff !important;
  margin: 0 0 20px;
  padding: 4px 6px 18px;
  overflow: visible !important;
}
.aw-accent {
  color: var(--aw-accent) !important;
  font-style: normal;
  text-decoration: none !important;
}
.aw-underlined {
  color: var(--aw-accent) !important;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.aw-underlined::after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: -24px;
  bottom: -10px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8C38 2 78 11 118 6S178 11 218 5' fill='none' stroke='%23BFF747' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
}
.aw-hero-copy p {
  color: var(--aw-muted) !important;
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 28px;
}
.aw-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.aw-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;    
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: .25s;
  font-family: inherit;
}
.aw-btn-primary {
  background: var(--aw-accent);
  color: var(--aw-on-accent) !important;
  box-shadow: inset 0 1px 1px #ffffff52, inset 0 6px 12px #fff3;
}
.aw-btn-primary:hover { filter: brightness(1.08); color: var(--aw-on-accent) !important; }
.aw-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid #ffffff40;
}
.aw-btn-ghost:hover { background: #ffffff10; }

.aw-page-title { text-align: center; padding: 16px 16px 0; }
.aw-page-title h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff !important;
  margin: 0;
  line-height: 1.3;
}
.aw-page-title p {
  color: var(--aw-muted) !important;
  margin: 12px auto 0;
  max-width: 640px;
}

/* Marquee — equal white logo cards */
.aw-marquee {
  overflow: hidden;
  margin: 80px 8px 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 8% 92%, #0000 100%);
  mask-image: linear-gradient(90deg, #0000 0%, #000 8% 92%, #0000 100%);
}
.aw-marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
  animation: aw-scroll 32s linear infinite;
}
.aw-marquee:hover .aw-marquee-track { animation-play-state: paused; }
.aw-marquee-item {
  width: 200px;
  height: 88px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.aw-marquee-item img {
  max-width: 164px !important;
  max-height: 56px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  filter: none !important;
  opacity: 1;
  background: transparent;
}
@keyframes aw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Scroll-in motion (Slashify-style) */
.aw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
.aw-reveal-up { transform: translateY(80px); }
.aw-reveal-left { transform: translateX(-80px); }
.aw-reveal-right { transform: translateX(80px); }
.aw-reveal-scale { transform: translateY(40px) scale(.95); }
.aw-reveal-pop { transform: translateY(20px) scale(.92); }
.aw-reveal.is-in { opacity: 1; transform: none; }

/* Sections — each block is its own stacked band */
.aw-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: 80px 8px 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  clear: both;
}
.aw-panel {
  background: var(--aw-surface);
  border-radius: var(--aw-radius);
  padding: 56px 40px;
}
.aw-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}
.aw-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(#212a2b, #212a2b), linear-gradient(180deg, #ffffff0f, #fff0);
  box-shadow: inset 0 1px 1px #fff3, inset 0 6px 12px #ffffff0a, 0 1px 2px #0003;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0;
}
.aw-h2 {
  display: block;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  color: #fff !important;
  margin: 0;
  line-height: 1.05;
  overflow: visible !important;
}
.aw-lead {
  color: #bebebe !important;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  max-width: 998px;
  margin: 0;
}

/* Certs */
.aw-certs { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; margin-top: 12px; }
.aw-cert { text-align: center; color: var(--aw-muted); font-size: 14px; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.aw-badge-svg { width: 110px; height: 110px; }
.aw-badge-svg svg { width: 100%; height: 100%; display: block; }
.aw-badge {
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 8px; color: #fff; font-weight: 800;
}
.aw-badge small { font-size: 9px; letter-spacing: 1.5px; font-weight: 700; }
.aw-badge b { font-size: 16px; line-height: 1; }
.aw-badge.gold { background: radial-gradient(circle at 30% 30%, #f4c84b, #b8881f); }
.aw-badge.blue { background: radial-gradient(circle at 30% 30%, #4f9cff, #1f5fb8); }
.aw-badge.green { background: radial-gradient(circle at 30% 30%, #4caf6a, #1f8a3d); }

/* About — stats bar */
/* About — stats bar under hero */
.aw-stats-hero {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -50px;
  z-index: 25;
}
.aw-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 8px;
}
.aw-stat {
  background: linear-gradient(#212a2b, #212a2b), linear-gradient(#0000001f, #0000);
  border-radius: 14px;
  flex: 1 1 180px;
  max-width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 4px #0000001a, 0 12px 32px -12px #0000001a, inset 0 6px 12px #ffffff0a, inset 0 1px 1px #fff3;
}
.aw-stat i { color: var(--aw-accent); font-size: 22px; width: 24px; text-align: center; }
.aw-stat p { margin: 0; color: #f5f5f5 !important; font-size: 16px; font-weight: 500; line-height: 1.25; }
.aw-stat-num { font-size: 22px; font-weight: 600; margin-right: 4px; }

/* About — who we are */
.aw-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 48px;
  padding: 0 12px;
}
.aw-who-left { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.aw-who-left h3 { color: #fff !important; font-size: 24px; font-weight: 500; margin: 0; text-align: center; }
.aw-industry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.aw-industry span {
  color: #f5f5f5;
  text-align: center;
  border: 1px solid #BFF74766;
  border-radius: 16px;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background .3s;
}
.aw-industry span:hover { background: #BFF74726; }
.aw-who-right { display: flex; flex-direction: column; }
.aw-who-right p { color: var(--aw-muted) !important; font-size: 18px; line-height: 1.7; margin: 0 0 20px; }
.aw-who-right .aw-btn { align-self: flex-start; margin-top: 8px; }

/* About — mission / why lists */
.aw-mv {
  background: var(--aw-surface);
  border-radius: 22px;
  padding: 56px 48px;
  text-align: center;
}
.aw-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 48px;
  text-align: left;
}
.aw-mv-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aw-mv-grid li {
  color: #f5f5f5 !important;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.aw-mv-grid i { color: var(--aw-accent); width: 18px; margin-top: 4px; flex-shrink: 0; }
.aw-process.is-about h3 { font-size: 16px; line-height: 20px; }

/* About — team */
.aw-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  padding: 0 12px;
}
.aw-team img { width: 100%; border-radius: 16px; object-fit: cover; max-height: 520px; }
.aw-team h3 { color: #fff !important; font-size: 24px; font-weight: 700; margin: 0 0 16px; }
.aw-team p { color: #cfcfcf !important; font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.aw-team .aw-btn { margin-top: 8px; }

/* About — Slashify-style founder/mission rows */
.aw-people {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  padding: 0 12px;
}
.aw-person {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  max-width: 1240px;
  width: 100%;
}
.aw-person figure { margin: 0; flex: 0 1 480px; }
.aw-person img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
}
.aw-person-copy { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.aw-person-copy h3 { color: #fff !important; font-size: 24px; font-weight: 700; margin: 0; }
.aw-person-copy p { color: #cfcfcf !important; font-size: 18px; line-height: 1.7; margin: 0; }
.aw-person-copy .aw-btn { width: fit-content; margin-top: 4px; }

/* About — agency pillars */
.aw-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
  padding: 0 12px;
}
.aw-pillar {
  background: #212a2b;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: inset 0 1px 1px #ffffff14;
}
.aw-pillar img { width: 48px; height: 48px; margin-bottom: 16px; }
.aw-pillar h3 { color: #fff !important; font-size: 18px; margin: 0 0 10px; }
.aw-pillar p { color: var(--aw-muted) !important; font-size: 14px; line-height: 1.65; margin: 0; }

/* About — mission / vision / value cards */
.aw-mv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 0 12px;
}
.aw-mv-card {
  background: var(--aw-surface);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}
.aw-mv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(191, 247, 71, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.aw-mv-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}
.aw-mv-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.aw-mv-card figure > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  transform-origin: center center;
}
.aw-mv-card:hover figure > img { transform: scale(1.06); }
.aw-mv-icon {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 20, 21, 0.92);
  border: 1px solid rgba(191, 247, 71, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.aw-mv-card:hover .aw-mv-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(191, 247, 71, 0.7);
  box-shadow: 0 10px 24px rgba(191, 247, 71, 0.16);
}
.aw-mv-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.aw-mv-card.is-in .aw-mv-icon {
  animation: aw-mv-icon-pop .65s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes aw-mv-icon-pop {
  0% { transform: scale(.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.aw-mv-body {
  padding: 24px 24px 28px;
}
.aw-mv-card h3 {
  color: #fff !important;
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.3;
}
.aw-mv-card p {
  color: var(--aw-muted) !important;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.aw-approach-section { padding-top: 48px; }

/* About — ISO badges */
.aw-iso {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.aw-iso img { max-height: 160px; width: auto; }

/* About — split agency + timeline */
.aw-about-agency {
  padding-top: 48px;
  position: relative;
  overflow: hidden;
}
.aw-about-agency::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(191, 247, 71, .14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: aw-about-glow-spin 22s linear infinite;
}
.aw-about-agency > * { position: relative; z-index: 1; }
@keyframes aw-about-glow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.aw-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
  padding: 0 12px;
}
.aw-about-intro { position: sticky; top: 24px; }
.aw-about-intro .aw-eyebrow { margin-bottom: 20px; }
.aw-about-intro .aw-h2 { text-align: left; max-width: 560px; }
.aw-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  text-decoration: none;
}
.aw-more > span:first-child {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #212a2b;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.aw-more-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.aw-more-arrow i { transform: rotate(-45deg); transition: transform .35s ease; }
.aw-more:hover .aw-more-arrow { transform: scale(1.06); }
.aw-more:hover .aw-more-arrow i { transform: rotate(-45deg) translate(2px, -2px); }
.aw-about-timeline {
  position: relative;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  --aw-timeline-dot: 20px;
}
.aw-about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 2px;
  height: calc(100% - 44px);
  margin-left: -1px;
  background: linear-gradient(180deg, var(--aw-accent) 0%, rgba(255, 255, 255, 0.18) 100%);
  border-radius: 1px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
}
.aw-about-timeline.is-line-in::before {
  transform: scaleY(1);
}
.aw-about-timeline article { position: relative; }
.aw-about-timeline article::before {
  content: "";
  position: absolute;
  left: calc(-48px - var(--aw-timeline-dot) / 2);
  top: 10px;
  width: var(--aw-timeline-dot);
  height: var(--aw-timeline-dot);
  background: url("../images/dot-green-icon.svg") no-repeat center / contain;
  border-radius: 0;
  box-shadow: none;
  transform: scale(0);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}
.aw-about-timeline article.is-in::before {
  transform: scale(1);
  opacity: 1;
}
.aw-about-timeline article img {
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.aw-about-timeline article.is-in img {
  animation: aw-about-icon-pop .65s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes aw-about-icon-pop {
  0% { transform: translateY(10px) scale(.88); opacity: .4; }
  100% { transform: none; opacity: 1; }
}
.aw-about-timeline img { width: 40px; height: 40px; margin-bottom: 14px; }
.aw-about-timeline h3 { color: #fff !important; font-size: 22px; margin: 0 0 10px; }
.aw-about-timeline p { color: var(--aw-muted) !important; font-size: 15px; line-height: 1.7; margin: 0; }

.aw-about-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 0 12px;
}
.aw-about-approach .aw-h2 { text-align: left; }
.aw-about-approach p { color: var(--aw-muted) !important; font-size: 16px; line-height: 1.7; margin: 0; }

/* About — who we are + stats */
.aw-who-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
  padding: 0 12px;
  width: 100%;
  min-width: 0;
}
.aw-who-copy .aw-h2,
.aw-who-copy .aw-lead { text-align: left; }
.aw-who-copy .aw-lead { max-width: none; margin: 16px 0 28px; }
.aw-who-media { display: flex; flex-direction: column; gap: 18px; }
.aw-who-video {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
}
.aw-who-video img { width: 100%; height: 280px; object-fit: cover; display: block; }
.aw-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 3px;
}
.aw-who-reviews { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.aw-who-reviews .aw-stars { color: var(--aw-accent) !important; letter-spacing: 2px; margin: 0; font-size: 16px; }
.aw-who-reviews p { color: var(--aw-muted) !important; margin: 0; font-size: 14px; }
.aw-who-avatars { display: flex; }
.aw-who-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
  margin-left: -10px;
}
.aw-who-avatars img:first-child { margin-left: 0; }
.aw-contact-now {
  color: var(--aw-accent) !important;
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
}
.aw-contact-now i { transform: rotate(-45deg); margin-left: 6px; }
.aw-expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-width: 0;
}
.aw-expert-card {
  background: #212a2b;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: inset 0 1px 1px #ffffff14;
  min-width: 0;
}
.aw-expert-card:nth-child(even) { margin-top: 36px; }
.aw-expert-card img { width: 40px; height: 40px; margin-bottom: 16px; }
.aw-expert-card h3 { color: var(--aw-accent) !important; font-size: 42px; margin: 0 0 8px; font-weight: 700; }
.aw-expert-card p { color: #fff !important; font-size: 14px; line-height: 1.45; margin: 0; }

/* About — partners + badges */
.aw-partners-box {
  background: var(--aw-surface);
  border-radius: 28px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.aw-partners-copy .aw-h2 { text-align: left; }
.aw-partners-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.aw-partners-logos span {
  background: #fff;
  border-radius: 16px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}
.aw-partners-logos img { max-width: 140px; max-height: 48px; object-fit: contain; }
.aw-iso-box {
  display: block;
  text-align: center;
}
.aw-iso-box .aw-h2 { text-align: center; }

/* About — FAQ with photos */
.aw-about-faq {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 0 12px;
}
.aw-about-faq .aw-h2 { text-align: left; }
.aw-faq-photos {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0;
  padding: 52px 64px 0 0;
  align-self: start;
  flex-shrink: 0;
}
.aw-faq-photo-2 {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 0;
}
.aw-faq-photo-1 {
  width: 58%;
  max-width: 270px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.aw-about-faq .aw-faq { max-width: none; margin: 24px 0 0; }
.aw-about-faq .aw-faq-note { text-align: left; margin-left: 0; }
.aw-faq.aw-faq-plus details {
  border-radius: 18px;
  border: 1px solid #ffffff18;
  background: #121616;
  box-shadow: none;
}
.aw-faq.aw-faq-plus summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.aw-faq.aw-faq-plus details[open] summary::after {
  content: "–";
  background: #fff;
  color: var(--aw-on-accent);
}

/* About — let’s work together */
.aw-together {
  position: relative;
  text-align: center;
  padding: 72px 24px 40px;
  overflow: hidden;
}
.aw-together::before {
  content: "";
  position: absolute;
  inset: 10% 20%;
  background: radial-gradient(circle, rgba(191,247,71,.18), transparent 70%);
  pointer-events: none;
}
.aw-together p {
  position: relative;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  margin: 0 0 16px;
}
.aw-together h2 {
  position: relative;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff !important;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -.02em;
}
.aw-together h2 span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  margin-left: 6px;
  vertical-align: super;
}
.aw-together a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 150px;
  height: 150px;
  margin-top: -28px;
  border-radius: 50%;
  background: var(--aw-accent);
  color: var(--aw-on-accent) !important;
  font-weight: 700;
  text-decoration: none;
  transform: rotate(-12deg);
}
.aw-together a i { transform: rotate(-33deg); }

/* Services — Slashify cards, Alphawizz lime */
.aw-services,
.aw-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 88px 40px;
  width: 100%;
  margin-top: 72px;
  padding-top: 56px;
  overflow: visible;
  align-items: stretch;
  list-style: none;
}
body.aw-body a.aw-svc,
body.aw-body .aw-service,
.aw-svc {
  background-color: #0f1114;
  background-image: linear-gradient(232.96deg, #0e0e10 27.06%, #17171a3b 92.12%), url("../images/cardBg.svg");
  background-position: 0 0, 0 80%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #ffffff10;
  border-radius: 20px;
  padding: 56px 28px 28px;
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  min-height: 320px;
  height: 100%;
  position: relative;
  overflow: visible;
  box-shadow: inset 0 1px 1px #ffffff14;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
body.aw-body a.aw-svc:hover,
.aw-svc:hover,
.aw-service:hover {
  transform: translateY(-4px);
  color: inherit !important;
  border-color: #ffffff24;
  box-shadow: 0 10px 30px #00000059;
}
.aw-svc-badge {
  z-index: 2;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: #090b0d;
  border: 1px solid #2a2a2e;
  display: grid;
  place-items: center;
  position: absolute;
  top: -41px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  box-shadow: 0 8px 20px #00000066;
  transition: border-color .3s;
  pointer-events: none;
}
.aw-svc-badge i {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  transform: rotate(-45deg);
  margin: 0 !important;
  display: flex;
}
body.aw-body a.aw-svc:hover .aw-svc-badge {
  border-color: var(--aw-accent);
}
body.aw-body .aw-svc h3,
body.aw-body .aw-service h3 {
  color: #e6e6e6 !important;
  font-size: 22px;
  margin: 8px 0 0 !important;
  font-weight: 700;
  line-height: 1.15 !important;
  letter-spacing: 0;
  position: relative !important;
}
.aw-svc-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: 3px;
  margin: 0;
  background: none;
  box-shadow: none;
  flex-shrink: 0;
}
.aw-svc-rule::before,
.aw-svc-rule::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--aw-accent);
}
.aw-svc-rule::before { width: 46px; }
.aw-svc-rule::after { width: 14px; }
body.aw-body .aw-svc p,
body.aw-body .aw-service p {
  color: #cfcfcf !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4 !important;
  margin: 0 !important;
  flex: 1 1 auto;
  max-width: 320px;
}
.aw-svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #18181d;
  border: 1px solid #ffffff18;
  color: #e6e6e6 !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  margin-top: auto;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .1s;
}
.aw-svc-arrow { display: inline-block; transition: transform .2s; }
body.aw-body a.aw-svc:hover .aw-svc-cta {
  background: #2a2f36;
  border-color: #ffffff28;
  color: #fff !important;
}
body.aw-body a.aw-svc:hover .aw-svc-arrow { transform: translateX(3px); }
body.aw-body a.aw-svc:active .aw-svc-cta { transform: translateY(1px); }
.aw-svc:not(:has(.aw-svc-badge)) { padding-top: 36px; }

/* Feature split (about + inner) */
.aw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.aw-split img { width: 100%; border-radius: 24px; object-fit: cover; max-height: 420px; }
.aw-split ul { margin: 16px 0 24px; padding: 0; list-style: none; }
.aw-split li { color: var(--aw-muted) !important; padding: 8px 0 8px 22px; position: relative; }
.aw-split li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--aw-accent); }

/* AI section */
.aw-ai {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.aw-ai img { width: 100%; border-radius: 24px; object-fit: cover; max-height: 460px; }
.aw-ai p { color: var(--aw-muted) !important; font-size: 16px; line-height: 1.7; }
.aw-ai ul { margin: 16px 0 28px; padding: 0; list-style: none; }
.aw-ai li { color: #fff !important; padding: 8px 0 8px 22px; position: relative; }
.aw-ai li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--aw-accent); }

/* Process diamonds — unrotated boxes + Slashify diamond graphic */
.aw-process {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  margin: 48px auto 0;
  padding: 0 50px;
  min-height: 470px;
  width: 100%;
  max-width: 1392px;
}
.aw-process li {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  height: 290px;
  margin: 0 -50px;
  padding: 20px 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/aw-gradBox.png") 50% / cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.aw-process li:nth-child(even) { margin-top: 180px; }
.aw-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 210px;
  left: 218px;
  width: 16px;
  height: 28px;
  background: url("../images/aw-process-arrow.svg") 50% / contain no-repeat;
  transform: rotate(-45deg);
}
.aw-process li:nth-child(even)::after {
  top: 17px;
  left: 218px;
  transform: rotate(225deg);
}
.aw-process li:last-child::after { display: none; }
.aw-process li.aw-reveal,
.aw-process li.aw-reveal-scale {
  opacity: 0;
  transform: none;
}
.aw-process li.aw-reveal.is-in {
  opacity: 1;
  transform: none;
}
.aw-process h3 {
  transform: none;
  color: #e6e6e6 !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  width: auto;
  max-width: 150px;
  margin: 0;
}

/* Why */
.aw-why { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.aw-why-item {
  background: #212a2b;
  border-radius: 20px;
  padding: 24px;
}
.aw-why-item h3 { color: #fff !important; font-size: 18px; margin: 0 0 8px; }
.aw-why-item p { color: var(--aw-muted) !important; font-size: 14px; line-height: 1.6; margin: 0; }
.aw-why-panel {
  background: var(--aw-surface);
  border-radius: var(--aw-radius);
  padding: 56px 40px;
}
.aw-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}
.aw-why-row p { color: var(--aw-muted) !important; }
.aw-why-row img { width: 100%; border-radius: 24px; object-fit: cover; max-height: 420px; }
.aw-why-list { list-style: none; padding: 0; margin: 20px 0; }
.aw-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #fff !important;
  margin: 0 0 14px;
  font-size: 15px;
}
.aw-why-list i { color: var(--aw-accent); width: 20px; margin-top: 3px; }

/* Integrations — dual opposite marquees */
.aw-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.aw-chip {
  background: #212a2b;
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}
.aw-int-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}
.aw-int-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 8% 92%, #0000 100%);
  mask-image: linear-gradient(90deg, #0000 0%, #000 8% 92%, #0000 100%);
}
.aw-int-marquee:hover .aw-int-track { animation-play-state: paused; }
.aw-int-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.aw-int-fwd { animation: aw-scroll 50s linear infinite; }
.aw-int-rev { animation: aw-scroll-rev 50s linear infinite; }
@keyframes aw-scroll-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.aw-int-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(232.96deg, #0e0e10 27.06%, #17171a99 92.12%);
  border: 1px solid #ffffff0f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  flex: none;
  transition: border-color .25s, transform .25s;
}
.aw-int-item:hover { border-color: #BFF74766; transform: translateY(-2px); }
.aw-int-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #ffffff12;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aw-int-logo img { width: 28px; height: 28px; object-fit: contain; display: block; }
.aw-int-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.aw-int {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #161b1c;
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 1px 1px #ffffff12;
}
.aw-int-ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff; flex-shrink: 0;
}

/* Work CSS marquee */
.aw-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}
.aw-work .aw-proj { width: auto; max-width: 100%; }
.aw-work-track .aw-proj,
.aw-work-marquee .aw-proj {
  width: 440px;
  max-width: 440px;
  flex-shrink: 0;
}
.aw-work-card {
  background: #212a2b;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .25s;
}
.aw-work-card:hover { transform: translateY(-4px); color: inherit; }
.aw-work-card img { width: 100%; height: 200px; object-fit: cover; display: block; background: #111; }
.aw-work-card div { padding: 16px 18px 20px; }
.aw-work-card h3 { color: #fff !important; font-size: 16px; margin: 0 0 6px; }
.aw-work-card p { color: var(--aw-muted) !important; font-size: 13px; margin: 0; }
.aw-work-marquee {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  padding: 16px 0 28px;
  position: relative;
  pointer-events: auto;
}
.aw-work-marquee:hover .aw-work-track { animation-play-state: paused; }
.aw-work-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: aw-scroll 120s linear infinite;
  pointer-events: auto;
}
body.aw-body a.aw-proj,
.aw-proj {
  background: #212a2b;
  border: 1.5px solid #2f3a3b;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 440px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px #00000040;
  transition: transform .4s, box-shadow .4s;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
body.aw-body a.aw-proj:hover,
.aw-proj:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px #BFF74740;
  color: inherit !important;
  border-color: #3d4a4b;
}
.aw-proj figure {
  height: 260px;
  overflow: hidden;
  margin: 0;
  background: #12161a;
  border-radius: 22px 22px 0 0;
  flex-shrink: 0;
}
.aw-proj img,
.aw-proj figure img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: top center;
  background: #12161a;
  display: block;
  transition: transform .6s;
  pointer-events: none;
}
.aw-proj:hover figure img { transform: scale(1.06); }
.aw-proj-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  pointer-events: none;
}
body.aw-body .aw-proj h3 {
  color: #fff !important;
  font-size: 20px;
  margin: 0 !important;
  font-weight: 600;
  line-height: 1.25 !important;
}
body.aw-body .aw-proj-desc {
  color: var(--aw-muted) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.aw-proj-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}
.aw-proj-foot .aw-tags {
  flex: 1;
  min-width: 0;
}
.aw-proj-foot em {
  margin-top: 0;
  flex-shrink: 0;
}
body.aw-body .aw-proj h3 span {
  display: block;
  color: #d7d7d7 !important;
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
  opacity: .85;
}
.aw-proj p { color: var(--aw-muted) !important; font-size: 13px; margin: 0 0 10px; }
.aw-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.aw-tags span {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 15px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(#2a3334, #2a3334), linear-gradient(180deg, #ffffff14, #fff0);
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: .02em;
}
body.aw-body .aw-proj em {
  font-style: normal;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* CTA banner */
.aw-banner {
  position: relative;
  overflow: hidden;
  background: radial-gradient(90% 80% at 50% -10%, #d8ff7a 0%, #BFF747 22%, #4a5c14 58%, #12180a 100%);
  border-radius: var(--aw-radius);
  padding: 72px 32px;
  text-align: center;
}
.aw-banner::before {
  content: "";
  position: absolute;
  inset: 20% -10% -50%;
  background: repeating-radial-gradient(circle at 50% 100%, transparent 0 48px, rgba(255,255,255,.1) 49px 50px);
  pointer-events: none;
}
.aw-banner h2, .aw-banner p { position: relative; z-index: 1; }
.aw-banner h2 { color: #fff !important; font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; }
.aw-banner p { color: #f4ffe8 !important; margin: 0 0 28px; font-size: 16px; }
.aw-btn-white {
  position: relative;
  z-index: 1;
  background: #fff !important;
  color: var(--aw-on-accent) !important;
}
.aw-btn-white:hover { filter: brightness(.95); }

/* Testimonials */
.aw-testimonials {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.aw-testimonials .aw-center { gap: 16px; }
.aw-quote-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
}
.aw-quote-marquee:hover .aw-quote-track { animation-play-state: paused; }
.aw-quote-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: aw-scroll 100s linear infinite;
}
.aw-quote {
  background: #161b1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  width: min(400px, 82vw);
  flex-shrink: 0;
  height: auto;
}
.aw-testimonials .aw-stars {
  color: var(--aw-accent);
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: 14px;
}
.aw-quote p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
  color: var(--aw-muted) !important;
}
.aw-quote h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
}
.aw-quote span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #8a9488 !important;
}

/* FAQ pills */
.aw-faq { max-width: 860px; margin: 28px auto 0; }
.aw-faq details {
  background: #161b1c;
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 0;
  box-shadow: inset 0 1px 1px #ffffff18;
}
.aw-faq details[open] { border-radius: 24px; }
.aw-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}
.aw-faq summary::-webkit-details-marker { display: none; }
.aw-faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.aw-faq details[open] summary::after { content: "×"; }
.aw-faq details p {
  color: var(--aw-muted) !important;
  margin: 0;
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 1.6;
}
.aw-faq-note { text-align: center; margin: 22px 0 16px; color: var(--aw-muted) !important; }
.aw-faq-note a { color: var(--aw-accent) !important; font-weight: 700; }

/* Contact form card */
.aw-form-card {
  max-width: 860px;
  margin: 36px auto 0;
  background: #161b1c;
  border-radius: 28px;
  padding: 36px;
  box-shadow: inset 0 1px 1px #ffffff14;
}
.aw-pay-card {
  max-width: 720px;
}
.aw-pay-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aw-pay-form .aw-row { margin-bottom: 0; }
.aw-pay-form .aw-btn-block { margin-top: 8px; min-height: 52px; }
.aw-pay-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
}
.aw-pay-review > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 14px 16px;
  background: #0f1415;
  border: 1px solid #ffffff14;
  border-radius: 14px;
}
.aw-pay-review dt {
  margin: 0;
  color: var(--aw-muted);
  font-size: 13px;
  font-weight: 500;
}
.aw-pay-review dd {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}
.aw-contact { display: block; }
.aw-contact-aside {
  background: #212a2b;
  border-radius: 20px;
  padding: 28px 24px;
}
.aw-contact-aside h3 { color: #fff !important; font-size: 18px; margin: 0 0 16px; }
.aw-contact-aside p { color: var(--aw-muted) !important; margin: 0 0 18px; font-size: 14px; }
.aw-contact-aside a { color: var(--aw-accent) !important; }
.aw-contact-aside strong { color: #fff; display: block; margin-bottom: 4px; }

.aw-form input,
.aw-form textarea,
.aw-form select,
.contact-us-form input,
.contact-us-form textarea,
.contact-us-form select,
.hireCardContainer input,
form input.form-control,
form textarea.form-control,
form select.form-control {
  width: 100%;
  background: #f4ffe8 !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  color: #1c1f24 !important;
  font-family: inherit;
  outline: none;
}
.aw-form-dark input,
.aw-form-dark textarea,
.aw-form-dark select {
  background: #0f1415 !important;
  color: #fff !important;
  border: 1px solid #ffffff18 !important;
}
.aw-form-dark input::placeholder,
.aw-form-dark textarea::placeholder { color: #8b9288; }
.aw-form label {
  display: block;
  font-size: 13px;
  color: var(--aw-muted);
  margin: 0 0 8px;
  font-weight: 500;
}
.aw-form textarea, .contact-us-form textarea { min-height: 140px; resize: vertical; }
.aw-form .aw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.aw-btn-block { width: 100%; margin-top: 8px; }
.aw-note { color: var(--aw-muted) !important; font-size: 13px; margin: 12px 0 18px; }
.aw-note a { color: var(--aw-accent) !important; }
.aw-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  color: var(--aw-muted);
  font-size: 13px;
  line-height: 1.5;
}
.aw-check input { margin-top: 3px; accent-color: var(--aw-accent); width: 16px; height: 16px; flex-shrink: 0; }
.aw-check a { color: var(--aw-accent) !important; }

.aw-form-lead { display: flex; flex-direction: column; gap: 16px; }
.aw-form-lead > div { margin: 0; }
.aw-phone-field {
  display: flex;
  align-items: stretch;
  border: 1px solid #ffffff18;
  border-radius: 14px;
  overflow: hidden;
  background: #0f1415;
}
.aw-phone-field:focus-within {
  border-color: var(--aw-accent);
  box-shadow: 0 0 0 3px rgba(191, 247, 71, .2);
}
.aw-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #212a2b;
  border-right: 1px solid #ffffff18;
  flex-shrink: 0;
}
.aw-phone-field input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.aw-form-error {
  color: #ff8a80;
  font-size: 13px;
  margin: 0;
  text-align: center;
}
.aw-required { color: var(--aw-accent); font-weight: 700; }
.aw-field-error {
  color: #ff8a80;
  font-size: 12px;
  line-height: 1.35;
  margin: 6px 0 0;
}
.aw-field.is-invalid label { color: #ff8a80; }
.aw-field.is-invalid input,
.aw-field.is-invalid textarea,
.aw-field.is-invalid select {
  border-color: #ff8a80 !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 128, .15) !important;
}
.aw-field.is-invalid .aw-phone-field {
  border-color: #ff8a80;
  box-shadow: 0 0 0 3px rgba(255, 138, 128, .15);
}
.aw-form-dark input:focus,
.aw-form-dark textarea:focus,
.aw-form-dark select:focus {
  border-color: var(--aw-accent) !important;
  box-shadow: 0 0 0 3px rgba(191, 247, 71, .2) !important;
}
.aw-field.is-invalid input:focus,
.aw-field.is-invalid textarea:focus,
.aw-field.is-invalid select:focus,
.aw-field.is-invalid .aw-phone-field:focus-within {
  border-color: #ff8a80 !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 128, .2) !important;
}
.aw-btn-send { position: relative; border-radius: 999px !important; margin-top: 4px; }
.aw-btn-send:disabled { opacity: .85; cursor: not-allowed; }
.aw-btn-send.is-loading .aw-btn-send-label { visibility: hidden; }
.aw-btn-send.is-loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(11, 13, 10, .2);
  border-top-color: var(--aw-on-accent);
  border-radius: 50%;
  animation: aw-popup-spin .8s linear infinite;
}

.aw-jobs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.aw-job {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #212a2b;
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  min-height: 160px;
  transition: transform .25s;
}
.aw-job:hover { transform: translateY(-3px); color: inherit; }
.aw-job img { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.aw-job h3 { color: #fff !important; font-size: 18px; margin: 0 0 8px; }
.aw-job p { color: var(--aw-muted) !important; font-size: 13px; line-height: 1.6; margin: 0; }
.aw-job span { color: var(--aw-accent); font-size: 13px; font-weight: 600; white-space: nowrap; margin-left: auto; align-self: center; }

/* Footer */
.aw-footer { margin: 64px auto 24px; }
.aw-footer-inner {
  background: var(--aw-footer);
  border-radius: var(--aw-radius);
  padding: 64px 40px 110px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 32px;
}
.aw-footer h4 { color: #f5f5f5 !important; font-size: 16px; margin: 0 0 16px; }
.aw-footer ul { list-style: none; padding: 0; margin: 0; }
.aw-footer li { margin: 0 0 8px; color: var(--aw-muted); }
.aw-footer a { color: var(--aw-muted); font-size: 14px; text-decoration: none; }
.aw-footer a:hover { color: #fff; }
.aw-footer-quick a { color: #fff; }
.aw-footer-quick a:hover,
.aw-footer-quick a.is-active { color: var(--aw-accent); }
.aw-footer p { color: var(--aw-muted) !important; font-size: 14px; line-height: 1.6; }
.aw-news {
  display: flex;
  margin-top: 12px;
  max-width: 100%;
  width: 100%;
}
.aw-news input {
  flex: 1; min-width: 0; height: 55px; border: 0; border-radius: 14px 0 0 14px;
  background: #f4ffe8; padding: 0 16px; font-family: inherit;
}
.aw-news button {
  height: 55px; border: 0; border-radius: 0 14px 14px 0;
  background: var(--aw-accent); color: var(--aw-on-accent); padding: 0 22px;
  font-weight: 600; cursor: pointer; font-family: inherit;
  white-space: nowrap; flex-shrink: 0;
}
@media (min-width: 992px) {
  .aw-news {
    margin-right: 80px;
    max-width: calc(100% - 80px);
  }
}
.aw-copy {
  display: flex; justify-content: center; align-items: center;
  padding: 24px 8px 96px; color: #f5f5f5; font-size: 14px; flex-wrap: wrap; gap: 12px;
  text-align: center;
}

/* Mobile drawer */
.aw-drawer {
  display: none;
  position: fixed; top: 52px; left: 16px;
  background: #212a2b;
  border-radius: 16px;
  padding: 28px 24px;
  z-index: 50;
  min-width: 220px;
  box-shadow: 0 16px 40px #0008;
}
.aw-drawer.is-open { display: flex; flex-direction: column; gap: 14px; }
.aw-drawer a { color: #fff; font-size: 18px; font-weight: 500; text-decoration: none; padding: 4px 0; }
body.aw-menu-open { overflow: hidden; }

/* Floating contact + WhatsApp + back to top */
.aw-fabs {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}
.aw-contact-fab {
  width: 52px;
  height: 52px;
  border: 2px dashed var(--aw-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-accent);
  background: rgba(15, 20, 21, .92);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: border-color .2s, color .2s, background .2s, border-style .2s;
}
.aw-contact-fab i { font-size: 22px; line-height: 1; }
.aw-contact-fab:hover {
  color: var(--aw-on-accent);
  background: var(--aw-accent);
  border-style: solid;
}
a.aw-contact-fab.aw-top-fab {
  display: none;
}
a.aw-contact-fab.aw-top-fab.is-visible {
  display: flex;
}

/* Hide old chrome */
body.aw-body .main-header,
body.aw-body .header-sticky,
body.aw-body .navbar,
body.aw-body .footer-work-together,
body.aw-body .bottomTom1,
body.aw-body .page-header,
body.aw-body .our-scrolling-ticker,
body.aw-body .magic-cursor,
body.aw-body .cursor-inner,
body.aw-body .cursor-outer,
body.aw-body #menu,
body.aw-body .responsive-menu,
body.aw-body .slicknav_menu,
body.aw-body .navbar-toggle { display: none !important; }

body.aw-body .container { max-width: 1200px; }

body.aw-body .section-title { margin: 0 0 24px; text-align: center; }
body.aw-body .section-title h3 { color: var(--aw-accent) !important; background: none !important; letter-spacing: .04em; }
body.aw-body .section-title h2,
body.aw-body .section-title h1 { color: #fff !important; }

body.aw-body .btn-default,
body.aw-body .btn-highlighted,
body.aw-body .readmore-btn {
  background: var(--aw-accent) !important;
  color: var(--aw-on-accent) !important;
  border-radius: 8px !important;
  border: 0 !important;
  box-shadow: inset 0 1px 1px #ffffff52 !important;
}

body.aw-body .our-Project-nav { margin: 0; }
body.aw-body .our-Project-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
body.aw-body .our-Project-nav li { margin: 0; }
body.aw-body .our-Project-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #161b1c;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
body.aw-body .our-Project-nav a:hover {
  border-color: rgba(191, 247, 71, 0.35);
  color: var(--aw-accent) !important;
}
body.aw-body .our-Project-nav a.active-btn {
  background: var(--aw-accent);
  color: var(--aw-on-accent) !important;
  border-color: var(--aw-accent);
}

/* Projects page grid */
body.is-projects .aw-projects-section { padding-top: 16px; }
.aw-projects-panel {
  background: var(--aw-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px 20px 36px;
}
.aw-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}
.aw-projects-grid .aw-proj {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  flex-shrink: 1 !important;
  height: 100%;
}
.aw-projects-grid .aw-proj:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(191, 247, 71, 0.12);
}
.aw-projects-grid .aw-proj figure { height: 220px; }
.aw-projects-grid .aw-proj-body {
  min-height: 0;
  padding: 16px 18px 18px;
}
.aw-projects-grid .aw-proj-desc {
  font-size: 13px;
  line-height: 1.35;
}
.aw-projects-grid .aw-proj-foot {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.aw-projects-grid .aw-tags {
  flex-wrap: wrap;
}
.aw-projects-grid .aw-tags span {
  height: auto;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}
body.aw-body .aw-proj em .aw-svc-arrow {
  color: var(--aw-accent);
  transition: transform .2s ease;
}
body.aw-body .aw-proj:hover em .aw-svc-arrow { transform: translate(3px, -3px); }

/* Service detail */
body.aw-body .page-service-single {
  padding: 32px 8px 80px !important;
  background: transparent !important;
}
body.aw-body .page-service-single::before,
body.aw-body .page-service-single::after,
body.aw-body .service-catagery-list::before { display: none !important; }
body.aw-body .service-single-content {
  background: var(--aw-surface);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
}
body.aw-body .service-feature-image img { width: 100%; border-radius: 20px; }
body.aw-body .service-entry h2 { color: #fff !important; margin: 24px 0 12px; font-size: 28px; }
body.aw-body .service-entry h2 span { color: var(--aw-accent); }
body.aw-body .service-entry p { color: var(--aw-muted) !important; }
body.aw-body .service-sidebar { background: #212a2b; border-radius: 24px; padding: 24px; position: sticky; top: 96px; }
body.aw-body .service-catagery-list h3,
body.aw-body .cta-contact-content h3 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 4px;
}
body.aw-body .service-catagery-list ul { list-style: none; padding: 0; margin: 12px 0 0; }
body.aw-body .service-catagery-list li { margin: 0; }
body.aw-body .service-catagery-list a {
  display: block;
  color: var(--aw-muted);
  padding: 11px 14px;
  margin-bottom: 4px;
  border-radius: 10px;
  border-bottom: 0;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
body.aw-body .service-catagery-list a:hover {
  color: var(--aw-accent);
  background: rgba(191, 247, 71, 0.08);
}
body.aw-body .service-catagery-list a.is-active {
  color: var(--aw-on-accent);
  background: var(--aw-accent);
  font-weight: 600;
}
body.aw-body .sidebar-cta-box {
  margin-top: 24px;
  background:
    linear-gradient(145deg, rgba(191, 247, 71, 0.08) 0%, rgba(22, 27, 28, 0.96) 42%),
    url("../images/sidebar-cta-bg.svg") center / cover no-repeat;
  border: 1px solid rgba(191, 247, 71, 0.18);
  border-radius: 20px;
  padding: 22px 20px 20px;
}
body.aw-body .sidebar-cta-box .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(191, 247, 71, 0.14);
  border: 1px solid rgba(191, 247, 71, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body.aw-body .sidebar-cta-box .icon-box img { width: 28px; height: 28px; }
body.aw-body .cta-contact-content { margin-bottom: 4px; }
body.aw-body .cta-contact-content p {
  color: var(--aw-muted) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0 0;
}
body.aw-body .cta-contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
body.aw-body .aw-sidebar-wa,
body.aw-body .aw-sidebar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.aw-body .aw-sidebar-wa {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
body.aw-body .aw-sidebar-wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  color: #fff !important;
}
body.aw-body .aw-sidebar-call {
  flex: 1;
  min-height: 44px;
  gap: 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(191, 247, 71, 0.1);
  border: 1px solid rgba(191, 247, 71, 0.28);
  color: var(--aw-accent) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
body.aw-body .aw-sidebar-call:hover {
  background: rgba(191, 247, 71, 0.16);
  border-color: rgba(191, 247, 71, 0.45);
  color: #fff !important;
  transform: translateY(-1px);
}
body.aw-body .aw-sidebar-call-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
body.aw-body .faq-accordion { margin-top: 8px; }
body.aw-body .faq-accordion .accordion-item {
  background: #161b1c !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-radius .25s ease, border-color .25s ease;
}
body.aw-body .faq-accordion .accordion-item:has(.accordion-collapse.show) {
  border-radius: 22px !important;
  border-color: rgba(191, 247, 71, 0.28) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}
body.aw-body .faq-accordion .accordion-button {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  padding: 18px 52px 18px 22px;
}
body.aw-body .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--aw-accent) !important;
  background: transparent !important;
}
body.aw-body .faq-accordion .accordion-body {
  color: var(--aw-muted) !important;
  background: transparent !important;
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.65;
}
body.aw-body .faq-accordion .accordion-body p { margin: 0; color: var(--aw-muted) !important; }
body.aw-body .our-faq-section { margin-top: 32px; }
body.aw-body .faq-accordion .accordion-button::after {
  background-image: none !important;
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  width: auto;
  height: auto;
  transform: none !important;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -11px;
  filter: none !important;
}
body.aw-body .faq-accordion .accordion-button:not(.collapsed)::after {
  content: "×";
  color: var(--aw-accent);
  filter: none !important;
}
body.aw-body .page-service-single .row {
  --bs-gutter-x: 28px;
  align-items: flex-start;
}

body.aw-body .staffAboutSection {
  padding: 8px 8px 48px;
}
body.aw-body .staffAboutSection .about-agency-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
body.aw-body .staffAboutSection .about-agency-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--aw-surface);
  border-radius: 20px;
  padding: 22px 24px;
}
body.aw-body .staffAboutSection .about-agency-item .icon-box {
  flex-shrink: 0;
  width: 48px;
}
body.aw-body .staffAboutSection .about-agency-item .icon-box img {
  width: 40px;
  height: 40px;
}
body.aw-body .staffAboutSection .agency-item-content h3 {
  color: #fff !important;
  font-size: 20px;
  margin: 0 0 8px;
}
body.aw-body .staffAboutSection .agency-item-content p,
body.aw-body .staffAboutSection .dimondList li {
  color: var(--aw-muted) !important;
  margin: 0;
  line-height: 1.7;
}
body.aw-body .staffAboutSection .dimondList {
  margin-top: 10px;
  padding-left: 18px;
}
body.aw-body .staffAboutSection .dimondList li { margin-bottom: 6px; }
body.aw-body .staffAboutSection .dimondList span { color: var(--aw-accent); font-weight: 600; }

/* Legal / payment / career apply */
body.aw-body .termsSection,
body.aw-body .blogSection {
  padding: 32px 0 80px;
}
body.aw-body .termsSection .section-title,
body.aw-body .blogSection .section-title { display: block; margin-bottom: 24px; }
body.aw-body .termsSection .section-title h2,
body.aw-body .blogSection .section-title h2 {
  color: #fff !important;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  text-align: center;
  margin: 0;
}
body.aw-body .termsSection .section-title h2 span { color: var(--aw-accent) !important; }
body.aw-body .careerDetailHead h3 { display: block; color: #fff !important; font-size: 28px; margin-bottom: 20px; }
body.aw-body .careerDetail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 420px);
  gap: 32px;
  align-items: start;
  background: var(--aw-surface);
  border-radius: 24px;
  padding: 32px;
}
body.aw-body .careerDetailHead,
body.aw-body .careerForm {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
}
body.aw-body .careerDetailHead h4 {
  color: var(--aw-accent) !important;
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 600;
}
body.aw-body .careerDetailPoint { margin-top: 0; }
body.aw-body .careerDetailPoint p,
body.aw-body .careerDetailPoint li {
  color: var(--aw-muted) !important;
  line-height: 1.7;
}
body.aw-body .careerDetailPoint ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
body.aw-body .careerDetailPoint li { margin-bottom: 8px; }
body.aw-body .careerForm {
  background: #212a2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px !important;
  position: sticky;
  top: 96px;
}
body.aw-body .careerForm .contact-us-form {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}
body.aw-body .careerForm .row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
body.aw-body .careerForm .row > * {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.aw-body .careerForm .row > input[type="hidden"],
body.aw-body .careerForm .row > input[hidden] {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
body.aw-body .careerForm .form-group,
body.aw-body .careerForm .cvInputDiv {
  margin: 0 !important;
  width: 100%;
}
body.aw-body .careerForm .form-control {
  width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
  background: #0f1415 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.aw-body .careerForm .form-control::placeholder { color: #8b9288; }
body.aw-body .careerForm .form-control:focus {
  border-color: var(--aw-accent) !important;
  box-shadow: 0 0 0 3px rgba(191, 247, 71, 0.18);
}
body.aw-body .careerForm input[type="file"] {
  width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
}
body.aw-body .careerForm .tab-content,
body.aw-body .careerForm .tab-pane {
  width: 100%;
}
body.aw-body .careerForm .tab-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.aw-body .careerForm .tab-pane {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
body.aw-body .careerForm .tab-pane.active {
  display: flex;
}
body.aw-body .careerForm .tab-pane .form-group + .form-group,
body.aw-body .careerForm .tab-pane .cvInputDiv {
  margin-top: 0 !important;
}
body.aw-body .careerForm .form-group .cvInputDiv {
  margin-top: 14px !important;
}
body.aw-body .careerForm .customCareerTabBtn {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 !important;
  width: 100%;
}
body.aw-body .careerForm .customCareerTabBtn .nav-item {
  flex: 1;
  margin: 0;
}
body.aw-body .customCareerTabBtn .nav-link {
  background: #0f1415;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
body.aw-body .customCareerTabBtn .nav-link.active {
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  border-color: var(--aw-accent);
}
body.aw-body .careerForm .cvInputDiv label {
  display: block;
  color: var(--aw-muted);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 8px;
}
body.aw-body .careerForm .cvInputDiv input[type="file"] {
  background: #0f1415 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 12px 14px !important;
  font-size: 13px;
}
body.aw-body .careerForm .contact-form-btn,
body.aw-body .careerForm .paymentBtnDiv {
  width: 100%;
  margin: 0 !important;
}
body.aw-body .careerForm .btn-highlighted {
  width: 100%;
  min-height: 48px;
  border-radius: 999px !important;
  font-weight: 700;
  font-size: 15px;
}
body.aw-body .termConditionContainer {
  color: var(--aw-muted);
  max-width: none;
  width: 100%;
  margin: 0 auto;
  background: var(--aw-surface);
  border-radius: 24px;
  padding: 40px 48px;
}
body.aw-body .details_content {
  color: var(--aw-muted);
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}
body.aw-body .termConditionContainer h2,
body.aw-body .termConditionContainer h3,
body.aw-body .termConditionContainer h4,
body.aw-body .termConditionContainer h6 { color: #fff !important; }
body.aw-body .termConditionContainer p,
body.aw-body .termConditionContainer li { color: var(--aw-muted) !important; }
body.aw-body .paymentDetailsDiv { max-width: 640px; margin: 0 auto; }
body.aw-body .contact-us-form {
  background: var(--aw-surface);
  border-radius: 24px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}
body.aw-body .google-map-iframe iframe { border-radius: 24px; width: 100%; }
body.aw-body .blogCardContainer { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
body.aw-body .blogCard {
  background: #212a2b;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 0 20px;
}
body.aw-body .blogCard a { color: inherit; display: block; }
body.aw-body .blogCard h4 { color: #fff !important; padding: 16px 18px 0; }
body.aw-body .blogCard p { color: var(--aw-muted) !important; padding: 8px 18px 0; margin: 0; }
body.aw-body .blogImg img { width: 100%; height: 180px; object-fit: cover; }
body.aw-body .thankyou-page,
body.aw-body .error-page { padding: 40px 0 80px; text-align: center; color: var(--aw-muted); }
body.aw-body table { color: #fff; }
body.aw-body .table-dark { --bs-table-bg: #212a2b; }

@media (prefers-reduced-motion: reduce) {
  .aw-reveal { opacity: 1; transform: none; transition: none; }
  .aw-about-agency::before { animation: none; }
  .aw-about-timeline::before { transform: scaleY(1); transition: none; }
  .aw-about-timeline article::before { transform: scale(1); opacity: 1; transition: none; }
  .aw-about-timeline article.is-in img { animation: none; }
  .aw-marquee-track, .aw-int-track, .aw-work-track, .aw-quote-track { animation: none !important; }
}

@media (max-width: 1199.98px) {
  .aw-services, .aw-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 88px 28px; }
  .aw-work { grid-template-columns: repeat(2, 1fr); }
  .aw-int-grid { grid-template-columns: repeat(3, 1fr); }
  .aw-process { padding: 0 8px; }
  .aw-process li { flex-basis: 220px; width: 220px; height: 228px; margin: 0 -40px; padding: 16px 40px 32px; }
  .aw-process li:nth-child(even) { margin-top: 140px; }
  .aw-process li:not(:last-child)::after { top: 164px; left: 170px; }
  .aw-process li:nth-child(even)::after { top: 14px; left: 170px; }
  .aw-process h3 { font-size: 16px; line-height: 20px; max-width: 120px; }
}

@media (max-width: 991.98px) {
  html, body.aw-body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
  }
  body.aw-body .aw-topbar {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 320;
    background: var(--aw-surface) !important;
    color: var(--aw-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  body.aw-body .aw-topbar-logo {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  body.aw-body .aw-topbar-logo img {
    height: 40px;
    max-width: 190px;
  }
  body.aw-body .aw-hamburger span {
    background: #fff !important;
  }
  .aw-topbar-phone, .aw-topbar-socials, .aw-pillnav, .aw-pay { display: none !important; }
  .aw-hamburger {
    display: block;
    position: static;
    flex-shrink: 0;
    z-index: 330;
  }
  .aw-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    overflow-x: clip;
  }
  .aw-section {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
    overflow-x: clip;
  }
  .aw-marquee,
  .aw-int-marquee,
  .aw-work-marquee,
  .aw-quote-marquee {
    overflow-x: clip;
    max-width: 100%;
  }
  .aw-navrow { display: none !important; }
  .aw-hero, .aw-hero.is-inner {
    background: var(--aw-surface);
    border-radius: 24px;
    margin: 10px 12px 0;
    padding: 48px 16px 40px;
    width: auto;
    max-width: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }
  .aw-form-card,
  .aw-why-panel,
  .aw-testimonials,
  .aw-projects-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .aw-form-card {
    margin-left: 0;
    margin-right: 0;
  }
  .aw-footer .aw-logo img {
    max-width: 100%;
    height: auto;
  }
  body.is-home .aw-hero,
  body.is-about .aw-hero { height: auto; min-height: 0; }
  body.is-home .aw-hero { padding-bottom: 80px; }
  body.aw-menu-open { overflow: hidden; }
  .aw-drawer {
    inset: 50px 0 0;
    left: 0;
    top: 50px;
    width: 100%;
    min-width: 0;
    max-width: none;
    border-radius: 0;
    padding: 20px 24px 32px;
    z-index: 310;
    background: #0f1415;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    gap: 0;
  }
  .aw-drawer.is-open { display: flex; }
  .aw-drawer a {
    font-size: 17px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .aw-drawer a:last-child {
    border-bottom: 0;
    margin-top: 8px;
    color: var(--aw-accent) !important;
  }
  .aw-hero-copy { padding: 8px 12px 24px; }
  .aw-hero-copy h1 { font-size: clamp(26px, 7vw, 34px); }
  body.aw-body .service-sidebar { position: static; }
  body.aw-body .service-single-content { padding: 20px; }
  .aw-h2 { font-size: 32px; line-height: 36px; }
  .aw-lead { font-size: 18px; line-height: 22px; }
  .aw-marquee { margin-top: 60px; }
  .aw-section { padding-top: 60px; }
  .aw-stats-hero { padding-top: 0; margin-top: -40px; }
  .aw-work, .aw-quotes, .aw-why, .aw-split, .aw-contact, .aw-footer-inner, .aw-jobs,
  .aw-ai, .aw-why-row, .aw-int-grid, .aw-mv-grid, .aw-team, .aw-pillars, .aw-mv-cards,
  .aw-about-split, .aw-about-approach, .aw-who-grid, .aw-partners-box, .aw-about-faq,
  body.aw-body .blogCardContainer { grid-template-columns: 1fr; }
  .aw-about-intro { position: static; }
  .aw-about-intro .aw-h2,
  .aw-about-approach .aw-h2,
  .aw-who-copy .aw-h2,
  .aw-partners-copy .aw-h2,
  .aw-about-faq .aw-h2 { text-align: center; }
  .aw-who-grid { padding: 0; }
  .aw-expert-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }
  .aw-expert-card {
    padding: 22px 20px;
  }
  .aw-expert-card:nth-child(even) { margin-top: 0; }
  .aw-expert-card h3 { font-size: 36px; }
  .aw-partners-logos { grid-template-columns: repeat(2, 1fr); }
  .aw-faq-photos {
    min-height: 0;
    max-width: 520px;
    padding: 44px 52px 0 0;
    margin: 0 auto 8px;
  }
  .aw-faq-photo-2 { height: 300px; }
  .aw-faq-photo-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    max-width: 240px;
    height: 240px;
    margin-bottom: 0;
  }
  .aw-about-faq .aw-faq-note { text-align: center; }
  .aw-who { display: flex; flex-direction: column-reverse; gap: 32px; }
  .aw-industry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aw-who-right .aw-btn,
  .aw-team .aw-btn,
  .aw-person-copy .aw-btn { align-self: center; }
  .aw-person,
  .aw-person.is-reverse {
    flex-direction: column;
    gap: 24px;
  }
  .aw-mv { padding: 32px 20px; }
  .aw-stat { max-width: 100%; flex: 1 1 140px; padding: 16px 12px; }
  .aw-stat-num { font-size: 18px; }
  .aw-stat p { font-size: 14px; }
  .aw-steps { grid-template-columns: repeat(2, 1fr); }
  .aw-process {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 0;
    gap: 40px;
    margin-top: 40px;
  }
  .aw-process li {
    margin: 0 !important;
    flex-basis: 280px;
    width: 280px;
    height: 290px;
    padding: 20px 50px 40px;
  }
  .aw-process li:not(:last-child)::after,
  .aw-process li:nth-child(even)::after {
    top: auto;
    bottom: -18px;
    left: 50%;
    transform: translate(-50%);
  }
  .aw-form-card, .aw-why-panel, .aw-testimonials { padding: 24px 16px; }
  .aw-panel { padding: 28px 18px; }
  .aw-footer {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 48px;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .aw-footer-inner {
    width: 100%;
    padding: 32px 16px 108px;
    border-radius: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .aw-footer-inner > div {
    min-width: 0;
    max-width: 100%;
  }
  .aw-footer p,
  .aw-footer a,
  .aw-footer li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .aw-news {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .aw-news input,
  .aw-news button {
    box-sizing: border-box;
    max-width: 100%;
  }
  .aw-copy {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 16px 96px;
    box-sizing: border-box;
  }
  body.aw-body .termsSection .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  body.aw-body .termConditionContainer {
    padding: 24px 18px 32px;
    border-radius: 20px;
  }
  .aw-form .aw-row { grid-template-columns: 1fr; }
  .aw-copy { justify-content: center; text-align: center; }
  body.is-projects .aw-projects-panel {
    padding: 20px 14px 24px;
    border-radius: 20px;
  }
  .aw-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
    width: 100%;
  }
  .aw-projects-grid .aw-proj {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .aw-projects-grid .aw-proj-body {
    padding: 14px 14px 16px;
    min-width: 0;
  }
  .aw-projects-grid .aw-proj-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .aw-projects-grid .aw-proj-foot em {
    align-self: flex-end;
    white-space: nowrap;
  }
  .aw-projects-grid .aw-proj h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .aw-work-track .aw-proj,
  .aw-work-marquee .aw-proj {
    width: min(340px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }
  .aw-work-track .aw-proj figure,
  .aw-work-marquee .aw-proj figure { height: 200px; }
  .aw-quote { width: 320px; padding: 24px; }
  .aw-int-item { min-width: 190px; padding: 14px 18px; }
  body.aw-body .careerDetail {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  body.aw-body .careerForm {
    position: static;
    top: auto;
  }
  .aw-job { flex-wrap: wrap; }
}

@media (max-width: 767.98px) {
  .aw-services, .aw-svc-grid { grid-template-columns: 1fr; gap: 80px; }
  body.aw-body a.aw-svc { padding: 48px 20px 20px; min-height: 0; }
  .aw-projects-grid { grid-template-columns: 1fr; gap: 16px; }
  .aw-projects-grid .aw-proj figure { height: 200px; }
  .aw-work-track .aw-proj,
  .aw-work-marquee .aw-proj {
    width: min(300px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .aw-proj-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .aw-proj-foot em {
    align-self: flex-end;
  }
  .aw-news {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .aw-news input[type="email"],
  .aw-news button {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    flex: none;
    align-self: stretch;
    box-sizing: border-box;
    border-radius: 14px !important;
  }
  .aw-copy span:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .aw-copy a {
    margin-left: 0;
  }
  .aw-fabs {
    right: 12px;
    bottom: 12px;
  }
}

/* Home load popup */
.aw-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.aw-popup[hidden] { display: none; }
.aw-popup.is-open { display: flex; }
.aw-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(4px);
}
.aw-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  animation: aw-popup-in .35s cubic-bezier(.22, 1, .36, 1);
}
@keyframes aw-popup-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.aw-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.aw-popup-close:hover { background: #e0e0e0; }
.aw-popup-title {
  color: #111 !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  padding-right: 28px;
}
.aw-popup-title .aw-accent { color: var(--aw-accent-2) !important; }
.aw-popup-lead {
  color: #555 !important;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.aw-popup-form { display: flex; flex-direction: column; gap: 12px; }
.aw-popup-field { display: block; margin: 0; }
.aw-popup-field input,
.aw-popup-field select,
.aw-popup-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
}
.aw-popup-field input:focus,
.aw-popup-field select:focus,
.aw-popup-field textarea:focus {
  outline: none;
  border-color: var(--aw-accent);
  box-shadow: 0 0 0 3px rgba(191, 247, 71, .25);
  background: #fff;
}
.aw-popup-field textarea {
  min-height: 88px;
  resize: vertical;
}
.aw-popup-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.aw-popup-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}
.aw-popup-phone:focus-within {
  border-color: var(--aw-accent);
  box-shadow: 0 0 0 3px rgba(191, 247, 71, .25);
  background: #fff;
}
.aw-popup-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #eee;
  border-right: 1px solid #ddd;
  white-space: nowrap;
  flex-shrink: 0;
}
.aw-popup-phone input {
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  background: transparent;
}
.aw-popup-send {
  width: 100%;
  margin-top: 4px;
  padding: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--aw-accent);
  color: var(--aw-on-accent);
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: inset 0 1px 1px #ffffff52, inset 0 4px 8px #fff3;
  transition: filter .2s;
}
.aw-popup-send:hover { filter: brightness(1.06); }
.aw-popup-send:disabled {
  opacity: .85;
  cursor: not-allowed;
}
.aw-popup-send.is-loading .aw-popup-send-label {
  visibility: hidden;
}
.aw-popup-send.is-loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(11, 13, 10, .2);
  border-top-color: var(--aw-on-accent);
  border-radius: 50%;
  animation: aw-popup-spin .8s linear infinite;
}
@keyframes aw-popup-spin {
  to { transform: rotate(360deg); }
}
.aw-popup-send { position: relative; }
.aw-popup-error {
  color: #c62828;
  font-size: 13px;
  margin: 0;
  text-align: center;
}
body.aw-popup-open { overflow: hidden; }
.aw-thanks-card {
  text-align: center;
  padding: 48px 36px 36px;
  box-shadow: 4px 8px 40px 8px rgba(191, 247, 71, .34), 0 24px 64px rgba(0, 0, 0, .25);
}
.aw-thanks-title {
  color: #1c1f24 !important;
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.aw-thanks-copy {
  color: #888 !important;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 420px;
}
.aw-thanks-btn {
  min-width: 180px;
  border-radius: 999px !important;
  height: 48px;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
