/* =========================================================================
   AAM THEME STYLESHEET — ORGANIZED
   =========================================================================
   TABLE OF CONTENTS
   -------------------------------------------------------------------------
   01. Root variables & global reset
   02. Header / navigation
   03. Cinematic hero (pinned slider, client intro, video cards)
   04. Hero content (headline, copy, buttons, socials, case nav)
   05. Results / stats section
   06. Marquee story banner
   07. Capabilities ("What We Do" pinned stack)
   08. How We Work (horizontal scroll cards)
   09. Build section
   10. Case study grid
   11. Services (pinned cards) + pricing cards
   12. Awards marquee
   13. Testimonials + footer
   14. Keyframes & text-split helpers
   15. Responsive breakpoints (site-wide)
   16. Contact page (body.aam-contact-body)
   17. Works page (body.aam-works-body)
   18. Case detail page (body.aam-case-detail-body)
   19. Responsive breakpoints (works / case detail)
   20. Contact page footer + responsive
   21. About page (body.aam-about-body)
   22. About page responsive
   23. Subscription Services page (body.aam-services-body)
   24. What We Do page (body.aam-what-body)
   25. Jobs page (body.aam-jobs-body)
   26. Small shared overrides (max-width: 560px)
   ========================================================================= */


/* =========================================================================
   01. ROOT VARIABLES & GLOBAL RESET
   ========================================================================= */
:root {
  --aam-bg: #12081c;
  --aam-red: #e31e26;
  --aam-hot-red: #f51735;
  --aam-magenta: rgba(234, 21, 89, 0.7);
  --aam-white: #ffffff;
  --aam-copy: rgba(255, 255, 255, 0.8);
  --aam-dim: rgba(255, 255, 255, 0.6);
  --aam-line: rgba(245, 23, 53, 0.86);
  --aam-primary-gradient: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.42) 92.36%);
  --aam-text-gradient: linear-gradient(133.66deg, rgb(245, 23, 53) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  --aam-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aam-header-x: 70px;
  --aam-header-pad: 40px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", Arial, sans-serif;
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", Arial, sans-serif;
}

body.aam-lock {
  overflow: hidden;
}

body.aam-hero-transitioning {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}


/* =========================================================================
   02. HEADER / NAVIGATION
   ========================================================================= */
.aam-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
/*   padding: 15px var(--aam-header-pad); */
	padding: 15px 40px;
  pointer-events: none;
  background: none;
}

.aam-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
/*   background: linear-gradient(180deg, rgba(15, 7, 23, 0.60) 0%, rgba(15, 7, 23, 0.00) 77.79%); */
	background: linear-gradient(180deg, rgba(15, 7, 23, 0.85) 0%, rgba(15, 7, 23, 0.00) 90.79%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
  pointer-events: none;
}

.aam-header.is-hidden::before {
  opacity: 0;
  visibility: hidden;
}

.aam-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  border-radius: 16px;
  letter-spacing: 0.5px;
}

.aam-header__logo,
.aam-header__cta,
.aam-header__nav {
  pointer-events: auto;
}

.aam-header__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 5px;
}

.aam-header__logo img {
  width: 90px;
  height: auto;
}

.aam-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  border-radius: 16px;
  padding: 13px 0;
  background: transparent;
  backdrop-filter: none;
  filter: none;
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

/* .aam-header, */
.aam-header__logo,
.aam-header__nav,
.aam-header__cta,
.aam-client-socials {
  transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
  will-change: transform, opacity;
}

/* .aam-header.is-hidden, */
.aam-header__logo.is-hidden,
.aam-header__nav.is-hidden,
.aam-header__cta.is-hidden,
.aam-client-socials.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px) scale(0.94);
  pointer-events: none;
}

.aam-client-socials.is-hidden {
  transform: translateY(calc(-50% - 22px)) scale(0.94);
}

.aam-header__nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--aam-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  transition: color 0.45s var(--aam-ease);
}

.aam-header__nav a::after {
  width: 21px;
  height: 2px;
  background: var(--aam-text-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease);
}

.aam-header__nav a:hover,
.aam-header__nav a.is-active {
  color: var(--aam-hot-red);
}

.aam-header__nav a:hover::after,
.aam-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.aam-header__cta {
  position: relative;
  justify-self: end;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0 24px;
/*   border: 1px solid var(--aam-hot-red); */
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  background: linear-gradient(220deg, rgba(156, 30, 83, 0.10) 22.94%, rgba(75, 40, 113, 0.10) 91.4%) !important;
  z-index:1;
  /*transition: background 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);*/
}
.aam-header__cta::before{
	content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1.5px;

    background:linear-gradient(
        35deg,
        #F51735 0%,
        rgba(234,21,89,.6) 20%,
        rgba(234,21,89,0) 42%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}
.aam-header__cta::after,
.aam-button::after {
  position: absolute;
  inset: auto auto -19px -7px;
  width: 50px;
  height: 39px;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
  content: "";
  filter: blur(9px);
  transform: rotate(20deg);
}

.aam-header__cta:hover {
	background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%) !important;
    color: #fff;
}
.aam-header__cta:hover .aam-header__phone svg {
	stroke: #ffffff;
}

.aam-header__phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--aam-hot-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.aam-menu-toggle,
.aam-mobile-menu {
  display: none;
}


/* =========================================================================
   03. CINEMATIC HERO (pinned slider, client intro, video cards)
   ========================================================================= */
.aam-cinematic {
  position: relative;
  height: 100vh;
  min-height: 810px;
  background: var(--aam-bg);
}

/*.aam-cinematic:before {
  content:"";
  background:red;
  position: absolute;
  width: 600px;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  left: 0px;
  bottom: 0px;
  top: ;
  z-index: 2;
}*/

.aam-cinematic__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 810px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(96, 43, 145, 0.22), transparent 28%),
    var(--aam-bg);
  contain: layout paint style;
  isolation: isolate;
}

/* .aam-cinematic__pin:after{
  content: "";
} */

@media (max-height: 810px) {
  .aam-cinematic__pin {
    min-height: 0 !important;
  }
}

.aam-slider,
.aam-slide {
  position: absolute;
  inset: 0;
}
/*section.aam-cinematic:before {
  content: "";
  position: absolute;
  background-color: red;
  width: 50%;
  height: 300px;
  top:0px;
  left:0px;
  z-index: 0;
  display: none;
}*/

.aam-slider {
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.aam-client-intro {
  position: absolute;
  z-index: 14;
  inset: 0;
  overflow: hidden;
  background: var(--aam-bg);
  pointer-events: auto;
  backface-visibility: hidden;
  will-change: opacity, transform, clip-path;
}

.aam-client-intro__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  will-change: transform;
  opacity: 1 !important;
	position:relative;
}

.aam-client-intro__media:after{
	content:"";
	background:red;
	position:absolute;
	width:500px;
	height:500px;
	z-index:2;
	left:0px;
	top:0px;
}

.aam-client-intro__shade {
  position: absolute;
  inset: 0;
/*   background:
    linear-gradient(90deg, rgba(12, 5, 20, 0.72) 0%, rgba(12, 5, 20, 0.2) 45%, rgba(12, 5, 20, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(18, 8, 28, 0.24) 56%, rgba(18, 8, 28, 0.52) 100%); */
	background: linear-gradient(30deg, rgba(15, 7, 23, 0.88) 20%, rgba(15, 7, 23, 0.00) 90%);
  pointer-events: none;
}

.aam-client-intro__slices {
  position: absolute;
  inset: -10% -12%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0) skewX(-14deg);
  transform-origin: 0% 100%;
  backface-visibility: hidden;
  will-change: transform, opacity;
  opacity: 0.3;
}

.aam-client-intro__slices span {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--aam-bg);
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  opacity: 0;
  transform-origin: 0% 100%;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.aam-client-intro__slices video {
  position: absolute;
  top: 0;
  left: calc(var(--slice-index, 0) * -100%);
  width: 900%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, 0, 0) skewX(14deg) scale(1.14);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
}

.aam-slide__footer .aam-socials{
  opacity: 0 !important;
}
.aam-client-socials {
  position: fixed;
  z-index: 79;
  top: 50%;
  right: var(--aam-header-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateY(-50%);
  pointer-events: auto;
  will-change: transform, opacity;
}

.aam-slide__footer > .aam-socials {
  visibility: hidden;
  pointer-events: none;
}

.aam-slide {
  overflow: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
/*   position:relative; */
}

.aam-video-card {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 810px;
  overflow: hidden;
  border-radius: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, width, height, border-radius;
	background:transparent
}

.aam-video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.05) contrast(1.04);
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  will-change: transform;
}

.aam-video-card__media--next {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.aam-video-card__shade {
  position: absolute;
  z-index: 3;
  inset: 0;
/*   background:
    linear-gradient(90deg, rgba(12, 5, 20, 0.7) 0%, rgba(12, 5, 20, 0.2) 45%, rgba(12, 5, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(18, 8, 28, 0.4) 100%); */
	background: linear-gradient(0deg, rgba(15, 7, 23, 0.85) 0%, rgba(15, 7, 23, 0.00) 90.12%);
  pointer-events: none;
}

.aam-video-card__grain {
  position: absolute;
  z-index: 4;
  inset: -20%;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 6px 6px, 9px 9px;
  mix-blend-mode: overlay;
}


/* =========================================================================
   04. HERO CONTENT (headline, copy, buttons, socials, case nav)
   ========================================================================= */
.aam-hero-content,
.aam-client-hero-content {
  position: absolute;
  z-index: 8;
/*   top: calc(50% - 180px); */
  left: var(--aam-header-x);
  width: min(650px, calc(100vw - 2 * var(--aam-header-x)));
  will-change: transform, opacity;
	bottom: calc(30% - 180px);
}

.aam-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
/*   height: 24px; */
  min-height: 24px;
  height: auto;
  margin-bottom: 20px;
  color: var(--aam-hot-red);
}

.aam-eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transform: skewX(-10deg);
}

.aam-eyebrow p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 11.7px;
  text-transform: uppercase;
}

.aam-hero-content h1,
.aam-client-hero-content h1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: clamp(44px, 4.03vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.aam-hero-content h1 span:nth-child(2),
.aam-client-hero-content h1 span:nth-child(2) {
  padding-left: 0;
}

.aam-hero-content h1 strong,
.aam-client-hero-content h1 strong {
  background: var(--aam-text-gradient);
  background-clip: text;
  color: transparent;
  font-weight: 500;
  -webkit-background-clip: text;
}

.aam-hero-content__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding-left: 0;
}

.aam-button {
  position: relative;
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
/*   border: 1px solid var(--aam-hot-red); */
  border-radius: 14px;
  padding: 0 20px;
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  transition: border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease), background 0.45s var(--aam-ease), color 0.45s var(--aam-ease);
}

.aam-button--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  position:relative;
}
.aam-button--secondary:before{
	content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1.5px;

    background:linear-gradient(
        35deg,
        #F51735 0%,
        rgba(234,21,89,.6) 20%,
        rgba(234,21,89,0) 42%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}
.aam-button--primary {
/*   background: var(--aam-primary-gradient); */
  background:linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
}

.aam-button--primary:hover{
/* 	background: linear-gradient(118.67deg, rgb(255 79 103 / 70%) 9.44%, rgb(244 0 78 / 42%) 92.36%); */
	background:linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
}
.aam-button--secondary:hover, .aam-header__cta:hover, .aam-service-card__button:hover,
.aam-service-card--growth .aam-service-card__button:hover, .aam-footer__button:hover{
	background:linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
	color:#fff;
}
/* .aam-button:hover {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(245, 23, 53, 0.18);
} */

.aam-hero-copy,
.aam-client-hero-copy {
  position: absolute;
  z-index: 8;
  top: calc(50% + 64px);
  right: var(--aam-header-x);
  width: min(400px, 32vw);
  color: var(--aam-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
  will-change: transform, opacity;
}

.aam-hero-copy p,
.aam-client-hero-copy p {
  margin: 0;
}

.aam-hero-copy p + p,
.aam-client-hero-copy p + p {
  margin-top: 10px;
}

.aam-client-hero-content {
  width: min(650px, calc(100vw - 2 * var(--aam-header-x)));
}

.aam-client-hero-copy {
  position: static;
  width: 100%;
  max-width: 620px;
  margin-top: 18px;
}

.aam-client-hero-copy p {
  line-height: 25px;
  opacity: 0.8;
  font-weight: lighter;
}

.aam-client-hero-content .aam-hero-content__actions {
  margin-top: 32px;
}

.aam-slide .aam-hero-content,
.aam-slide .aam-hero-copy {
  display: none;
}

.aam-slide__footer {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 50%;
  display: grid;
  grid-template-columns: 286px minmax(220px, 1fr) 286px;
  align-items: center;
  width: min(1440px, calc(100% - 0px));
  padding: 0 var(--aam-header-x);
  transform: translateX(-50%);
  will-change: transform, opacity;
}

.aam-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 286px;
}

.aam-socials__link {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  /*border: 1px solid rgba(245, 23, 53, 0.78);*/
  border-radius: 14px;
  /*background: rgba(255, 255, 255, 0.03);*/
  background: linear-gradient(220deg, rgb(106 25 59 / 20%) 22.94%, rgb(42 22 63 / 20%) 91.4%);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(25px);
  transition: color 0.45s var(--aam-ease), background 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}

.aam-socials__link::before {
  position: absolute;
  left: -22px;
  bottom: -18px;
  width: 53px;
  height: 49px;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.48), transparent 68%);
  content: "";
  filter: blur(9px);
  transform: rotate(36deg);
}

.aam-socials__link svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.aam-client-socials .aam-socials__link img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
	opacity:0.8;
}

.aam-socials__link:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(245, 23, 53, 0.12);
  box-shadow: 0 16px 38px rgba(245, 23, 53, 0.14);
  color: var(--aam-white);
}

.aam-case-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
}

.aam-case-nav__button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.aam-case-nav__button img {
  width: 46px;
  height: 46px;
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease), filter 0.45s var(--aam-ease);
}

.aam-case-nav__button:hover img {
  filter: drop-shadow(0 0 14px rgba(245, 23, 53, 0.42));
  transform: scale(1.12);
}

.aam-case-nav__brand {
  display: grid;
  justify-items: center;
  width: 300px;
  min-height: 80px;
  gap: 6px;
}

.aam-case-nav__brand img {
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.aam-case-nav__brand span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.84px;
  white-space: pre-wrap;
  text-align: center;
  line-height: 1.3;
  min-height: calc(1.7em * 2);
  display: block;
}

.aam-case-nav__brand strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.aam-results__case-nav {
  pointer-events: auto;
}


/* .aam-results__case-nav .aam-case-nav__brand {
  min-height: 80px;
} */


/* =========================================================================
   05. RESULTS / STATS SECTION
   ========================================================================= */
.aam-results {
  position: absolute;
  z-index: 8;
  top: auto;
  bottom: -10px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(300px, auto) repeat(2, minmax(0, 1fr));
  align-items: center;
  align-content: center;
  column-gap: 24px;
  row-gap: 10px;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--aam-header-x) 30px;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.aam-results__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 23, 53, 0.22), rgba(40, 49, 168, 0.2) 45%, transparent 72%);
  filter: blur(52px);
  transform: translateX(-50%);
}

.aam-results__stats {
 	display: contents;
}

.aam-results__stats > .aam-stat {
  grid-row: 1;
  align-self: center;
  pointer-events: auto;
}

.aam-results__stats > .aam-stat:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.aam-results__stats > .aam-stat:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.aam-results__stats > .aam-stat:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.aam-results__stats > .aam-stat:nth-child(4) {
  grid-column: 5;
  grid-row: 1;
}

.aam-results > .aam-case-nav,
.aam-results__case-nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  min-height: 150px;
}

.aam-slide__stats--left {
  left: var(--aam-header-x, 24px);
}

.aam-slide__stats--right {
  right: var(--aam-header-x, 24px);
}

.aam-slide-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.aam-slide-stat strong {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--aam-white);
}

.aam-slide-stat__suffix {
  padding-bottom: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.aam-slide-stat > span {
  margin-top: 2px;
  color: var(--aam-white);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
}

.aam-slide-stat em {
  margin-top: 2px;
  color: var(--aam-dim);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}


.aam-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
}

.aam-stat strong {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  font-size: clamp(44px, 4.17vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.aam-stat__suffix {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(38px, 3.47vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.aam-stat > span {
  margin-top: 6px;
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.36px;
}

.aam-stat em {
  margin-top: 4px;
  color: var(--aam-dim);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  min-height: 0;
  display: block;
}


/* =========================================================================
   06. MARQUEE STORY BANNER
   ========================================================================= */
.aam-marquee-story {
  position: relative;
  z-index: 11;
  display: grid;
  height: 500px !important;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background: #e8e9ea;
  color: #236fff;
  background: url(assets/highlighter_bg.png);
  background-size: cover;
  background-position: center;  
  background-repeat: no-repeat;
}

.aam-marquee-story__pin {
  position: relative;
  display: grid;
  width: 100%;
  height: 200px;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  /*background: #e8e9ea;*/
}

.aam-marquee-story__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  width: 3118px;
  height: 390px;
  gap: 74px;
  opacity: 0.48;
  transform: translate3d(-50%, -50%, 0);
}

.aam-marquee-story__pattern span {
  display: block;
  width: 160px;
  height: 390px;
  border-radius: 12px;
  background: rgba(205, 206, 211, 0.28);
  transform: skewX(-14deg);
}

.aam-marquee-story__track {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}

.aam-marquee-story h2 {
  width: max-content;
  margin: 0;
  color: #12081c;
  font-size: clamp(92px, 10.42vw, 150px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate3d(100vw, 0, 0);
  opacity:1 !important;
  will-change: transform, opacity;
}

.aam-marquee-story h2 span {
  display: inline-block;
}

.aam-marquee-story__slash {
  margin-right: 0.04em;
  color: #256eff;
  font-size: clamp(126px, 14.58vw, 210px);
  font-weight: 500;
  line-height: 0.82;
  vertical-align: -0.08em;
}

.aam-marquee-story__blue {
  color: #256eff;
  font-weight: 600;
}

.aam-marquee-story__note {
  display: none;
}


/* =========================================================================
   07. CAPABILITIES ("What We Do" pinned stack)
   ========================================================================= */
.aam-capabilities {
  position: relative;
  z-index: 12;
  overflow: clip;
  padding-top: 100px;
  /*background:
    radial-gradient(circle at 72% 7%, rgba(35, 52, 151, 0.24), transparent 27%),
    radial-gradient(circle at 43% 56%, rgba(245, 23, 53, 0.06), transparent 31%),
    var(--aam-bg);*/
    background-image: url(assets/whatwedo_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.aam-capabilities__intro {
  display: grid;
  grid-template-columns: minmax(260px, calc(23vw - 126px)) minmax(0, 1fr);
  gap: 56px;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 70px 50px;
}

.aam-capabilities__eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 10px;
  color: var(--aam-hot-red);
}
.aam-capabilities__eyebrow, 

.aam-capabilities__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(0deg);
}

.aam-capabilities__eyebrow p {
  margin: 0;
  color: var(--aam-hot-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.aam-capabilities__copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.5px;
}

.aam-capabilities__copy h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-capabilities__copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.18px;
}

.aam-capabilities__track {
  position: relative;
  height: var(--aam-stack-height, auto);
  min-height: 0;
}

.aam-capability-stack {
  position: sticky;
  top: 0px;
  width: 100%;
  height: calc(100vh - 0px);
  min-height: 650px;
  overflow: hidden;
}

@media (max-height: 650px) {
  .aam-capability-stack {
    min-height: 0;
  }
}

.aam-capability-panel {
  position: absolute;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(260px, calc(23vw - 128px)) minmax(320px, 1fr) 380px;
  gap: 58px;
  align-items: start;
  min-height: 340px;
  overflow: hidden;
  border-radius: 0;
  padding: 40px 70px 40px;
  background:
    radial-gradient(circle at 82% 10%, rgba(65, 82, 182, 0.16), transparent 34%),
    var(--aam-bg);
  color: var(--aam-white);
  will-change: transform, height, opacity;
}

.aam-capability-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
  transition: opacity 0.6s var(--aam-ease);
}

.aam-capability-panel.is-active::before {
  opacity: 1;
}

.aam-capability-panel--red {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 13%),
    linear-gradient(114deg, #f51735 0%, #e31e26 36%, #9a0538 100%);
}

.aam-capability-panel--blue {
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.24), transparent 13%),
    linear-gradient(114deg, #1f6df0 0%, #0a47b8 48%, #071a56 100%);
}

.aam-capability-panel--light {
  background:
    radial-gradient(circle at 53% 0%, rgba(255, 255, 255, 0.84), transparent 11%),
    linear-gradient(107deg, #eeeeee 0%, #d7d7d7 54%, #c9c9c9 100%);
  color: #2a2236;
}

.aam-capability-panel__number {
  position: relative;
  z-index: 2;
  color: currentColor;
  align-self: start;
  padding-top: 0;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.84;
}

.aam-capability-panel__content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  align-self: start;
  padding-top: 4px;
}

.aam-capability-panel__content h3 {
  margin: 0;
  color: currentColor;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

article.aam-capability-panel.aam-capability-panel--red .aam-button--secondary:hover{
	background:#fff;
	color:red;
}
.aam-capability-panel__content p {
  max-width: 590px;
  margin: 22px 0 28px;
  color: currentColor;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.18px;
  opacity: 0.7 !important;
}

.aam-capability-panel--red .aam-capability-panel__content p {
  opacity: 0.82;
}

.aam-capability-panel--light .aam-button {
  color: #21182c;
}
.aam-capability-panel--light .aam-button:hover{
	color:#fff;
}

.aam-capability-panel__media {
  position: relative;
  z-index: 2;
  width: 380px;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  line-height: 0;
  will-change: transform;
  aspect-ratio: 3 / 2;
}

.aam-capability-panel__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  content: "";
}

.aam-capability-panel__media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14) !important;
  will-change: transform;
}


/* =========================================================================
   08. HOW WE WORK (horizontal scroll cards)
   ========================================================================= */
.aam-how-work {
  position: relative;
  z-index: 13;
  overflow: hidden;
  background: #e8e9ea;
  color: #12081c;
}

.aam-how-work__pin {
  position: relative;
  min-height: 840px;
  height: 100vh;
  overflow: hidden;
  padding: 100px 0;
  background: #e8e9ea;
  display: flex;
  flex-direction: column;
}

.aam-how-work__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: center;
}

.aam-how-work__heading {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
/*   height: 149px; */
  margin-right: auto;
  margin-left: auto;
  padding: 0 70px;
	flex: 0 0 auto;
	height: auto;
}

.aam-how-work__heading-inner {
  display: flex;
  height: 100%;
  max-width: 55%;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.aam-how-work__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aam-red);
}

.aam-how-work__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-how-work__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.aam-how-work__heading h2 {
  max-width: 700px;
  margin: 0;
  color: #12081c;
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.5px;
}

.aam-how-work__heading h2 span {
  color: #777b88;
}

.aam-how-work__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.aam-how-work__track {
  display: flex;
  width: max-content;
  gap: 70px;
  padding: 0 70px;
  will-change: transform;
/*   padding-top: 4vh !important; */
  animation: aam-how-work-marquee 32s linear infinite;
  animation-play-state: paused;
  align-items: baseline;
}

/* .aam-how-work__viewport:hover .aam-how-work__track {
  animation-play-state: paused;
} */

/* .aam-how-work__track:has(.aam-work-card:hover) {
    animation-play-state: paused;
} */

/* Play marquee animation only when section is scrolled into view */
.aam-how-work__track.is-in-view {
    animation-play-state: running;
}

/* Apply hover pause ONLY on desktop mouse devices  when in view */
/* @media (hover: hover) and (pointer: fine) {
    .aam-how-work__track:has(.aam-work-card:hover) {
        animation-play-state: paused;
    }
} */

@media (hover: hover) and (pointer: fine) {
    .aam-how-work__track.is-in-view:has(.aam-work-card:hover) {
        animation-play-state: paused;
    }
}

/* Touch hold class for Mobile & Tablet */
.aam-how-work__track.is-paused {
    animation-play-state: paused !important;
}

.aam-work-card-group {
  display: flex;
  width: 1300px;
  flex: 0 0 1300px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  will-change: transform, opacity;
}

.aam-work-card-group__number {
  width: 300px;
  max-width: 300px;
  align-self: stretch;
  margin: 0;
  color: rgba(18, 8, 28, 0.4);
  text-align: right;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.56px;
}

.aam-work-card {
  position: relative;
  display: flex;
  width: 580px;
  flex: 0 0 580px;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px 18px 24px;
/*   background: #256eff; */
  color: var(--aam-white);
/*   box-shadow: 0 34px 80px rgba(37, 110, 255, 0.18); */
  backdrop-filter: blur(7.5px);
}

.aam-work-card__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-work-card__image {
  position: relative;
  z-index: 2;
  width: 100%;
/*   height: 330px; */
	height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
	aspect-ratio:16/9;
}

.aam-work-card__image img,
.aam-work-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}

.aam-work-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--aam-white);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24px;
  /*text-transform: uppercase;*/
}

.aam-work-card-group__copy {
  display: flex;
  width: 300px;
  max-width: 300px;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.aam-work-card-group__copy p {
  margin: 0;
  color: rgba(18, 8, 28, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}

@media (max-height: 780px) {
/*   .aam-how-work__pin {
    min-height: 0 !important;
	height: 100vh !important;
    padding: 80px 0 14px !important;
  } */
/*   .aam-how-work__heading {
    height: 120px !important;
    margin-bottom: 0 !important;
  } */
/*   .aam-how-work__heading-inner {
    gap: 6px !important;
  } */
/*   .aam-how-work__heading h2 {
    font-size: clamp(20px, 4.2vh, 32px) !important;
    line-height: 1.15 !important;
  } */
  
/*   .aam-work-card-group__copy {
    padding-top: 0 !important;
  } */
/*   .aam-work-card__image {
    height: clamp(140px, 80vh, 270px) !important;
  } */
/*   .aam-work-card h3 {
    font-size: clamp(15px, 2.6vh, 20px) !important;
  }
  .aam-work-card-group__copy p {
    font-size: clamp(12px, 2.2vh, 14px) !important;
    line-height: 1.35 !important;
  } */
}


/* =========================================================================
   09. BUILD SECTION
   ========================================================================= */
.aam-build-case {
  position: relative;
  z-index: 14;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-build-case__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: top;
}

.aam-build {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  color: var(--aam-white);
}
.aam-build__pin:after {
    content: "";
    background-image: url(assets/bg_logo2.png);
    position: absolute;
    width: 800px;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 10%;
    bottom: 0;
    top: 30%;
    z-index: 0;
    opacity: 0.8;
}

.aam-build__pin {
  position: relative;
  height: auto;
  min-height: 912px;
  overflow: hidden;
  padding: 100px 70px;
  background: transparent;
}

.aam-build__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  min-height: 712px;
  margin-right: auto;
  margin-left: auto;
  align-items: start;
}

.aam-build__left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.aam-build__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  padding-top: 40px;
}

.aam-build__heading {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  gap: 24px;
}

.aam-build__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--aam-red);
}

.aam-build__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-build__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.aam-build__heading h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.5px;
}

.aam-build__heading h2 span {
  color: #777b88;
}

.aam-build__description {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.aam-build__description > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.4px;
}

.aam-build__callout {
  display: inline-flex;
  align-items: center;
  border-left: 3px solid #E31E26;
  padding: 8px 16px;
}

.aam-build__callout p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.aam-build__cta {
  min-width: 156px;
}

.aam-build__right {
  position: relative;
  width: 100%;
  height: 712px;
  min-width: 0;
  gap: 24px;
  padding-top: 40px;
  padding-left: 20px;
}

.aam-build-card {
  position: absolute;
  top: 40px;
  right: 0;
  left: 20px;
  display: flex;
  min-height: 150px;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 24px 24px 24px 0;
  background: linear-gradient(76.41deg, rgba(255, 255, 255, 0.03) 0.23%, rgba(255, 255, 255, 0.1) 97.65%);
  color: var(--aam-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.aam-build-card.is-active {
  box-shadow: 0 38px 120px rgba(245, 23, 53, 0.12), 0 28px 80px rgba(0, 0, 0, 0.2);
}

.aam-build-card__shine {
  position: absolute;
  top: -61px;
  right: -61px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 23, 53, 0.2), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

/*.aam-build-card__shine--blue {
  background: radial-gradient(circle, rgba(37, 110, 255, 0.38), transparent 68%);
}*/

.aam-build-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
}

.aam-build-card__heading {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  align-items: center;
  overflow: hidden;
  padding: 10px 20px;
}

.aam-build-card__heading::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

/*.aam-build-card__heading--red::before {
  background: linear-gradient(90deg, rgba(227, 30, 38, 0.25), rgba(227, 30, 38, 0) 59.74%);
}

.aam-build-card__heading--blue::before {
  background: linear-gradient(90deg, rgba(22, 84, 207, 0.2), rgba(22, 84, 207, 0) 59.74%);
}*/

.aam-build-card__heading img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-build-card__heading h3 {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 88px);
  margin: 0;
  overflow: hidden;
  color: var(--aam-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.44px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aam-build-card__body > p {
  max-width: calc(100% - 12px);
  margin: 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  will-change: opacity, transform;
}

.aam-build-card__icon {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  object-fit: contain;
  pointer-events: none;
}


/* =========================================================================
   10. CASE STUDY GRID
   ========================================================================= */
.aam-case-study {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 0px 0 100px;
  background: transparent;
  color: var(--aam-white);
	margin-top: -30px;
}

.aam-case-study__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.aam-case-study__header {
  display: flex;
  min-height: 144px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0 70px;
}

.aam-case-study__heading-group {
  display: grid;
  grid-template-columns: 254px minmax(0, 750px);
  flex: 1 1 auto;
  gap: 126px;
  align-items: start;
}

.aam-case-study__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aam-red);
	margin-top:10px;
}

.aam-case-study__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-case-study__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aam-case-study__heading-group h2 {
  max-width: 700px;
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.5px;
}

.aam-case-study__heading-group h2 span {
  color: #777b88;
}

.aam-case-study__cta {
  flex: 0 0 auto;
  height: 48px;
  border-width: 1.5px;
  gap: 8px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
}

.aam-case-study__cta span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.aam-case-study__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 50px;
  width: 100%;
  margin-top: 50px;
  padding: 0 70px;
  transition: grid-template-columns 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.aam-case-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: pointer;
  position: relative;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not([class]) .aam-case-study__grid {
  transition: grid-template-columns 2s cubic-bezier(0.16, 1, 0.3, 1);
}

body:not([class]) .aam-case-card {
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.aam-case-card--wide {
  grid-column: 1 / -1;
  justify-self: end;
/*   width: min(100%, 930px); */
}

/* Each left/right pair gets its own mini-grid so the hover-expand
   effect below only affects that one pair, not every row on the page. */
.aam-case-study__row {
/*   grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  transition: grid-template-columns 2s cubic-bezier(0.16, 1, 0.3, 1); */
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  column-gap: 36px;
  contain: layout;
  will-change: grid-template-columns;
  transition: grid-template-columns 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.aam-case-card--left {
  width: 100%;
}

.aam-case-card--right {
  width: 100%;
}

.aam-case-card__media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 40px rgba(18, 21, 28, 0.2);
  transform: translateZ(0);
}

.hover-box {
    padding: 30px 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 24px;
    user-select: none;
    cursor:none;
    position: relative;
  }

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width:auto;
  height: 50px;
  color: #fff;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform:uppercase;
  pointer-events: none;
  padding: 0 20px;
  z-index: 9999;
  font-weight: 500;
  border-radius: 12px;
  text-align:center;
  background: linear-gradient(98deg, rgba(245, 23, 53, 0.90) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  pointer-events: none !important;
  white-space: nowrap;
  cursor: pointer;
}
.custom-cursor img{
	margin-left:8px;
	width:24px;
	height: 24px;
}

@media (max-width: 1000px) {
    body.aam-case-detail-body .aam-case-detail-video .custom-playtext {
        height: 40px;
        font-size: 13px;
        padding: 0 14px;
        border-radius: 10px;
    }
    body.aam-case-detail-body .aam-case-detail-video .custom-playtext img {
        width: 18px;
        height: 18px;
        margin-left: 6px;
    }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

[data-hover-box] {
  cursor: none;
}

.aam-case-card--wide .aam-case-card__media {
  height: auto;
/*   aspect-ratio: 920 / 507; */
  aspect-ratio: 16 / 9;
  box-shadow: none;
	height: 500px;
    width: auto;
}

.aam-case-card--left .aam-case-card__media,
.aam-case-card--right .aam-case-card__media {
  height: 475px;
}

.aam-case-card__media img,
.aam-case-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aam-case-card__thumb {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.aam-case-card.is-case-media-active .aam-case-card__thumb {
  opacity: 0;
  transform: scale(1.035);
}

.aam-case-card__media video {
  background: rgba(255, 255, 255, 0.04);
}

.aam-case-card__media figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  background: rgba(18, 8, 28, 0.5);
  color: var(--aam-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.48px;
  transform: translateY(-50%);
  backdrop-filter: blur(13px);
}

.aam-case-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top:20px;
}

.aam-case-card__content h3 {
  margin: 0;
  color: var(--aam-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.7px;
	 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aam-case-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.4px;
	 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aam-case-card__view-btn {
  display: none;
}

/* @media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .aam-case-card--left .aam-case-card__content h3,
  .aam-case-card--left .aam-case-card__content p,
  .aam-case-card--right .aam-case-card__content h3,
  .aam-case-card--right .aam-case-card__content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[class] .aam-case-study__row:has(.aam-case-card--left:hover),
  body[class] .aam-case-study__row:has(.aam-case-card--left:focus-within) {
    grid-template-columns: minmax(0, 930px) minmax(240px, 1fr);
  }

  body[class] .aam-case-study__row:has(.aam-case-card--right:hover),
  body[class] .aam-case-study__row:has(.aam-case-card--right:focus-within) {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 930px);
  }
} */

.aam-case-study__row.is-left-active {
  grid-template-columns: minmax(0, 79.5%) minmax(0, 20.5%);
}
.aam-case-study__row.is-right-active {
  grid-template-columns: minmax(0, 20.5%) minmax(0, 79.5%);
}

@media (hover: hover) and (pointer: fine) {
  .aam-case-study__row:has(.aam-case-card--left:focus-within) {
    grid-template-columns: minmax(0, 79.5%) minmax(0, 20.5%);
  }
  .aam-case-study__row:has(.aam-case-card--right:focus-within) {
    grid-template-columns: minmax(0, 20.5%) minmax(0, 79.5%);
  }
}


/* =========================================================================
   11. SERVICES (pinned cards) + PRICING CARDS
   ========================================================================= */
.aam-services {
  position: relative;
  z-index: 15;
  overflow: hidden;
/*   background: #e8e9ea; */
  color: #12081c;
  /*background-image: url(assets/service_bg.png) !important;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;*/
}

.aam-services__pin {
  position: relative;
  height: auto !important;
  min-height: auto;
  overflow: hidden;
  padding: 92px 0;
  /*background: #e8e9ea;*/
}

.aam-services__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: top;
}

.aam-services__eyebrow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: min(100%, 1440px);
  margin-right: auto;
  margin-left: auto;
  color: var(--aam-red);
}

.aam-services__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-services__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aam-services__headline {
    position: relative;
    z-index: 3;
    top: 0;
    left: 50%;
    display: flex;
    width: min(834px, calc(100vw - 140px));
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(-50%);
    will-change: transform, opacity, filter;
}

.aam-services__headline h2 {
    margin: 0;
    width: min(834px, 100%);
    color: var(--aam-white);
    font-size: clamp(34px, 2.92vw, 40px);
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0.5px;
	max-width: 700px;
}

.ser-header {
    display: grid;
    gap: 24px;
}

.aam-services__headline-line {
  --services-line-fill: 0%;
  display: inline;
    color: transparent;
    background: linear-gradient(90deg, #ffffff 0 var(--services-line-fill), #777b88 var(--services-line-fill) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.aam-services__ghost {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0px;
  translate: -50% 0;
  margin: 0;
  color: #fff;
  font-size: 200px;
  font-weight: 600;
	line-height: 160px;;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.04;
}

.aam-services__cards {
  position: relative;
    z-index: 3;
/*     top: 60%;
    left: 50%; */
    display: flex;
    width: min(1274px, calc(100vw - 48px));
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 0;
	margin:0 auto;
	margin-top:40px;
/*     transform: translate(-50%, -50%); */
    opacity: 0;
    will-change: transform, opacity;
}

.aam-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 465px;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 24px;
  color: #12081c;
  box-shadow: 0 2px 20px rgba(18, 8, 28, 0.06);
}

.aam-service-card--growth {
  width: 405px;
  height: 510px;
  flex: 0 0 405px;
  border-radius: 26px;
  color: var(--aam-white);
}

.aam-service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aam-service-card--single .aam-service-card__bg,
.aam-service-card--embedded .aam-service-card__bg {
  opacity: 1;
}

.aam-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.aam-service-card--growth .aam-service-card__content {
  gap: 26px;
}

.aam-service-card__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.aam-service-card--growth .aam-service-card__top {
  gap: 36px;
}

.aam-service-card__tag {
  width: 100%;
  padding: 5px 5px 0;
}

.aam-service-card__tag span {
  display: flex;
	height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 19px 19px 0 0;
	background: linear-gradient(90deg, rgba(65, 32, 100, 0.95) 0%, rgba(156, 30, 83, 0.95) 100%);
	backdrop-filter: blur(17px);
	color: var(--aam-white);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 24px;
	letter-spacing: 0.5px;
	text-align: center;
}

.aam-service-card--growth .aam-service-card__tag span {
  height: 52px;
  border-radius: 21px 21px 0 0;
  color: var(--aam-white);
  /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.30) 11.34%, rgba(255, 255, 255, 0.24) 51.78%, rgba(255, 255, 255, 0.15) 86.12%);
  backdrop-filter: blur(17px);*/
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.14) 9.44%, rgba(255, 255, 255, 0.10) 92.36%);
  backdrop-filter: blur(18.396427154541016px);
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
}

.aam-service-card--embedded .aam-service-card__tag span {
  border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, rgba(65, 32, 100, 0.95) 0%, rgba(156, 30, 83, 0.95) 100%);
    backdrop-filter: blur(17px);
    color: var(--aam-white);
    text-transform: uppercase;
}

.aam-service-card__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0 20px;
}

.aam-service-card--growth .aam-service-card__main {
  gap: 13px;
  padding: 0 22px;
}

.aam-service-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.aam-service-card__eyebrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aam-service-card--growth .aam-service-card__eyebrow img {
  width: 22px;
  height: 22px;
}

.aam-service-card__eyebrow p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.048px;
}

.aam-service-card--growth .aam-service-card__eyebrow p {
  font-size: 17.3px;
  line-height: 26px;
}

.aam-service-card__price {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.4px;
}

.aam-service-card--growth .aam-service-card__price {
  font-size: 43px;
  letter-spacing: 0.43px;
}

.aam-service-card__price span {
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
  font-weight: 400;
}

.aam-service-card--growth .aam-service-card__price span {
  color: var(--aam-white);
  font-size: 19.5px;
}

.aam-service-card__description {
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  font-weight: lighter;
  line-height: 22px;
  letter-spacing: 0.3px;
}

.aam-service-card--growth .aam-service-card__description {
  color: var(--aam-white);
  font-size: 15.5px;
  line-height: 22px;
}

.aam-service-card__term {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 0 20px;
}

.aam-service-card--growth .aam-service-card__term {
  gap: 8.7px;
  padding: 0 22px;
}

.aam-service-card__term img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.aam-service-card--growth .aam-service-card__term img {
  width: 26px;
  height: 26px;
}

.aam-service-card__term p {
  margin: 0;
  color: rgb(255 255 255 / 90%);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.aam-service-card--growth .aam-service-card__term p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17.3px;
  line-height: 26px;
}

.aam-service-card__bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

.aam-service-card--growth .aam-service-card__bottom {
  padding: 22px;
}

.aam-service-card__button {
  display: flex;
	width: 100%;
	height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	/* background: rgba(18, 8, 28, 0.05); */
/* 	border: 1px solid #F51735; */
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.16px;
	text-decoration: none;
	text-transform: uppercase;
	overflow:hidden;
}

.aam-service-card__button:before{
	content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.aam-service-card__button:after {
    position: absolute;
    inset: auto auto -19px -7px;
    width: 50px;
    height: 39px;
    background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
    content: "";
    filter: blur(9px);
    transform: rotate(20deg);
}

.aam-service-card--growth .aam-service-card__button {
  height: 52px;
  border-color: transparent;
  border-radius: 14px;
  background: #fff;
  color: #E31E26;
  font-size: 17.3px;
}

/* @media (max-height: 780px) {
	.ser-header {
		gap: 16px;
	}
	.aam-services__cards {
		top: 52%;
	}
	.aam-service-card--growth .aam-service-card__top {
	  gap: 20px;
	}
} */


/* =========================================================================
   12. AWARDS MARQUEE
   ========================================================================= */
.aam-awards {
  position: relative;
  z-index: 15;
  overflow: hidden;
  padding: 100px 0 120px;
  /*background: #e8e9ea;
  color: #12081c;*/
}

/*.aam-awards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(18, 8, 28, 0.1) 1px, transparent 1px);
  background-position: center top;
  background-size: 288px 100%;
  pointer-events: none;
}*/

/*.aam-awards::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 23% 25%, rgba(255, 255, 255, 0.75) 0, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 78% 68%, rgba(203, 216, 230, 0.65) 0, rgba(203, 216, 230, 0) 32%);
  pointer-events: none;
}*/

.aam-awards__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: center;
}

.aam-awards__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 70px;
}

.aam-awards__header {
  width: min(700px, 100%);
}

.aam-awards__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--aam-red);
}

.aam-awards__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

.aam-awards__eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.aam-awards__header h2 {
  margin: 0;
  color: #12081c;
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.5px;
}

.aam-awards__header h2 span {
  color: #777b88;
}

.aam-awards__marquee {
  position: relative;
  z-index: 3;
  width: 100vw;
  margin-top: 40px;
  overflow: visible !important;
  padding: 18px 0 34px;
}

.aam-awards__track {
  display: flex;
  width: max-content;
  align-items: stretch;
/*   margin-left: max(70px, calc((100vw - 1440px) / 2 + 70px)); */
  animation: aam-awards-marquee 52s linear infinite;
  will-change: transform;
}

/* .aam-awards__marquee:hover .aam-awards__track {
  animation-play-state: paused;
} */

/* Apply hover pause ONLY on desktop mouse devices */
@media (hover: hover) and (pointer: fine) {
    .aam-awards__marquee:hover .aam-awards__track:not(.is-paused) {
        animation-play-state: paused;
    }
}
.aam-awards__track.is-paused {
    animation-play-state: paused !important;
}


.aam-awards__group {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
}

.aam-award-card {
  position: relative;
  display: flex;
  width: 220px;
  height: 340px;
  flex: 0 0 220px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  /*border: 1px solid rgba(18, 8, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(18, 8, 28, 0.06);*/
  border-radius: 16px;
  background: linear-gradient(169deg, rgba(255, 255, 255, 0.60) 7.92%, rgba(255, 255, 255, 0.18) 95.58%);
  box-shadow: 0 4px 24px 0 rgba(18, 8, 28, 0.03);
  backdrop-filter: blur(12px);
  padding: 20px;
  transform-origin: center center;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.aam-award-card:hover {
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 72px rgba(18, 8, 28, 0.1);
  transform: scale(1.09);
}

.aam-award-card:hover .aam-award-card__top p {
  opacity: 1;
}

.aam-award-card:hover .aam-award-card__top img {
  transform: translate3d(0, 12px, 0) scale(1.06);
}

.aam-award-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.aam-award-card__top p {
  margin: 0;
  color: #12081c;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.15;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.aam-award-card__top img {
  width: 80px;
  height: 100px;
  flex: 0 0 80px;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.aam-award-card__copy {
  display: grid;
  gap: 6px;
}

.aam-award-card__copy h3, .aam-award-card__copy p{
  margin: 0;
  color: #12081C;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-family: "Instrument Sans", Arial, sans-serif;
}

.aam-award-card__copy p {
  color: rgba(18, 8, 28, 0.68);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}


/* =========================================================================
   13. TESTIMONIALS + FOOTER
   ========================================================================= */
.aam-testimonial-footer {
  position: relative;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-footer-section {
  position: relative;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
}

.aam-testimonial-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-footer-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.aam-testimonials,
.aam-footer-logos,
.aam-footer {
  position: relative;
  z-index: 1;
}

.aam-testimonials {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 70px 100px;
}

.aam-testimonials__header {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 780px);
  gap: 58px;
  align-items: start;
  margin-bottom: 52px;
}

.aam-testimonials__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  color: #ff2636;
}

.aam-testimonials__eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.aam-testimonials__eyebrow p {
  margin: 0;
  color: #ff2636;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.aam-testimonials__header h2 {
  max-width: 700px;
  margin: 0;
  color: var(--aam-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.42px;
}

.aam-testimonials__header h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.55fr);
  gap: 28px;
  align-items: center;
  width: 100%;
}

.aam-testimonials__side,
.aam-testimonials__wide {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.aam-testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px 26px 26px 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
}

.aam-testimonial-card--large {
  min-height: 260px;
}

.aam-testimonial-card__quote {
    margin: 0;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.3px;
}

.aam-testimonial-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aam-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(227, 30, 38, 0.55), rgba(37, 110, 255, 0.45));
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  object-fit: cover;
}

.aam-testimonial-card__profile h3,
.aam-testimonial-card__profile p {
  margin: 0;
}

.aam-testimonial-card__profile h3 {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.aam-testimonial-card__profile p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.aam-testimonial-video {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  isolation: isolate;
  aspect-ratio: 3 / 2;
}

.aam-testimonial-video__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aam-testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
/*   background: linear-gradient(180deg, rgba(18, 8, 28, 0.12), rgba(18, 8, 28, 0.64)); */
}

.aam-testimonial-video__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  display:none;
}

.aam-testimonial-video__frame{
	display:none;
}

.aam-testimonial-video__heading p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.aam-testimonial-video__heading img {
  width: 28px;
  height: 40px;
  object-fit: contain;
}

.aam-testimonial-video__mute {
  width: 28px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.aam-testimonial-video__mute img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.aam-testimonial-video__frame {
  height: 230px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 8, 28, 0.05), rgba(18, 8, 28, 0.32)),
    url("assets/card_video_bg.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.aam-testimonial-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.aam-footer-logos {
  display: flex;
  width: 100%;
  align-items: center;
  overflow: hidden;
  padding: 0 70px 60px;
}

.aam-footer-logos__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  animation: aam-logo-marquee 130s linear infinite;
  will-change: transform;
}

.aam-footer-logos:hover .aam-footer-logos__track {
  animation-play-state: paused;
}

.aam-footer-logos__track img {
  width: 174px;
  height: 78px;
  flex: 0 0 174px;
  object-fit: contain;
}

.aam-footer {
  width: 100%;
  padding: 0 70px;
}

.aam-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(150px, 0.78fr) minmax(300px, 1.22fr);
  gap: 52px;
  align-items: start;
  width: 100%;
  padding: 0 0 40px;
}

.aam-footer__cta-block h2 {
  max-width: 580px;
  margin: 0 0 24px;
  color: var(--aam-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.42px;
}

.aam-footer__cta-block h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.aam-footer__cta-block p {
  max-width: 575px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.18px;
}

.aam-footer__button {
  display: inline-flex;
  min-width: 196px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
/*   background: linear-gradient(133deg, #f51735 9.44%, rgba(234, 21, 89, 0.86) 92.36%); */
	background:linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
  text-decoration: none;
	    position: relative;
    overflow: hidden;
	padding: 0 24px 0 24px;
	
}

.aam-footer__button::after{
	position: absolute;
    inset: auto auto -19px -7px;
    width: 50px;
    height: 39px;
    background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
    content: "";
    filter: blur(9px);
    transform: rotate(20deg);
}

.aam-footer__button:hover{
	background:linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
	color:#fff;
}
.aam-footer__menu,
.aam-footer__follow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aam-footer__menu h3,
.aam-footer__follow h3 {
  margin: 0 0 6px;
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
	letter-spacing:1px;
	
}

.aam-footer__menu a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.aam-footer__field {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.aam-footer__field input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--aam-white);
  font: inherit;
}

.aam-footer__field input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.aam-footer__field button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}


.aam-footer__field button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aam-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aam-footer__social .aam-socials__link {
  border-color: rgba(245, 23, 53, 0.72);
}

.aam-footer__social .aam-socials__link img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
}

.aam-footer__logo {
  display: block;
  width: 100%;
  height: 124px;
  object-fit: contain;
  margin: 0 0 20px;
}

.aam-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aam-footer__bottom p,
.aam-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
	text-align:center;
	width:100%;
}

.aam-footer__bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aam-footer__bottom span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}


/* =========================================================================
   14. KEYFRAMES & TEXT-SPLIT HELPERS
   ========================================================================= */
@keyframes aam-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes aam-awards-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--aam-awards-distance, 50%)), 0, 0);
  }
}

.line {
  overflow: hidden;
}

.word,
.char {
  display: inline-block;
}

@keyframes aam-how-work-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--aam-how-work-distance, 50%)), 0, 0); }
}

/* 
@keyframes aam-how-work-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
} */

/* =========================================================================
   15. RESPONSIVE BREAKPOINTS (SITE-WIDE)
   ========================================================================= */
@media (min-width: 1280px) and (max-width: 1920px) {
  .aam-hero-content,
  .aam-client-hero-content {
    left: calc(max(0px, 100vw - 1440px) / 2 + var(--aam-header-x));
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    right: calc(max(0px, 100vw - 1440px) / 2 + var(--aam-header-x));
  }

  .aam-capability-panel {
    grid-template-columns: 260px minmax(0, 1fr) 380px;
    padding-right: calc(max(0px, 100vw - 1440px) / 2 + 70px);
    padding-left: calc(max(0px, 100vw - 1440px) / 2 + 70px);
  }

  .aam-how-work__track {
    padding-right: calc(max(0px, 100vw - 1440px) / 2 + 70px);
    padding-left: calc(max(0px, 100vw - 1440px) / 2 + 70px);
  }

  .aam-build__pin {
    padding-right: calc(max(0px, 100vw - 1440px) / 2 + 70px);
    padding-left: calc(max(0px, 100vw - 1440px) / 2 + 70px);
  }
  .aam-results__stats {
    gap: 16px;
  }
  .aam-stat strong {
    font-size: clamp(36px, 4.5vw, 48px);
  }
  .aam-stat__suffix {
    font-size: clamp(28px, 3.6vw, 32px);
  }
  .aam-case-nav__brand {
    width: 250px;
  }
}


/* ===== SMALL DEVICE ===== */

@media (min-width: 1000px) and (max-width: 1280px) {
  .aam-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
  }

  .aam-header__nav {
    gap: 24px;
  }

  .aam-hero-copy {
    width: 340px;
  }

  .aam-slide__footer {
    grid-template-columns: 286px minmax(190px, 1fr) 120px;
  }

/*   .aam-capabilities__intro, */
  .aam-capability-panel {
    grid-template-columns: 190px minmax(300px, 1fr) 330px;
    gap: 40px;
  }

/*   .aam-capabilities__copy h2 {
    max-width: 100%;
  } */
  .aam-capabilities__copy h2, .aam-how-work__heading h2, .aam-build__heading h2, .aam-case-study__heading-group h2, .aam-services__headline h2, .aam-testimonials__header h2, .aam-footer__cta-block h2, .aam-awards__header h2 {
     font-size: clamp(34px, 6vw, 34px);
     line-height: 1.1;
     max-width: 80%;
   }
	.aam-testimonials__header h2 {
        max-width:70%;
    }
	.aam-case-study__heading-group h2, .aam-awards__header h2{
		max-width: 90%;
	}
  .aam-capability-panel__media {
    width: 330px;
    height: 232px;
  }

  .aam-work-card-group {
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 28px;
  }
  .aam-testimonials__eyebrow {
    padding-top: 5px;
  }
  .aam-work-card-group__number {
    width: 92px;
    max-width: 92px;
  }

  .aam-work-card {
    width: min(520px, calc(100vw - 420px));
    flex-basis: min(520px, calc(100vw - 420px));
    gap: 24px;
    padding: 14px 14px 20px;

  }

  .aam-work-card-group__copy {
    width: 250px;
    max-width: 250px;
  }
/* 	.aam-how-work__viewport{
		margin-top:-20px;
	} */
  .aam-build__pin {
    padding: 88px 48px;
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 28px;
  }

/*   .aam-build__heading h2 {
    font-size: 38px;
    line-height: 44px;
  } */

  .aam-case-study__heading-group {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 72px;
  }
	.aam-case-study {
		margin-top:-120px;
	}
	.aam-case-study__row {
		    column-gap: 30px;
	}
	.aam-case-study__grid{
		row-gap: 32px;
	}

	.aam-case-card__content h3 {
      font-size: 18px;
	  line-height: 1.1;
	}
	.aam-case-card__content p {
		font-size:15px;
	}
	.aam-case-card--left .aam-case-card__media, .aam-case-card--right .aam-case-card__media, .aam-case-card--wide .aam-case-card__media {
      height: 350px;
	  border-radius:24px;
    }
	.aam-case-study__grid{
		margin-top:40px;
	}
/*   .aam-case-card--wide {
    width: min(100%, 920px);
  } */
	.aam-case-study__eyebrow{
		margin-top:10px;
	}
	.aam-work-card h3 {
		font-size:20px;
	} 
	.aam-work-card-group__copy p {
    font-size: 16px;
		line-height: 23px;
	}
  .aam-case-card--left,
  .aam-case-card--right {
    width: 100%;
  }

  .aam-services__cards {
    width: calc(100vw - 48px);
    gap: 22px;
    padding: 0 24px;
  }

  .aam-awards {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }
	
 
  .aam-award-card__copy p {
    font-size: 14px;
	line-height: 20px;
  }
  .aam-award-card__copy h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .aam-award-card__top img {
	  height:80px;
	  flex: 0 0 40px
  }
	
  .aam-awards__inner {
    padding-right: 48px;
    padding-left: 48px;
  }

/*   .aam-awards__header h2 {
    font-size: clamp(38px, 5vw, 52px);
  } */

  .aam-award-card {
    width: 210px;
    height: 315px;
    flex-basis: 200px;
  }

  .aam-award-card__top p {
    font-size: 38px;
  }

  .aam-service-card--growth {
    width: 360px;
    flex-basis: 330px;
	height: 510px;
  }
  .aam-service-card {
	height:440px;
   }
  .aam-service-card__button {
	font-size:14px;
  }
  .aam-service-card--growth .aam-service-card__button {
	font-size:16px;
  }
  .aam-service-card--growth {
	  height:460px;
  }
	
  .aam-service-card--growth .aam-service-card__tag span {
	font-size:16px;
	  height:48px;
  }
  
  .aam-testimonials__header {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 44px;
	 margin-bottom: 40px;
  }

  .aam-testimonials__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  }

  .aam-footer-logos {
    padding-right: 48px;
    padding-left: 48px;
  }
  
/* 	.aam-results > .aam-case-nav, .aam-results__case-nav {
		min-height: auto;
	} */
 
  .aam-footer__top {
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
	  padding:0 0 12px;
	  gap: 32px;
  }
	.aam-footer-section__bg {
    object-fit: fill;
	}
	.aam-footer__logo{
		margin:0px;
	}
	.aam-footer__bottom {
		min-height: 60px;
		padding: 20px 0;
	}
	.aam-footer__button {
		height: 48px;
		font-size:14px;
		border-radius:12px;
	}
	.aam-socials__link{
		width:42px;
		height:42px;
		border-radius:12px;
	}
	.aam-footer__social .aam-socials__link img {
		width:22px;
		height:22px;
	}

  .aam-footer__follow {
    grid-column: 2;
  }

  :root {
    --aam-header-x: clamp(46px, 5.2vw, 64px);
    --aam-header-pad: clamp(28px, 3.8vw, 36px);
  }

  .aam-header__inner {
    grid-template-columns: clamp(150px, 15vw, 180px) minmax(0, 1fr) clamp(150px, 15vw, 180px);
  }

  .aam-header__logo img {
    width: clamp(78px, 6.6vw, 88px);
  }
  .aam-header {
   padding: 15px 30px;
  }
  .aam-header__nav {
    gap:clamp(16px, 2.4vw, 30px);
  }

  .aam-header__nav a,
  .aam-header__cta {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .aam-header__cta {
    height: 46px;
    padding: 0 clamp(18px, 2vw, 24px);
  }

  .aam-button {
    height: clamp(46px, 4.25vw, 48px);
    min-width: clamp(138px, 11vw, 156px);
    padding: 0 clamp(18px, 1vw, 24px);
	  font-size:14px;
	  letter-spacing:0.4px;
  }
  .aam-work-card-group__number {
	  font-size:24px;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(50px, 4vw, 76px);
    line-height: 1.05;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    width: auto;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
    grid-template-columns: minmax(220px, 286px) minmax(180px, 1fr) minmax(120px, 220px);
  }

  .aam-case-nav {
    gap: clamp(8px, 2.8vw, 8px);
  }

  .aam-stat > span{
	font-size:15px;
	line-height:20px;
  }

	
  .aam-case-nav__button,
  .aam-case-nav__button img {
    width: clamp(40px, 4.2vw, 52px);
    height: clamp(40px, 4.2vw, 52px);
  }

  .aam-results {
    padding-right: clamp(28px, 2vw, 80px);
    padding-left: clamp(28px, 2vw, 80px);
	column-gap: 14px;
	bottom: -20px;
  }
  .aam-case-nav__brand span {
	  font-size:14px;
	}
	.aam-case-nav__brand strong {
	  font-size: 16px;
	}

  .aam-results__stats {
    gap: clamp(12px, 1.6vw, 24px);
  }

  .aam-stat strong {
    font-size: clamp(48px, 5.5vw, 68px);
  }

  .aam-stat__suffix {
    font-size: clamp(36px, 4.2vw, 48px);
  }

/*   .aam-capabilities__intro, */
  .aam-capability-panel {
    grid-template-columns: clamp(160px, 14vw, 220px) minmax(280px, 1fr) clamp(300px, 30vw, 380px);
    gap: clamp(28px, 3.5vw, 52px);
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

/*   .aam-capabilities__copy h2 {
    font-size: clamp(34px, 4.2vw, 40px);
    line-height: 1.1;
  } */

  .aam-capability-panel__number {
    font-size: clamp(76px, 6vw, 100px);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 3.35vw, 28px);
    line-height: 1.2;
  }
	
  .aam-capability-panel__content p {
    max-width: 590px;
    margin: 16px 0 20px;
	font-size: 16px;
   }
   .aam-capabilities__eyebrow p, .aam-how-work__eyebrow p, .aam-services__eyebrow p, .aam-build__eyebrow p, .aam-case-study__eyebrow p, .aam-awards__eyebrow p, .aam-testimonials__eyebrow p  {
	 font-size:14px;
   }
   .aam-capabilities__eyebrow span, .aam-how-work__eyebrow span, .aam-services__eyebrow span, .aam-build__eyebrow span, .aam-case-study__eyebrow span, .aam-testimonials__eyebrow span, .aam-awards__eyebrow span {
    font-size: 18px;
   }
   .aam-capabilities__intro {
    grid-template-columns: minmax(220px, calc(23vw - 126px)) minmax(0, 1fr);
	padding: 0 60px 40px;
   }
  .aam-capability-panel__media {
    width: clamp(300px, 30vw, 380px);
/*     height: clamp(214px, 20vw, 260px); */
	  height: auto;
  }
	.aam-build__callout p {
    font-size: 18px;
    line-height: 19px;
	}
  .aam-build__description > p {
	  font-size:15px;
	  line-height: 22px;
	}
	.aam-build__left {
		gap: 40px;
	}
	.aam-build__pin:after {
    	width: 560px;
	}
	.aam-awards__marquee {
	    margin-top: 30px;
	}
  .aam-how-work__heading,
  .aam-how-work__track,
  .aam-case-study__header,
  .aam-case-study__grid,
  .aam-testimonials,
  .aam-footer,
  .aam-footer-logos {
	  padding-right: 60px;
      padding-left: 60px;
  }
  .aam-footer-logos__track img {
	flex: 0 0 154px;
  }
  .aam-testimonials {
     padding: 90px 54px 90px;
  }
  .aam-testimonial-card__quote {
	  font-size: 16px;
	  font-weight: 400;
	  line-height: 24px;
  }
  .aam-how-work__heading-inner {
		gap: 18px;
		max-width:70%;
  }
  .aam-services__pin .ser-header, .aam-build__heading{
	gap:18px;
  }
  .aam-awards__eyebrow {
     margin-bottom: 18px;
  }
	.aam-footer__cta-block h2{
		    margin: 0 0 16px;
	}
  .aam-footer__cta-block p {
    font-size: 16px;
    line-height: 26px;
	  margin: 0 0 30px;
   }

  .aam-work-card-group {
    width: calc(100vw - clamp(92px, 10.4vw, 140px));
    flex-basis: calc(100vw - clamp(92px, 10.4vw, 140px));
  }

  .aam-work-card {
    width: clamp(430px, 43vw, 560px);
    flex-basis: clamp(430px, 41vw, 560px);
  }
	.aam-how-work__viewport {
		margin-top:40px;
	}

	.aam-work-card__image{
		height:auto;
	}
	
	.aam-how-work__pin{
		height:auto;
		padding: 90px 0;
		min-height:auto;
	}
	.aam-capabilities {
		padding-top:90px;
	}
  .aam-build__pin {
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
padding-top: 60px !important;
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: clamp(24px, 3vw, 30px);
  }
  .aam-build-card__icon{
	  width:50px;
	  height:50px;
  }
  .aam-build-card__heading{
	height:46px;
  }
  .aam-build-card__body > p {
	  font-size:15px;
  }
  .aam-build__content {
		gap:20px;
  }

  .aam-build-card__heading h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.22;
  }

  .aam-services__cards {
    width: min(100%, calc(100vw - clamp(92px, 10.4vw, 140px)));
    padding: 0;
  }

  .aam-service-card,
  .aam-service-card--growth {
    min-width: clamp(300px, 28vw, 380px);
  }
 .aam-service-card__price {
	font-size: 34px;
  }
 .aam-service-card__term p {
    font-size: 15px;
 }
 .aam-service-card--growth .aam-service-card__price {
    font-size: 38px;
 }
	.aam-service-card__price span {
		font-size: 16px;
	}
  .aam-services__ghost{
	font-size:120px;
	bottom: -20px;
  }
  .aam-testimonials__grid {
    gap: clamp(20px, 1.5vw, 28px);
  }
  .aam-results__stats {
    gap: 16px;
  }
  .aam-stat strong {
    font-size: clamp(36px, 4.5vw, 42px);
  }
  .aam-stat__suffix {
    font-size: clamp(28px, 3.6vw, 28px);
  }
  .aam-case-nav__brand {
    width: 200px;
  }
  .aam-case-nav__brand img {
	  width:130px;
  }
  .aam-eyebrow span {
    font-size: 22px;
  }
}


@media (min-width: 600px) and (max-width: 1000px) {
  .aam-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
  }

  .aam-header__nav {
    gap: 24px;
  }

  .aam-hero-copy {
    width: 340px;
  }

  .aam-slide__footer {
    grid-template-columns: 286px minmax(190px, 1fr) 120px;
  }
	.aam-socials__link{
		width:40px;
		height:40px;
		border-radius:12px;
	}
	.aam-footer__social .aam-socials__link img {
		width:20px;
		height:20px;
	}

	/*   .aam-capabilities__intro, */
  .aam-capability-panel {
    grid-template-columns: 190px minmax(300px, 1fr) 330px;
    gap: 40px;
  }

  .aam-capabilities__copy h2 {
    max-width: 80%;
  }

  .aam-capability-panel__media {
    width: 330px;
    height: 232px;
  }

  .aam-work-card-group {
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 28px;
  }

  .aam-work-card-group__number {
    width: 92px;
    max-width: 92px;
  }

  .aam-work-card {
    width: min(520px, calc(100vw - 420px));
    flex-basis: min(520px, calc(100vw - 420px));
  }

  .aam-work-card-group__copy {
    width: 250px;
    max-width: 250px;
  }

  .aam-build__pin {
    padding: 88px 48px;
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 28px;
  }

  .aam-build__heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .aam-case-study__heading-group {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 72px;
  }

  .aam-case-study__heading-group h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .aam-case-card--wide {
    width: min(100%, 920px);
  }

  .aam-case-card--left,
  .aam-case-card--right {
    width: 100%;
  }

  .aam-services__cards {
    width: calc(100vw - 48px);
    gap: 22px;
    padding: 0 24px;
  }

  .aam-awards {
    min-height: 820px;
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .aam-awards__inner {
    padding-right: 48px;
    padding-left: 48px;
  }

  .aam-awards__header h2 {
    font-size: clamp(38px, 5vw, 52px);
  }

  .aam-award-card {
    width: 210px;
    height: 326px;
    flex-basis: 210px;
  }

  .aam-award-card__top p {
    font-size: 44px;
  }

/*   .aam-service-card--growth {
    width: 360px;
    flex-basis: 360px;
  } */

  .aam-testimonials__header {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 44px;
  }

  .aam-testimonials__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  }

  .aam-footer-logos {
    padding-right: 48px;
    padding-left: 48px;
  }

  .aam-footer__top {
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  }

  .aam-footer__follow {
    grid-column: 2;
  }

  :root {
    --aam-header-x: clamp(46px, 5.2vw, 64px);
    --aam-header-pad: clamp(28px, 3.8vw, 36px);
  }

  .aam-header__inner {
    grid-template-columns: clamp(150px, 15vw, 180px) minmax(0, 1fr) clamp(150px, 15vw, 180px);
  }

  .aam-header__logo img {
    width: clamp(78px, 7.6vw, 88px);
  }

  .aam-header__nav {
    gap: clamp(22px, 2.7vw, 34px);
  }

  .aam-header__nav a,
  .aam-header__cta {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .aam-header__cta {
    height: 46px;
    padding: 0 clamp(18px, 2vw, 24px);
  }

  .aam-button {
    height: clamp(48px, 4.25vw, 50px);
    min-width: clamp(138px, 13vw, 156px);
    padding: 0 clamp(18px, 2vw, 24px);
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(54px, 6vw, 76px);
    line-height: 1.05;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    width: min(360px, 30vw);
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
    grid-template-columns: minmax(220px, 286px) minmax(180px, 1fr) minmax(120px, 220px);
  }

  .aam-case-nav {
    gap: clamp(24px, 2.8vw, 32px);
  }

  .aam-case-nav__button,
  .aam-case-nav__button img {
    width: clamp(44px, 4.2vw, 52px);
    height: clamp(44px, 4.2vw, 52px);
  }

  .aam-results {
    padding-right: clamp(48px, 5.6vw, 80px);
    padding-left: clamp(48px, 5.6vw, 80px);
  }

  .aam-results__stats > .aam-case-nav {
	display: flex;
	grid-row: 3;
    grid-column: 1 / -1;
    margin-top: 12px;
  }
	
  .aam-stat strong {
    font-size: clamp(48px, 5.5vw, 68px);
  }

  .aam-stat__suffix {
    font-size: clamp(36px, 4.2vw, 48px);
  }

/*   .aam-capabilities__intro, */
  .aam-capability-panel {
    grid-template-columns: clamp(160px, 16vw, 220px) minmax(280px, 1fr) clamp(300px, 30vw, 380px);
    gap: clamp(28px, 3.5vw, 52px);
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-capabilities__copy h2 {
    font-size: clamp(34px, 4.2vw, 44px);
    line-height: 1.1;
  }

  .aam-capability-panel__number {
    font-size: clamp(76px, 8.2vw, 100px);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 3.35vw, 36px);
    line-height: 1.16;
  }

  .aam-capability-panel__media {
    width: clamp(300px, 30vw, 380px);
    height: clamp(214px, 21vw, 260px);
  }

  .aam-how-work__heading,
  .aam-how-work__track,
  .aam-case-study__header,
  .aam-case-study__grid,
  .aam-testimonials,
  .aam-footer,
  .aam-footer-logos {
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-how-work__heading h2,
  .aam-build__heading h2,
  .aam-case-study__heading-group h2,
  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(36px, 4vw, 44px);
    line-height: 1.12;
  }

  .aam-work-card-group {
    width: calc(100vw - clamp(92px, 10.4vw, 140px));
    flex-basis: calc(100vw - clamp(92px, 10.4vw, 140px));
  }

  .aam-work-card {
    width: clamp(430px, 43vw, 560px);
    flex-basis: clamp(430px, 43vw, 560px);
  }

  .aam-build__pin {
    padding-right: clamp(46px, 5.2vw, 70px);
    padding-left: clamp(46px, 5.2vw, 70px);
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: clamp(28px, 3vw, 44px);
  }

  .aam-build-card__heading h3 {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.22;
  }

  .aam-testimonials__grid {
    gap: clamp(28px, 3.5vw, 54px);
  }
  .aam-results__stats {
    gap: 16px;
  }
  .aam-stat strong {
    font-size: clamp(36px, 4.5vw, 48px);
  }
  .aam-stat__suffix {
    font-size: clamp(28px, 3.6vw, 38px);
  }
  .aam-case-nav__brand {
    width: 260px;
  }
  :root {
    --aam-header-x: 24px;
    --aam-header-pad: 22px;
  }

  .aam-header {
    padding: 14px 16px;
  }

  .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 52px;
  }

  .aam-header__nav {
    display: none;
  }

  .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: none;
	transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
    will-change: transform, opacity;
  }
	.aam-header__logo,
    .aam-header__cta {
        transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
        will-change: transform, opacity;
    }
    .aam-header__logo.is-hidden,
    .aam-header__cta.is-hidden,
	.aam-menu-toggle.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-22px) scale(0.94) !important;
        pointer-events: none !important;
    }
 	body.is-menu-open .aam-header__logo,
    body.is-menu-open .aam-header__cta,
    body.is-menu-open .aam-menu-toggle {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
    }

  .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
/*     transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease); */
	  transition: transform 0.55s var(--aam-ease), opacity 0.45s var(--aam-ease), background 0.45s var(--aam-ease);
        z-index: 10;
  }

  .aam-menu-toggle span {
    position: absolute;
	top: 50%;
    left: 50%;
    width: 21px;
    height: 2px;
	margin-top: -1px;
        margin-left: -10.5px;
    border-radius: 999px;
    background: var(--aam-white);
    transform-origin: center;
    transition: transform 0.55s var(--aam-ease), background 0.45s var(--aam-ease);
    opacity: 0;
  }

  .aam-menu-toggle span:nth-of-type(1) {
    transform: translateY(-6px);
  }

  .aam-menu-toggle span:nth-of-type(2) {
    transform: translateY(0);
  }

  .aam-menu-toggle span:nth-of-type(3) {
    transform: translateY(6px);
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    transform: rotate(45deg) !important;
    opacity: 1 !important;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    background: var(--aam-hot-red);
    transform: scaleX(0) !important;
        opacity: 0 !important;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
     transform: rotate(-45deg) !important;
        opacity: 1 !important;
  }

  body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

  .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

  .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

  .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(2) {
    transition-delay: 0.04s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(3) {
    transition-delay: 0.08s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(4) {
    transition-delay: 0.12s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(5) {
    transition-delay: 0.16s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(6) {
    transition-delay: 0.2s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(7) {
    transition-delay: 0.24s;
  }

  .aam-mobile-menu__nav a:hover {
    color: var(--aam-hot-red);
  }

  .aam-header__logo img {
    width: 76px;
  }

  .aam-header__cta {
    grid-column: 3;
    justify-self: end;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .aam-header__cta span:last-child {
    display: none;
  }

  .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }

  section.aam-cinematic::before {
    display: none;
  }
  .aam-cinematic {
    height: 100vh;
    min-height: 0;
  }

  .aam-cinematic__pin {
    height: 100vh;
    min-height: 0;
  }

  .aam-hero-content,
  .aam-client-hero-content {
    width: min(650px, calc(100vw - 48px));
	bottom: calc(25% - 180px);
  }

  .aam-eyebrow p {
    font-size: 13px;
    letter-spacing: 6.4px;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(39px, 10.8vw, 58px);
  }

  .aam-hero-content h1 span:nth-child(2),
  .aam-hero-content__actions {
    padding-left: 0;
  }

  .aam-hero-content__actions {
    flex-wrap: wrap;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    top: auto;
    right: var(--aam-header-x);
    bottom: 118px;
    left: var(--aam-header-x);
    width: auto;
    max-width: 520px;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
	  display: none;
    bottom: 28px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .aam-slide {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
	
	.aam-video-card {
		position: relative;
		inset: auto;
		width: 100%;
		height: 50vh;
		min-height: 0;
		flex: 0 0 50vh;
	}

   .aam-results {
    position: relative;
    inset: auto;
    flex: 1 1 52vh;
    height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--aam-bg);
    padding: 16px clamp(24px, 4vw, 48px) 20px;
    box-sizing: border-box;
    overflow: hidden;
    pointer-events: auto;
  }

  .aam-results__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    row-gap: 12px;
    column-gap: 24px;
    align-items: center;
    align-content: center;
    justify-content: center;
    pointer-events: auto;
  }

  .aam-results__stats > .aam-stat {
    grid-column: auto !important;
    grid-row: auto !important;
    pointer-events: auto;
  }

  .aam-results > .aam-case-nav,
  .aam-results__case-nav {
    display: flex !important;
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
    margin-bottom: 8px;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
	min-height: auto;
  }

  .aam-stat strong {
    gap: 0.375rem;
  }

  .aam-stat__suffix {
    padding-bottom: 0.25rem;
  }

  .aam-marquee-story {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story__pin {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story h2 {
    font-size: clamp(58px, 16vw, 96px);
  }

  .aam-marquee-story__pattern {
    width: 1780px;
    height: 320px;
    gap: 42px;
  }

  .aam-marquee-story__pattern span {
    width: 104px;
    height: 320px;
  }

  .aam-marquee-story__note {
    right: 24px;
    bottom: 54px;
    left: 24px;
    max-width: none;
    font-size: 15px;
  }

  .aam-capabilities {
    height: auto;
    min-height: 0;
    padding-top: 82px;
  }

  .aam-capabilities__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px 0px;
    margin-bottom: 38px;
  }

  .aam-capabilities__copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 54px);
  }

/*   .aam-capabilities__track {
    height: auto;
    min-height: 0;
    padding: 0 24px;
  }

  .aam-capability-stack {
    position: relative;
    top: auto;
    display: grid;
    width: 100%;
    height: auto;
    gap: 18px;
  }

  .aam-capability-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    border-radius: 16px;
    padding: 32px 24px;
  } */
	
	  .aam-capabilities__track {
    padding: 0 24px;
  }

  .aam-capability-stack {
    min-height: 0;
  }

  .aam-capability-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    border-radius: 16px;
    padding: 32px 24px;
  }


  .aam-capability-panel__number {
    font-size: 72px;
  }

  .aam-capability-panel__media {
    width: 100%;
    height: min(58vw, 320px);
    order: -1;
  }

  .aam-capability-panel__media video {
    transform: scale(1.04);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .aam-how-work__pin {
    min-height: 780px;
    padding: 82px 0;
  }

  .aam-how-work__heading {
    height: auto;
    padding: 0 24px;
  }

  .aam-how-work__heading-inner {
    gap: 20px;
    max-width: 90%;
  }

  .aam-how-work__heading h2 {
    font-size: clamp(36px, 7.2vw, 42px);
    line-height: 1.12;
  }

  .aam-how-work__viewport {
    margin-top: 36px;
  }

  .aam-how-work__track {
    gap: 24px;
    padding: 0 24px;
	animation-duration: 18s;
  }

  .aam-work-card-group {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 20px;
    align-items: start;
    justify-content: start;
  }

  .aam-work-card-group__number {
    width: auto;
    max-width: none;
    text-align: right;
	font-size:24px;
  }

  .aam-work-card {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    gap: 28px;
    padding: 14px 14px 20px;
  }

  .aam-work-card__image {
    height: min(45vw, 280px);
  }

  .aam-work-card-group__copy {
    grid-column: 2;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .aam-work-card-group__copy p {
    font-size: 16px;
    line-height: 23px;
  }

  .aam-build__pin {
    height: auto;
    min-height: 0;
    padding: 82px 24px;
  }

  .aam-build__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    height: auto;
  }

  .aam-build__left {
    gap: 32px;
  }

  .aam-build__content {
    padding-top: 0;
  }

  .aam-build__heading {
    max-width: 100%;
  }

  .aam-build__heading h2 {
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.12;
  }

  .aam-build__description > p {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-build__callout p {
    white-space: normal;
  }

  .aam-build__right {
    display: grid;
    height: auto;
    gap: 24px;
    padding-top: 0;
    padding-left: 0;
  }

  .aam-build-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 0;
    padding: 18px 16px 20px 0;
  }

  .aam-build-card__heading {
    height: 54px;
  }

  .aam-build-card__heading h3 {
    max-width: calc(100% - 78px);
    font-size: 19px;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .aam-build-card__body > p {
    padding-left: 20px;
    font-size: 15px;
    line-height: 22px;
  }

  .aam-build-card__icon {
    width: 48px;
    height: 48px;
  }

  .aam-case-study {
    padding: 20px 0 82px;
	  margin-top:0px;
  }

  .aam-case-study__header {
    display: grid;
    min-height: 0;
    gap: 28px;
    padding: 0 24px;
  }

  .aam-case-study__heading-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aam-case-study__heading-group h2 {
    max-width: 760px;
    font-size: clamp(36px, 7.2vw, 44px);
    line-height: 1.12;
  }

  .aam-case-study__cta {
    width: max-content;
  }

  .aam-case-study__grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 34px;
    margin-top: 44px;
    padding: 0 24px;
  }

  .aam-case-study__row {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .aam-case-card,
  .aam-case-card--wide,
  .aam-case-card--left,
  .aam-case-card--right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
  }

  .aam-case-card--wide .aam-case-card__media,
  .aam-case-card--left .aam-case-card__media,
  .aam-case-card--right .aam-case-card__media {
    height: auto;
    aspect-ratio: 16/9;
  }

  .aam-case-card--wide .aam-case-card__media {
    aspect-ratio: 1.5;
  }

  .aam-case-card__media {
    border-radius: 22px;
  }

  .aam-case-card__media img {
    border-radius: inherit;
  }
	
  .aam-case-card__view-btn {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(98deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
	 height:50px;
  }

  .aam-case-card__view-btn img {
    width: 22px;
    margin-left: 2px;
  }

  .aam-services__pin {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 82px 24px;
  }

  .aam-services__eyebrow {
    justify-content: center;
  }

  .aam-services__headline {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin-top: 0px;
    text-align: left;
    transform: none;
  }

  .aam-services__headline h2 {
    font-size: clamp(34px, 8.2vw, 54px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .aam-services__ghost {
    right: 0;
	  bottom: -10px;
	  left: 0;
	  top: auto;
	  translate: initial;
	  font-size: clamp(78px, 18vw, 150px);
	  opacity: 0.035;
	  text-align: center;
	  margin: 0 auto;
  }

  .aam-services__cards {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    gap: 22px;
    margin-top: 38px;
    padding: 0;
    transform: none;
    opacity: 1;
  }
	
	.aam-services__cards {
		width: min(100%, calc(100vw - clamp(92px, 10.4vw, 140px)));
		padding: 0;
	}

	.aam-service-card{
		min-width: clamp(300px, 29vw, 380px);
		width: clamp(460px, 29vw, 380px);
	}

  .aam-awards {
    min-height: auto;
    padding: 82px 0 82px;
  }

  .aam-awards::before {
    background-size: 25vw 100%;
  }

  .aam-awards__inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .aam-awards__header {
    width: auto;
  }

  .aam-awards__eyebrow {
    margin-bottom: 20px;
	}
  .aam-awards__marquee {
    margin-top: 34px;
    padding-top: 16px;
    padding-bottom: 30px;
  }
	.aam-case-card__content h3 {
		font-size:20px;
	}

  .aam-awards__track {
/*     margin-left: 48px; */
    animation-duration: 50s;
  }

  .aam-awards__group {
    gap: 18px;
    padding-right: 18px;
  }

  .aam-award-card {
    width: 190px;
    height: 300px;
    flex-basis: 190px;
    border-radius: 20px;
    padding: 18px;
  }

  .aam-award-card:hover {
    transform: scale(1.055);
  }

  .aam-award-card__top p {
    font-size: 38px;
  }

  .aam-award-card__top img {
    width: 70px;
    height: 88px;
    flex-basis: 70px;
  }

  .aam-award-card__copy h3,
  .aam-award-card__copy p {
    font-size: 17px;
  }

  .aam-award-card__copy p {
    font-size: 15px;
  }

  .aam-service-card,
  .aam-service-card--growth {
/*     width: 100%; */
/*     min-width: 0; */
    height: auto;
    min-height: 480px;
    flex: none;
  }

/*   .aam-service-card--growth {
    min-height: 480px;
  } */

  .aam-testimonials {
    padding: 82px 24px 82px;
  }

  .aam-testimonials__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(34px, 7vw, 42px);
    line-height: 1.14;
  }

  .aam-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .aam-testimonial-card,
  .aam-testimonial-card--large {
    min-height: 220px;
  }
	
  .aam-testimonial-video {
	  aspect-ratio: 16 / 9;
  }

  .aam-footer-logos {
    justify-content: flex-start;
    padding: 0 24px 48px;
  }

/*   .aam-footer-logos__track {
    animation-duration: 24s;
  } */

  .aam-footer {
    padding: 0 24px;
  }

  .aam-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 46px;
  }
	.aam-footer-section__bg {
		object-fit: fill;
	}
  .aam-footer__follow {
    grid-column: auto;
  }

  .aam-footer__logo {
    height: auto;
    max-height: 74px;
  }

  .aam-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .aam-footer__bottom div {
    flex-wrap: wrap;
  }

  :root {
    --aam-header-x: clamp(28px, 4.8vw, 42px);
    --aam-header-pad: clamp(20px, 3.8vw, 30px);
  }

/*   .aam-header {
    padding: 16px var(--aam-header-pad);
  } */

  .aam-header__inner {
    height: 56px;
    column-gap: clamp(14px, 2.2vw, 20px);
  }

  .aam-header__logo img {
    width: clamp(72px, 9vw, 84px);
  }

  .aam-header__cta,
  .aam-menu-toggle {
    width: auto;
    height: clamp(42px, 5.5vw, 46px);
    min-width: clamp(42px, 5.5vw, 46px);
  }

  .aam-menu-toggle img {
    width: clamp(24px, 3.2vw, 28px);
    height: clamp(24px, 3.2vw, 28px);
  }

  .aam-hero-content,
  .aam-client-hero-content {
/*     top: clamp(132px, 17vw, 168px); */
    width: min(690px, calc(100vw - (var(--aam-header-x) * 2)));
  }

  .aam-client-socials {
    right: var(--aam-header-pad);
    gap: 12px;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(40px, 7.4vw, 46px);
    line-height: 1.08;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    right: var(--aam-header-x);
    bottom: clamp(104px, 13vw, 136px);
    left: var(--aam-header-x);
    max-width: min(560px, 72vw);
  }

  .aam-stat strong {
    font-size: clamp(48px, 8vw, 50px);
  }

  .aam-marquee-story h2 {
    font-size: clamp(82px, 13vw, 120px);
  }

  .aam-capabilities__intro,
  .aam-capabilities__track,
  .aam-how-work__heading,
  .aam-how-work__track,
  .aam-build__pin,
  .aam-case-study__header,
  .aam-case-study__grid,
  .aam-services__pin,
  .aam-testimonials,
  .aam-footer,
  .aam-footer-logos {
    padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
  }

  .aam-capabilities__copy h2,
  .aam-how-work__heading h2,
  .aam-build__heading h2,
  .aam-case-study__heading-group h2,
  .aam-services__headline h2,
  .aam-testimonials__header h2,
  .aam-footer__cta-block h2, 
	.aam-awards__header h2 {
    font-size: clamp(30px, 6vw, 30px);
    line-height: 1.12;
	max-width: 85%;
  }
  .aam-capabilities__eyebrow p, .aam-how-work__eyebrow p, .aam-services__eyebrow p, .aam-build__eyebrow p, .aam-case-study__eyebrow p, .aam-awards__eyebrow p, .aam-testimonials__eyebrow p {
	font-size:13px
  }
	
	.aam-how-work__eyebrow span, .aam-capabilities__eyebrow span, .aam-services__eyebrow span, .aam-build__eyebrow span, .aam-case-study__eyebrow span, .aam-awards__eyebrow span, .aam-testimonials__eyebrow span {
		font-size:20px;
	}
	.aam-services__headline h2 {
		text-align: center;
        max-width: 75%;
	}
	.ser-header, .aam-build__heading {
		gap: 20px;
	}

	/*   .aam-capability-stack {
		gap: clamp(18px, 2.6vw, 26px);
	  } */

  .aam-capability-panel {
    padding: clamp(32px, 5vw, 44px) clamp(24px, 4vw, 36px);
  }

  .aam-capability-panel__content p {
    font-size: 16px;
  }
  .aam-capability-panel__number {
    font-size: clamp(64px, 11vw, 66px);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(28px, 5vw, 28px);
  }

  .aam-capability-panel__media {
    height: min(46vw, 400px);
  }

  .aam-how-work__pin,
  .aam-build__pin,
  .aam-services__pin {
    padding-top: clamp(82px, 10vw, 104px);
    padding-bottom: clamp(50px, 10vw, 50px);
	height: auto;
  }
  .aam-services__pin {
    padding-top: clamp(52px, 10vw, 644px);
  }
	.aam-capability-panel__content p {
      margin: 16px 0 24px;
	}
	.aam-capability-panel__content {
		position: relative;
		z-index: 2;
		max-width: 100%;
		align-self: start;
		padding-top: 0px;
	}

  .aam-work-card-group {
    grid-template-columns: clamp(64px, 9vw, 86px) minmax(0, 1fr);
    width: calc(100vw - (var(--aam-header-x) * 2));
    flex-basis: calc(80vw - (var(--aam-header-x) * 2));
    gap: clamp(14px, 3vw, 20px);
  }

  .aam-work-card-group__copy {
    grid-column: 2;
  }

  .aam-work-card__image {
	/*     height: min(42vw, 300px); */
	  height:auto;
  }

  .aam-build__container,
  .aam-testimonials__grid {
    gap: clamp(20px, 5vw, 26px);
  }

  .aam-testimonials__side, .aam-testimonials__wide {
	  gap:24px;
  }
	
  .aam-build-card__heading h3 {
    font-size: clamp(19px, 3vw, 20px);
  }

  .aam-case-study__grid,
  .aam-services__cards {
    gap: clamp(24px, 3.6vw, 36px);
  }
	.aam-build__content {
		gap:20px;
	}
	.aam-build__callout p {
		font-size:18px;
	}
	.aam-button, .aam-service-card__button {
		font-size:15px;
	}
  .aam-service-card--growth {
    min-height: clamp(480px, 66vw, 480px);
  }

  .aam-footer__logo {
    max-height: clamp(74px, 10vw, 104px);
  }
	/*   .aam-capabilities__copy {
			max-width: 75%;
		} */
}


@media (max-width: 600px) {
  .aam-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
  }

  .aam-header__nav {
    gap: 24px;
  }

  .aam-hero-copy {
    width: 340px;
  }

  .aam-slide__footer {
    grid-template-columns: 286px minmax(190px, 1fr) 120px;
  }

	/*   .aam-capabilities__intro, */
  .aam-capability-panel {
    grid-template-columns: 190px minmax(300px, 1fr) 330px;
    gap: 40px;
  }

  .aam-capabilities__copy h2 {
    max-width: 100%;
  }

  .aam-capability-panel__media {
    width: 330px;
    height: 232px;
  }

  .aam-work-card-group {
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 28px;
  }

  .aam-work-card-group__number {
    width: 92px;
    max-width: 92px;
  }

  .aam-work-card {
    width: min(520px, calc(100vw - 420px));
    flex-basis: min(520px, calc(100vw - 420px));
  }

  .aam-work-card-group__copy {
    width: 250px;
    max-width: 250px;
  }

  .aam-build__pin {
    padding: 88px 48px;
  }

  .aam-build__container {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 28px;
  }

  .aam-build__heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .aam-case-study__heading-group {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 72px;
  }

  .aam-case-study__heading-group h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .aam-case-card--wide {
    width: min(100%, 920px);
  }

  .aam-case-card--left,
  .aam-case-card--right {
    width: 100%;
  }
	
  .aam-awards {
    min-height: 820px;
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .aam-awards__inner {
    padding-right: 48px;
    padding-left: 48px;
  }

  .aam-awards__header h2 {
    font-size: clamp(38px, 5vw, 52px);
  }

  .aam-award-card {
    width: 210px;
    height: 326px;
    flex-basis: 210px;
  }

  .aam-award-card__top p {
    font-size: 44px;
  }

  .aam-testimonials__header {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 44px;
  }

  .aam-testimonials__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  }

  .aam-footer-logos {
    padding-right: 48px;
    padding-left: 48px;
  }

  .aam-footer__top {
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  }

  .aam-footer__follow {
    grid-column: 2;
  }
  
	.aam-footer__follow {
		gap:8px;
	}

  :root {
    --aam-header-x: 24px;
    --aam-header-pad: 22px;
  }

  .aam-header {
    padding: 14px 16px;
  }

  .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 52px;
  }

  .aam-header__nav {
    display: none;
  }

  .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease);
  }

  .aam-menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--aam-white);
    transform-origin: center;
    transition: transform 0.55s var(--aam-ease), background 0.45s var(--aam-ease);
    opacity: 0;
  }

  .aam-menu-toggle span:nth-of-type(1) {
    transform: translateY(-6px);
  }

  .aam-menu-toggle span:nth-of-type(2) {
    transform: translateY(0);
  }

  .aam-menu-toggle span:nth-of-type(3) {
    transform: translateY(6px);
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    transform: rotate(45deg);
    opacity: 1;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    background: var(--aam-hot-red);
    transform: scaleX(0);
    opacity: 0;
  }

  body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
    transform: rotate(-45deg);
    opacity: 1;
  }

  body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

  .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

  .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

  .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

  body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(2) {
    transition-delay: 0.04s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(3) {
    transition-delay: 0.08s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(4) {
    transition-delay: 0.12s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(5) {
    transition-delay: 0.16s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(6) {
    transition-delay: 0.2s;
  }

  body.is-menu-open .aam-mobile-menu__nav a:nth-child(7) {
    transition-delay: 0.24s;
  }

  .aam-mobile-menu__nav a:hover {
    color: var(--aam-hot-red);
  }

  .aam-header__logo img {
    width: 76px;
  }

  .aam-header__cta {
    grid-column: 3;
    justify-self: end;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .aam-header__cta span:last-child {
    display: none;
  }

  .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }

  section.aam-cinematic::before {
    display: none;
  }
	
  .aam-cinematic {
    height: 100vh;
    min-height: 0;
  }

  .aam-cinematic__pin {
    height: 100vh;
    min-height: 0;
  }

  .aam-hero-content,
  .aam-client-hero-content {
    top: 146px;
    width: min(650px, calc(100vw - 48px));
  }

  .aam-eyebrow p {
    font-size: 13px !important;
    letter-spacing: 6.4px;
	  color: rgba(255, 255, 255, 0.65);
	  font-weight: 400;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(39px, 10.8vw, 58px);
  }

  .aam-hero-content h1 span:nth-child(2),
  .aam-hero-content__actions {
    padding-left: 0;
  }

  .aam-hero-content__actions {
    flex-wrap: wrap;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    top: auto;
    right: var(--aam-header-x);
    bottom: 118px;
    left: var(--aam-header-x);
    width: auto;
    max-width: 520px;
    font-size: 16px;
    line-height: 24px;
  }

  .aam-slide__footer {
	display: none;
    bottom: 28px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .aam-slide {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    height: 95%;
	overflow: hidden;
  }

  .aam-video-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: 50vh;
    min-height: 0;
    flex: 0 0 45vh;
  }

  .aam-results {
    position: relative;
    inset: auto;
    flex: 1 1 50vh;
	height: 50vh;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--aam-bg);
    padding: 0;
	box-sizing: border-box;
    overflow: hidden;
	pointer-events: auto;
  }

  .aam-results__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    flex: 1 1 auto;
    width: 100%;
	min-height: 0;
    row-gap: 8px;
    column-gap: 12px;
    align-items: center;
    align-content: center;
    justify-content: center;
    pointer-events: auto;
	padding: 28px 8px;
  }
	
  .aam-results__stats > .aam-stat {
    grid-column: auto !important;
    grid-row: auto !important;
    pointer-events: auto;
  }

  .aam-results > .aam-case-nav,
  .aam-results__case-nav {
    display: flex !important;
    flex: 0 0 auto;
    width: 100%;
	min-height: 0 !important;
    margin-top: auto;
	padding: 6px 0 0;
    justify-content: center;
    align-items: center;
    grid-column: auto !important;
    grid-row: auto !important;
    pointer-events: auto;
	margin-bottom: 10px;
	padding: 0px 20px;
  }

  .aam-stat strong {
    gap: 0.375rem;
  }

  .aam-stat__suffix {
    padding-bottom: 0.25rem;
  }

  .aam-marquee-story {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story__pin {
    height: 600px;
    min-height: 600px;
  }

  .aam-marquee-story h2 {
    font-size: clamp(58px, 16vw, 96px);
  }

  .aam-marquee-story__pattern {
    width: 1780px;
    height: 320px;
    gap: 42px;
  }

  .aam-marquee-story__pattern span {
    width: 104px;
    height: 320px;
  }

  .aam-marquee-story__note {
    right: 24px;
    bottom: 54px;
    left: 24px;
    max-width: none;
    font-size: 15px;
  }

  .aam-capabilities {
    height: auto;
    min-height: 0;
    padding-top: 82px;
  }

  .aam-capabilities__intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 24px 0px;
    margin-bottom: 38px;
  }

  .aam-capabilities__copy h2 {
    max-width: 450px;
    font-size: clamp(38px, 10.4vw, 54px);
  }
 .ser-header {
    display: grid;
    gap: 20px;
  }
	
  .aam-capabilities__track {
    padding: 0 24px;
  }

  .aam-capability-stack {
    min-height: 0;
  }

  .aam-capability-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    border-radius: 16px;
    padding: 32px 24px;
  }


  .aam-capability-panel__number {
    font-size: 72px;
  }

  .aam-capability-panel__media {
    width: 100%;
    height: min(58vw, 320px);
    order: -1;
  }

  .aam-capability-panel__media video {
    transform: scale(1.04);
  }

  .aam-capability-panel__content h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .aam-how-work__pin {
    min-height: 780px;
    padding: 82px 0;
  }

  .aam-how-work__heading {
    height: auto;
    padding: 0 24px;
  }

  .aam-how-work__heading-inner {
    gap: 20px;
    max-width: 450px;
  }

  .aam-how-work__heading h2 {
    font-size: clamp(36px, 7.2vw, 42px);
    line-height: 1.12;
  }

  .aam-how-work__viewport {
    margin-top: 30px;
  }

  .aam-how-work__track {
    gap: 24px;
	padding-top: unset;
    padding: 0 24px;
  }

  .aam-work-card-group {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
    gap: 20px;
    align-items: start;
    justify-content: start;
  }

  .aam-work-card-group__number {
    width: auto;
    max-width: none;
    text-align: left;
  }

  .aam-work-card {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    gap: 28px;
    padding: 14px 14px 20px;
  }

  .aam-work-card__image {
    height: min(45vw, 280px);
  }

  .aam-work-card-group__copy {
    grid-column: 2;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .aam-work-card-group__copy p {
    font-size: 16px;
    line-height: 23px;
  }

  .aam-build__pin {
    height: auto;
    min-height: 0;
    padding: 82px 24px;
  }

  .aam-build__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    height: auto;
  }

  .aam-build__left {
    gap: 32px;
  }

  .aam-build__content {
    padding-top: 0;
  }

  .aam-build__heading {
    max-width: 450px;
	  gap: 20px;
  }

  .aam-build__heading h2 {
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.12;
  }

  .aam-build__description > p {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }
  .aam-build__callout {
    padding: 3px 12px;
  }
  .aam-build__callout p {
    white-space: normal;
  }

  .aam-build__right {
    display: grid;
    height: auto;
    gap: 24px;
    padding-top: 0;
    padding-left: 0;
  }

  .aam-build-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 0;
    padding: 18px 16px 20px 0;
  }

  .aam-build-card__heading {
    height: 54px;
  }

  .aam-build-card__heading h3 {
    max-width: calc(100% - 78px);
    font-size: 19px;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .aam-build-card__body > p {
    padding-left: 20px;
    font-size: 15px;
    line-height: 22px;
  }

  .aam-build-card__icon {
    width: 62px;
    height: 62px;
  }

  .aam-case-study {
    padding: 76px 0 76px;
  }

  .aam-case-study__header {
    display: grid;
    min-height: 0;
    gap: 28px;
    padding: 0 24px;
  }

  .aam-case-study__heading-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
	max-width: 450px;
  }

  .aam-case-study__heading-group h2 {
    max-width: 760px;
    font-size: clamp(36px, 7.2vw, 44px);
    line-height: 1.12;
  }

  .aam-case-study__cta {
    width: max-content;
  }

  .aam-case-study__grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 34px;
    margin-top: 44px;
    padding: 0 16px;
  }

  .aam-case-study__row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aam-case-card,
  .aam-case-card--wide,
  .aam-case-card--left,
  .aam-case-card--right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
  }

  .aam-case-card--wide .aam-case-card__media,
  .aam-case-card--left .aam-case-card__media,
  .aam-case-card--right .aam-case-card__media {
    height: auto;
    aspect-ratio: 1.5;
  }

  .aam-case-card--wide .aam-case-card__media {
    aspect-ratio: 1.5;
  }

  .aam-case-card__media {
    border-radius: 22px;
  }

  .aam-case-card__media img {
    border-radius: inherit;
  }
	
  .aam-case-card__view-btn {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(98deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
  }

  .aam-case-card__view-btn img {
    width: 20px;
    margin-left: 2px;
  }

  .aam-services__pin {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 82px 24px;
  }

  .aam-services__eyebrow {
    justify-content: center;
  }

  .aam-services__headline {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin-top: 0px;
    text-align: left;
    transform: none;
  }

  .aam-services__headline h2 {
    font-size: clamp(34px, 8.2vw, 54px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .aam-services__ghost {
    right: auto;
    bottom: auto;
    left: 50%;
    top: 162px;
    translate: -50% 0;
    font-size: clamp(78px, 18vw, 150px);
    opacity: 0.035;
  }

  .aam-services__cards {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    gap: 22px;
    margin-top: 56px;
    padding: 0;
    transform: none;
    opacity: 1;
  }
	
	/* 	.aam-services__cards {
			width: calc(100vw - 48px);
			gap: 22px;
			padding: 0 24px;
		} */


  .aam-awards {
    min-height: 760px;
    padding: 82px 0 96px;
  }

  .aam-awards::before {
    background-size: 25vw 100%;
  }

  .aam-awards__inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .aam-awards__header {
    width: min(640px, 100%);
	  max-width:450px
  }

  .aam-awards__header h2 {
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.1;
  }

  .aam-awards__marquee {
    margin-top: 34px;
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .aam-awards__track {
/*     margin-left: 48px; */
    animation-duration: 50s;
  }

  .aam-awards__group {
    gap: 18px;
    padding-right: 18px;
  }

  .aam-award-card {
    width: 190px;
    height: 300px;
    flex-basis: 190px;
    border-radius: 20px;
    padding: 18px;
  }

  .aam-award-card:hover {
    transform: scale(1.055);
  }

  .aam-award-card__top p {
    font-size: 38px;
  }

  .aam-award-card__top img {
    width: 70px;
    height: 88px;
    flex-basis: 70px;
  }

  .aam-award-card__copy h3,
  .aam-award-card__copy p {
    font-size: 17px;
  }

  .aam-award-card__copy p {
    font-size: 15px;
  }

  .aam-service-card,
  .aam-service-card--growth {
    width: 100%;
	max-width: 420px;
    min-width: 0;
    height: auto;
    min-height: 500px;
    flex: none;
  }

  .aam-service-card--growth {
    min-height: 520px;
  }

  .aam-testimonials {
    padding: 82px 24px 46px;
  }

  .aam-testimonials__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
	 max-width: 450px;
  }

/*   .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: clamp(34px, 7vw, 42px);
    line-height: 1.14;
  } */

  .aam-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .aam-testimonial-card,
  .aam-testimonial-card--large {
    min-height: 220px;
  }

  .aam-footer-logos {
    justify-content: flex-start;
    padding: 0 24px 48px;
  }

/*   .aam-footer-logos__track {
    animation-duration: 24s;
  } */

  .aam-footer {
    padding: 0 24px;
  }

  .aam-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 46px;
  }

  .aam-footer__follow {
    grid-column: auto;
  }

	.aam-footer__menu h3, .aam-footer__follow h3{
		font-size:17px;
		letter-spacing: 0.5px;
	}

  .aam-footer__logo {
    height: auto;
    max-height: 74px;
  }

  .aam-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .aam-footer__bottom div {
    flex-wrap: wrap;
  }

  .aam-header__cta {
    border-radius: 10px;
    gap: 0.5rem;
    height: 2.625rem;
    min-width: 2.625rem;
    padding: 0 0.75rem;
  }
  .aam-build__content {
    gap: 20px;
  }
  .aam-header__cta span:last-child {
    display: none;
  }
  /*.aam-video-card{
    width:200px;
  }*/

  .aam-hero-copy {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
/*   .aam-header__logo img {
    width: 3rem;
  } */

  .aam-button {
    height: 48px;
    min-width: 150px;
    padding: 0 16px;
    font-size: 14px;
  }

  .aam-hero-content,
  .aam-client-hero-content {
    top: auto;
    right: 1rem;
    left: 1rem;
    width: auto;
    text-align: center;
	  bottom: 8%;
  }

  .aam-client-hero-content {
/*     right: 0rem; */
    text-align: left;
  }
  
  .aam-hero-content .aam-eyebrow,
  .aam-client-hero-content .aam-eyebrow {
    justify-content: center;
  }

  .aam-client-hero-content .aam-eyebrow {
    justify-content: flex-start;
  }

  .aam-hero-content h1,
  .aam-client-hero-content h1 {
    font-size: clamp(2.2rem, 7.25vw, 2.875rem);
    line-height: 1.12;
	  text-align:left;
  }

  .aam-hero-content__actions {
    position: relative;
    top: auto;
    right: 0;
    left: 0;
    justify-content: flex-start;
    gap: 0.6rem;
	margin-top: 14px;
	margin-bottom: 25px;
  }

  .aam-hero-copy,
  .aam-client-hero-copy {
    top: 21.25rem;
    right: 1rem;
    bottom: auto;
    left: 1rem;
    max-width: none;
    text-align: center;
  }

  .aam-client-hero-copy {
    text-align: left;
  }

  .aam-client-socials {
    top: 75%;
    right: 1rem;
    gap: 0.625rem;
	 display:none;
  }

  .aam-client-socials .aam-socials__link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .aam-socials {
    display: none;
  }

  .aam-case-nav {
    display: flex;
    gap: 12px;
  }

  .aam-case-nav__button,
  .aam-case-nav__button img {
    width: 38px;
    height: 38px;
  }

  .aam-case-nav__brand {
    min-height: 74px;
  }

  .aam-case-nav__brand img {
    width: 120px;
    max-width: auto;
    padding-bottom: 2px;
  }

  .aam-marquee-story,
  .aam-marquee-story__pin {
    height: 450px;
    min-height: 450px;
  }
	
  	.aam-case-nav__brand span {
		font-size:14px;
	}


  .aam-marquee-story h2, body.aam-about-body .aam-about-highlighter h2 {
    font-size: clamp(7.5rem, 18vw, 6rem);
  }
  .aam-build__description > p {
    max-width: none;
    font-size: 14px;
    line-height: 21px;
  } 

  .aam-service-card--growth .aam-service-card__description {
    color: var(--aam-white);
    font-size: 13px;
    line-height: 20px;
  }

  .aam-service-card--growth .aam-service-card__term p{
    font-size: 14px;
    line-height: 22px;
  }

  .aam-marquee-story__slash {
    font-size: clamp(10rem, 22vw, 7rem);
  }
	
  .aam-how-work__eyebrow span, .aam-capabilities__eyebrow span,
  .aam-build__eyebrow span, .aam-case-study__eyebrow span, .aam-services__eyebrow span,
  .aam-testimonials__eyebrow span, .aam-awards__eyebrow span {
    font-size: 14px;
    font-weight: 700;
    line-height: 0.8;
    transform: skewX(-10deg);
  }
  .aam-eyebrow span{
    font-size: 15px;
    margin-top: -2px;
  }

  .aam-stat strong {
    font-size: clamp(34px, 7vw, 40px);
  }

  .aam-stat__suffix {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .aam-stat > span {
    font-size: 15px;
    line-height: 17px;
  }

  .aam-stat em {
    font-size: 12px;
  }

  .aam-capabilities {
    padding-top: 5rem;
  }

  .aam-capabilities__intro {
    gap: 1.25rem;
    padding: 0 1rem 1.875rem;
    margin-bottom: 0;
  }

  .aam-capabilities__eyebrow p,.aam-how-work__eyebrow p {
    font-size: 13px;
    letter-spacing: 0.34rem;
  }

  .aam-capabilities__copy h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-capabilities__copy p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.375;
  }

  .aam-build__callout p {
    font-size: 18px;
  }

  .aam-work-card-group__copy p {
        font-size: 14px;
        line-height: 22px;
  }

  .aam-capabilities__track {
    padding: 0;
  }

	/*   .aam-capability-stack {
		gap: 0;
	  } */

  .aam-case-card__content {
    gap: 4px;
	margin-top: 16px;
  } 

  .aam-testimonial-video__heading p {
    font-size: 18px;
  }

  .aam-capability-panel {
    grid-template-columns: 4.125rem minmax(0, 1fr);
    gap: 2rem 0.75rem;
    border-radius: 0;
    padding: 2.5rem 1rem 2.5rem;
  }

  .aam-capability-panel__number {
    grid-column: 1;
    font-size: 3rem;
    line-height: 1;
  }

  .aam-capability-panel__content {
    grid-column: 2;
    max-width: none;
    padding-top: 0.25rem;
  }

  .aam-capability-panel__content h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .aam-capability-panel__content p {
    margin: 0.5rem 0 1rem;
    font-size: 0.875rem;
    line-height: 1.375;
  }

  .aam-capability-panel__content .aam-button {
    min-width: 7.75rem;
    height: 2.75rem;
    font-size: 0.813rem;
  }

  .aam-capability-panel__media {
    grid-column: 1 / -1;
    order: initial;
    height: 15.3125rem;
    margin-top: 0;
    border-radius: 0.875rem;
  }

  .aam-how-work__pin {
    min-height: auto;
    padding: 76px 0;
	height: auto;
  }
	.aam-service-card__content {
		gap:18px;
	}

  .aam-how-work__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-how-work__heading h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }
  .aam-work-card-group__number {
      font-size: 1.25rem;
  }

  .aam-work-card-group {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    flex-basis: calc(100vw - 40px);
    gap: 16px;
  }

  .aam-work-card-group__number,
  .aam-work-card-group__copy {
    grid-column: auto;
  }

  .aam-work-card {
    border-radius: 18px;
  }

  .aam-work-card__image {
	/*     height: min(58vw, 250px); */
	  height:auto
    border-radius: 14px;
  }

  .aam-work-card h3 {
    font-size: 18px;
  }

  .aam-build-card__body > p {
      padding-left: 20px;
      font-size: 14px;
      line-height: 20px;
  }

  .aam-build__pin {
    padding: 80px 16px;
  }

  .aam-build__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-build__heading h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-build-card__heading h3 {
    font-size: 17px;
    line-height: 22px;
  }

  .aam-build-card__icon {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 16px;
  }
  .aam-case-study__header, .aam-how-work__heading, .aam-how-work__track{
    padding: 0 16px;
  }
	
	.aam-how-work__track {
		animation-duration: 15s;
	}
	
  .aam-case-study {
    padding: 20px 0px 76px 0px;
	  margin-top:0px;
  }

  .aam-case-study__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-case-study__heading-group h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .aam-case-study__cta {
    height: 46px;
    padding: 0 20px;
  }

	/*   .aam-case-card {
		gap: 14px;
	  } */

  .aam-case-card__media {
    border-radius: 18px;
  }

  .aam-case-card__media figcaption {
    height: 56px;
    font-size: 18px;
  }

  .aam-case-card__content h3 {
    font-size: 17px;
  }

  .aam-case-card__content p {
    font-size: 14px;
    line-height: 22px;
  }

  .aam-services__pin {
    padding: 76px 20px 20px 20px;
  }

  .aam-services__eyebrow {
    gap: 8px;
  }

  .aam-services__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
    white-space: normal;
    text-align: center;
  }

	/*   .aam-services__headline {
		margin-top: 58px;
	  } */

  .aam-services__headline h2 {
    font-size: 26px;
    line-height: 1.18;
    text-align: center;
	 max-width: 450px;
  }

  .aam-services__cards {
    gap: 18px;
    margin-top: 30px;
  }

  .aam-awards {
    min-height: 650px;
    padding: 76px 0 76px;
  }

  .aam-awards::before {
    background-size: 42vw 100%;
  }

  .aam-awards__inner {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .aam-awards__eyebrow {
    gap: 8px;
    margin-bottom: 20px;
  }

  .aam-awards__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;
  }

  .aam-awards__header h2 {
    font-size: 1.625rem;
        line-height: 1.18;
        letter-spacing: 0.02rem;
  }

  .aam-awards__marquee {
    margin-top: 24px;
    padding-top: 14px;
    padding-bottom: 26px;
  }

  .aam-awards__track {
/*     margin-left: 20px; */
    animation-duration: 50s;
  }

  .aam-awards__group {
    gap: 14px;
    padding-right: 14px;
  }

  .aam-award-card {
    width: 168px;
    height: 272px;
    flex-basis: 168px;
    border-radius: 18px;
    padding: 15px;
  }

  .aam-award-card__top p {
    font-size: 32px;
  }

  .aam-award-card__top img {
    width: 58px;
    height: 74px;
    flex-basis: 58px;
  }

  .aam-award-card__copy {
    gap: 5px;
  }

  .aam-award-card__copy h3 {
    font-size: 15px;
    line-height: 1.12;
  }

  .aam-award-card__copy p {
    font-size: 13px;
    line-height: 1.2;
  }

  .aam-service-card,
  .aam-service-card--growth {
    min-height: 430px;
    border-radius: 20px;

  }

  .aam-service-card__top,
  .aam-service-card--growth .aam-service-card__top {
    gap: 24px;
  }

  .aam-service-card__price,
  .aam-service-card--growth .aam-service-card__price {
    font-size: clamp(32px, 10vw, 36px);
  }

  .aam-service-card__price span,
  .aam-service-card--growth .aam-service-card__price span {
    font-size: 16px;
  }

  .aam-service-card__tag span,
  .aam-service-card--growth .aam-service-card__tag span {
    height: 44px;
    font-size: 16px;
  }

  .aam-service-card__button,
  .aam-service-card--growth .aam-service-card__button {
    height: 46px;
    font-size: 14px;
  }
	.aam-footer-section__bg{
		object-fit:fill;
	}
  .aam-testimonials {
    padding: 76px 16px 76px;
  }

  .aam-testimonials__eyebrow p {
    font-size: 13px;
    letter-spacing: 4.6px;  
  }

  .aam-testimonials__header h2,
  .aam-footer__cta-block h2 {
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  } 
	.aam-footer__cta-block h2{
		margin:0 0 12px;
	}
  .aam-testimonial-card {
    gap: 24px;
    padding: 16px;
    border-radius: 20px 20px 20px 0;
  }

  .aam-testimonial-card__quote {
    font-size: 15px;
    line-height: 22px;
  }

  .aam-testimonial-card__avatar {
    width: 48px;
    height: 48px;
  }

  .aam-testimonial-video {
    min-height: 250px;
    padding: 16px;
    border-radius: 16px;
	width:100%;
  }
	
  .aam-testimonials__side, .aam-testimonials__wide, .aam-testimonials__grid {
	  gap:18px;
  }
	
  .aam-testimonial-video__frame {
    height: 202px;
    border-radius: 15px;
  }

  .aam-footer-logos {
    display: flex;
    padding: 0 20px 42px;
  }

  .aam-footer-logos__track {
    gap: 10px;
/*     animation-duration: 20s; */
  }

  .aam-footer-logos__track img {
    width: 9.25rem;
    flex-basis: 9.25rem;
    height: 64px;
  }

  .aam-footer {
    padding: 0 16px;
  }

  .aam-footer__cta-block p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 21px;
  }

  .aam-footer__button {
    width: 100%;
	  height:48px;
	  font-size:14px;
	  
  }

  .aam-footer__field {
    height: 48px;
  }

  .aam-footer__logo {
    max-height: 54px;
    margin-bottom: 24px;
  }
  .aam-footer__field-wrap .wpcf7-form {
    padding: 0 14px 0 12px;
  }

}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================================
   16. CONTACT PAGE  (body.aam-contact-body)
   ========================================================================= */
body.aam-contact-body {
  --aam-bg: #12081c;
  --aam-white: #ffffff;
  --aam-red: #e31e26;
  --aam-hot-red: #f51735;
  --aam-muted: #777b88;
  --aam-copy: rgba(255, 255, 255, 0.78);
  --aam-border: rgba(245, 23, 53, 0.75);
  --aam-gradient: linear-gradient(133deg, #f51735 9.44%, rgba(234, 21, 89, 0.86) 92.36%);
  --aam-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aam-header-pad: 40px;
  --aam-page-pad: 70px;
}

body.aam-contact-body * { box-sizing: border-box; }

html:has(body.aam-contact-body) { scroll-behavior: smooth; }

body.aam-contact-body {
  margin: 0;
  overflow-x: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
  font-family: "Instrument Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* body.aam-contact-body a { 
	color: inherit; text-decoration: none; 
} */

body.aam-contact-body img, body.aam-contact-body video { display: block; max-width: 100%; }

body.aam-contact-body button, body.aam-contact-body input, body.aam-contact-body textarea { font: inherit; }

/* body.aam-contact-body .aam-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px var(--aam-header-pad);
  pointer-events: none;
}

body.aam-contact-body .aam-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  width: 100%;
  height: 60px;
}

body.aam-contact-body .aam-header__logo, body.aam-contact-body .aam-header__cta, body.aam-contact-body .aam-header__nav { pointer-events: auto; }

body.aam-contact-body .aam-header__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 5px;
}

body.aam-contact-body .aam-header__logo img { width: 90px; height: auto; } */

/* body.aam-contact-body .aam-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 13px 0;
  transform-origin: center top;
  transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease);
  will-change: transform, opacity;
} */

/* body.aam-contact-body .aam-header__nav.is-hidden {
  opacity: 0;
  transform: translateY(-22px) scale(0.94);
  pointer-events: none;
} */

/* body.aam-contact-body .aam-header__nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--aam-copy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  transition: color 0.45s var(--aam-ease);
} */

/* body.aam-contact-body .aam-header__nav a::after {
  width: 21px;
  height: 2px;
  background: var(--aam-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.45s var(--aam-ease), transform 0.45s var(--aam-ease);
} */
/* 
body.aam-contact-body .aam-header__nav a:hover, body.aam-contact-body .aam-header__nav a.is-active { color: var(--aam-hot-red); }

body.aam-contact-body .aam-header__nav a:hover::after, body.aam-contact-body .aam-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
} */

/* body.aam-contact-body .aam-button::before, body.aam-contact-body .aam-socials__link::before {
    position: absolute;
    left: -22px;
    bottom: -18px;
    width: 53px;
    height: 49px;
    background: radial-gradient(circle, rgba(245, 23, 53, 0.48), transparent 68%);
    content: "";
    filter: blur(9px);
    transform: rotate(36deg);
}

body.aam-contact-body .aam-header__phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--aam-hot-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.aam-contact-body .aam-menu-toggle, body.aam-contact-body .aam-mobile-menu { display: none; } */
.aam-footer__field-wrap .wpcf7-form{
	position:relative;
	border:none !important;
}
.aam-footer__field-wrap .wpcf7-form:before {
	content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none !important;
}
body.aam-contact-body .aam-contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--aam-bg);
}

body.aam-contact-body .aam-contact-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1580px;
  object-fit: cover;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: 100%;
  max-width: 1440px;
  min-width: auto;
  margin: 0 auto;
  padding: 130px var(--aam-page-pad) 100px;
}

body.aam-contact-body .aam-contact-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

body.aam-contact-body .aam-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--aam-red);
  text-transform: uppercase;
  margin-bottom: 0px;
/* 	margin-top:10px; */
}

body.aam-contact-body .aam-eyebrow span {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

body.aam-contact-body .aam-eyebrow p {
  margin: 0;
  color: var(--aam-red);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6.4px;
}

body.aam-contact-body .aam-contact-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--aam-white);
  font-size: 50px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.42px;
}

body.aam-contact-body .aam-contact-hero h1 span { color: var(--aam-hot-red); }

body.aam-contact-body .aam-contact-hero p {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  font-weight:500;
	letter-spacing:0.4px;
}

body.aam-contact-body .aam-eyebrow p{
  font-size: 15px;
  line-height: 22px;
  font-weight:500;
	letter-spacing:10px;
}
/* .aam-eyebrow p {
    letter-spacing: 10px;
    width: auto;
    max-width: 1080px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
} */
.aam-client-hero-content .aam-eyebrow p{
  color: #E31E26;
  font-weight: 500;
  font-size: 17px;
}

header.aam-about-team-v2__heading .aam-eyebrow p,
header.aam-about-testimonials__header .aam-eyebrow p  {
    margin: 0;
    color: var(--aam-red);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 7px;
    text-transform: uppercase;
}
body.aam-contact-body .aam-contact-form-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  gap: 70px;
  align-items: start;
}

body.aam-contact-body .aam-contact-form-section__glow {
  position: absolute;
  z-index: -1;
  left: -70px;
  top: -170px;
  width: 1049px;
  height: 831px;
  object-fit: cover;
  opacity: 0.82;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

body.aam-contact-body .aam-contact-copy h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-copy h2 span { color: var(--aam-muted); }

body.aam-contact-body .aam-contact-copy__note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-copy__note img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

body.aam-contact-body .aam-contact-ghost {
  margin: 54px 0 0;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(82px, 10vw, 150px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-contact-body .aam-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 580px;
}

body.aam-contact-body .aam-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  /* margin-bottom: 15px; */
}

body.aam-contact-body .aam-field {
  width: 100%;
  height: 46px;
	position:relative;
/*   border: 1px solid var(--aam-border); */
  border-radius: 12px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--aam-white);
  outline: none;
  backdrop-filter: blur(10px);
  margin-top: 15px;
	border:none;
}

body.aam-contact-body .aam-field:before{
	content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

body.aam-contact-body .aam-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

body.aam-contact-body textarea.aam-field {
  height: 140px;
  resize: vertical;
  padding-top: 16px;
}

body.aam-contact-body .aam-contact-submit {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
/*   background: linear-gradient(148deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%); */
  background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 15px;
}

body.aam-contact-body .aam-contact-submit:hover{
	background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
}

body.aam-contact-body .aam-contact-special {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 62px 40px;
  min-height: 340px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 30px;
}

body.aam-contact-body .aam-contact-special__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-contact-body .aam-contact-special__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  gap: 48px;
}

body.aam-contact-body .aam-contact-special__logo {
  width: 90px;
  height: auto;
}

body.aam-contact-body .aam-contact-special h2 {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-special h2 span { color: var(--aam-muted); }

body.aam-contact-body .aam-contact-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

body.aam-contact-body .aam-contact-box h3 {
  margin: 0 0 4px;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-contact-body .aam-contact-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
}

body.aam-contact-body .aam-contact-tabs {
  display: flex;
  gap: 20px;
  align-items: center;
}

body.aam-contact-body .aam-contact-tabs span {
  position: relative;
  display: inline-flex;
  height: 40px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

body.aam-contact-body .aam-contact-tabs span:first-child {
  color: var(--aam-hot-red);
}

body.aam-contact-body .aam-contact-tabs span:first-child::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background: var(--aam-gradient);
  content: "";
}
article.aam-service-card.aam-service-card--embedded {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 13.1%, rgba(255, 255, 255, 0.04) 88.48%);
    box-shadow: 0 2px 20px 0 rgba(18, 8, 28, 0.10);
    backdrop-filter: blur(7.5px);
}
article.aam-service-card.aam-service-card--signal {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 13.1%, rgba(255, 255, 255, 0.04) 88.48%);
    box-shadow: 0 2px 20px 0 rgba(18, 8, 28, 0.10);
    backdrop-filter: blur(7.5px);
}
/* body.aam-contact-body .aam-contact-email {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--aam-border);
  border-radius: 12px;
  padding: 0 14px 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

body.aam-contact-body .aam-contact-email img {
  width: 24px;
  height: 24px;
} */

.aam-inline-form__options .wpcf7-list-item {
  margin: 0 12px 0 0;
}

.aam-inline-form__options .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.aam-inline-form__options input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.aam-inline-form__options input[type="checkbox"]:checked {
  background: #f51735;
  border: 2px;
}

.aam-inline-form__options input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.aam-inline-form__options .wpcf7-list-item-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.aam-inline-form__options input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
  color: #f51735;
  font-weight: 500;
}

body.aam-contact-body .aam-contact-email {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
/*   border: 1px solid var(--aam-border); */
  border-radius: 12px;
  padding: 0 14px 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
	margin-top: 15px;
	position:relative;
}

body.aam-contact-body .aam-contact-email:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
	pointer-events: none !important;
}

body.aam-contact-body .aam-contact-email img {
  width: 24px;
  height: 24px;
}

body.aam-contact-body .aam-contact-email .wpcf7-form-control-wrap {
  flex: 1 1 auto;
}

body.aam-contact-body .aam-contact-email input[type="email"] {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  padding: 0;
  outline: none;
}

body.aam-contact-body .aam-contact-email input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.aam-contact-body .aam-contact-email input[type="submit"] {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: none;
  background: url('assets/ic_send.svg') center / contain no-repeat;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  padding: 0;
}

@media (min-width:1000px) and (max-width:1280px){
	body.aam-contact-body .aam-contact-hero {
		gap:16px;
	}
	body.aam-contact-body .aam-eyebrow p {
    	font-size: 14px;
		max-width: 100%;
	}
	body.aam-contact-body .aam-contact-hero h1{
		font-size:42px;
		line-height: 51px;
		max-width:65%;
	}
	body.aam-contact-body .aam-contact-hero p {
		font-size: 15px;
		line-height: 23px;
	}
	body.aam-contact-body .aam-contact-main{
		padding: 120px 60px 80px;
		gap: 40px;
	}
	body.aam-contact-body .aam-contact-copy {
    	gap: 20px;
	}
/* 	body.aam-contact-body .aam-contact-main {
		gap: 50px;
		padding-top: 120px;
	} */
	body.aam-contact-body .aam-contact-form{
		width:90%;
	}
	body.aam-contact-body .aam-contact-copy h2 {
    	font-size: clamp(32px, 6vw, 32px);
		line-height: 35px;
	}
	body.aam-contact-body .aam-contact-form-section {
		gap:40px;
		grid-template-columns: minmax(0, 1fr) minmax(500px, 510px);
	}
	body.aam-contact-body .aam-contact-special h2 {
		font-size: clamp(32px, 6vw, 32px);
		line-height: 35px;
	}
	body.aam-contact-body .aam-contact-copy__note {
		font-size:16px;
	}
	body.aam-contact-body .aam-contact-box {
		max-width: 580px;
	}
	body.aam-contact-body .aam-contact-special__content{
		gap:30px;
	}
}


/* =========================================================================
   17. WORKS PAGE  (body.aam-works-body)
   ========================================================================= */
body.aam-works-body .aam-works-page {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-works-body .aam-works-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-works-body .aam-works-hero {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1440px;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 auto;
  padding: 130px var(--aam-page-pad) 50px;
}

body.aam-works-body .aam-works-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--aam-white);
     font-size: 50px;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: 0.42px;
}
body.aam-works-body .aam-eyebrow p{
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 10px;
}
body.aam-works-body .aam-works-hero h1 span {
  color: transparent;
  background: linear-gradient(130deg, #f51735 9.443%, rgba(234, 21, 89, 0.7) 92.365%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-works-body .aam-works-hero > p {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.4px;
}

body.aam-works-body .aam-works-cases {
  padding-bottom: 100px;
}

body.aam-works-body .aam-works-cases .aam-case-study__grid {
  margin-top: 0;
}

body.aam-works-body .aam-works-cases .aam-case-card--wide {
  width: min(100%, 920px);
}


/* =========================================================================
   18. CASE DETAIL PAGE  (body.aam-case-detail-body)
   ========================================================================= */
body.aam-case-detail-body .aam-case-detail-page {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-case-detail-body .aam-case-detail-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-case-detail-body .aam-case-detail-video .custom-playtext{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:auto;
    height: 50px;
    color: #fff;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-transform:uppercase;
    padding:20px;
    z-index: 9999;
    font-weight: 500;
    border-radius: 12px;
    text-align:center;
    background: linear-gradient(98deg, rgba(245, 23, 53, 0.90) 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    white-space: nowrap;
	cursor: pointer;
}

body.aam-case-detail-body .aam-case-detail-video .custom-playtext img{
    margin-left:8px;
	width:24px;
}


body.aam-case-detail-body .aam-case-detail-video:not(.is-playing):hover .custom-playtext {
    display: flex;
}

body.aam-case-detail-body .aam-case-detail-video.is-playing .custom-playtext {
    display: none !important;
}

body.aam-case-detail-body .aam-case-detail-hero,
body.aam-case-detail-body .aam-case-detail-metrics,
body.aam-case-detail-body .aam-case-detail-video,
body.aam-case-detail-body .aam-case-detail-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--aam-page-pad);
}

body.aam-case-detail-body .aam-case-detail-hero {
  display: flex;
/*   min-height: 500px; */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 120px;
  padding-bottom: 60px;
}

body.aam-case-detail-body .aam-case-detail-back {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

body.aam-case-detail-body .aam-case-detail-back:hover {
  opacity: 1;
/*   transform: translateX(-3px); */
}

body.aam-case-detail-body .aam-case-detail-back img {
  width: 32px;
  height: 32px;
}

body.aam-case-detail-body .aam-case-detail-logo {
  display: flex;
  height: 52px;
  align-items: center;
}

body.aam-case-detail-body .aam-case-detail-logo img {
  display: block;
  max-width: 200px;
  max-height: 52px;
  object-fit: contain;
}

body.aam-case-detail-body .aam-case-detail-hero h1 {
  max-width: 93%;
  margin: 0;
  color: var(--aam-white);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: 0.5px;
}

/* body.aam-case-detail-body .aam-case-detail-hero p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}
 */
	body.aam-case-detail-body .aam-case-detail-hero p,
	body.aam-case-detail-body .aam-case-detail-block__content p {
		margin: 0;
		color: rgba(255, 255, 255, 0.7);
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0.3px;
	    max-width:93%;
	}

	body.aam-case-detail-body .aam-case-detail-hero h2,
	body.aam-case-detail-body .aam-case-detail-hero h3,
	body.aam-case-detail-body .aam-case-detail-hero h4,
	body.aam-case-detail-body .aam-case-detail-block__content h2,
	body.aam-case-detail-body .aam-case-detail-block__content h3,
	body.aam-case-detail-body .aam-case-detail-block__content h4 {
		margin: 0;
		color: var(--aam-white);
		font-weight: 500;
		line-height: 1.3;
	}

    .aam-footer__field-wrap {
		padding-bottom: 14px;
		position: relative;
	}

/* Custom Footer Form Success Message Styling */
.aam-footer-success,
.aam-footer__field-wrap .wpcf7-response-output,
.aam-footer__follow .wpcf7-response-output {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    color: #21A316 !important;
    white-space: nowrap !important;
    z-index: 10 !important;
}

.aam-footer-success img,
.aam-footer-success .aam-success-icon,
.aam-footer__field-wrap .wpcf7-response-output img,
.aam-footer__follow .wpcf7-response-output img,
.aam-footer__field-wrap .wpcf7-response-output .aam-success-icon,
.aam-footer__follow .wpcf7-response-output .aam-success-icon {
    width: 16.85px !important;
    height: 16.85px !important;
    min-width: 16.85px !important;
    min-height: 16.85px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
    display: inline-block !important;
}


.aam-footer-success span,
.aam-footer-success .aam-success-text,
.aam-footer__field-wrap .wpcf7-response-output span,
.aam-footer__follow .wpcf7-response-output span,
.aam-footer__field-wrap .wpcf7-response-output .aam-success-text,
.aam-footer__follow .wpcf7-response-output .aam-success-text {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #21A316 !important;
    line-height: 18px !important;
}
	.aam-footer__follow {
		gap:12px;
	}
	.aam-footer__menu h3, .aam-footer__follow h3 {
		margin:0;
		font-size: 16px;
		line-height:23px;
	}

	body.aam-case-detail-body .aam-case-detail-hero h2,
	body.aam-case-detail-body .aam-case-detail-block__content h2 {
		font-size: 22px;
	}

	body.aam-case-detail-body .aam-case-detail-hero h3,
	body.aam-case-detail-body .aam-case-detail-block__content h3 {
		font-size: 19px;
	}

	body.aam-case-detail-body .aam-case-detail-hero h4,
	body.aam-case-detail-body .aam-case-detail-block__content h4 {
		font-size: 17px;
	}
	
	body.aam-case-detail-body .aam-case-detail-hero h5,
	body.aam-case-detail-body .aam-case-detail-hero h6,
	body.aam-case-detail-body .aam-case-detail-block__content h5,
	body.aam-case-detail-body .aam-case-detail-block__content h6 {
		margin: 0;
		color: var(--aam-white);
		font-weight: 500;
		line-height: 1.3;
	}

	body.aam-case-detail-body .aam-case-detail-hero h5,
	body.aam-case-detail-body .aam-case-detail-block__content h5 {
		font-size: 16px;
	}

	body.aam-case-detail-body .aam-case-detail-hero h6,
	body.aam-case-detail-body .aam-case-detail-block__content h6 {
		font-size: 15px;
		letter-spacing: 0.5px;
	}

	body.aam-case-detail-body .aam-case-detail-hero pre,
	body.aam-case-detail-body .aam-case-detail-block__content pre {
		margin: 0;
		padding: 16px 20px;
		border-radius: 10px;
		color: rgba(255, 255, 255, 0.8);
		font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
		font-size: 14px;
		line-height: 22px;
		white-space: pre-wrap;
		overflow-x: auto;
	}

	body.aam-case-detail-body .aam-case-detail-hero strong,
	body.aam-case-detail-body .aam-case-detail-hero b,
	body.aam-case-detail-body .aam-case-detail-block__content strong,
	body.aam-case-detail-body .aam-case-detail-block__content b {
		color: var(--aam-white);
		font-weight: 600;
	}

	body.aam-case-detail-body .aam-case-detail-hero em,
	body.aam-case-detail-body .aam-case-detail-hero i,
	body.aam-case-detail-body .aam-case-detail-block__content em,
	body.aam-case-detail-body .aam-case-detail-block__content i {
		font-style: italic;
	}

	body.aam-case-detail-body .aam-case-detail-hero a,
	body.aam-case-detail-body .aam-case-detail-block__content a {
		color: var(--aam-hot-red);
		text-decoration: underline;
		text-decoration-color: rgba(245, 23, 53, 0.5);
		transition: color 0.3s ease;
	}

	body.aam-case-detail-body .aam-case-detail-hero a:hover,
	body.aam-case-detail-body .aam-case-detail-block__content a:hover {
		color: var(--aam-white);
	}

	body.aam-case-detail-body .aam-case-detail-hero blockquote,
	body.aam-case-detail-body .aam-case-detail-block__content blockquote {
		margin: 0;
		padding-left: 20px;
		border-left: 3px solid var(--aam-hot-red);
		color: rgba(255, 255, 255, 0.8);
		font-style: italic;
	}

body.aam-case-detail-body .aam-case-detail-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.aam-case-detail-body .aam-case-detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 70px;
  padding-top: 0;
}

body.aam-case-detail-body .aam-case-detail-metric {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.aam-case-detail-body .aam-case-detail-metric strong {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  color: var(--aam-white);
  font-size: clamp(44px, 4.17vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  padding-bottom: 8px;
}

body.aam-case-detail-body .aam-case-detail-metric .aam-stat__suffix {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(32px, 3.47vw, 32px);
  font-weight: 500;
  line-height: 1;
}

body.aam-case-detail-body .aam-case-detail-metric > span:not(.aam-stat__suffix) {
  margin: 0;
  margin-top: 2px;
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.36px;
}

body.aam-case-detail-body .aam-case-detail-metric em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
}

body.aam-case-detail-body .aam-case-detail-video {
  max-width: none;
  padding-inline: 0;
}

body.aam-case-detail-body .aam-case-detail-video video {
    display: block;
    width: 100%;
    height: min(780px, 52vw);
    min-height: auto;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 16 / 9;
}

body.aam-case-detail-body .aam-case-detail-content {
  display: grid;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 90px;
}

body.aam-case-detail-body .aam-case-detail-build-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: stretch;
}

body.aam-case-detail-body .aam-case-detail-blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

body.aam-case-detail-body .aam-case-detail-block {
  display: grid;
  gap: 24px;
}

body.aam-case-detail-body .aam-case-detail-block__content {
  display: grid;
  gap: 16px;
}

body.aam-case-detail-body .aam-case-detail-side {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

body.aam-case-detail-body .aam-case-detail-testimonial {
  align-self: start;
  min-height: 280px;
  padding: 24px;
  width:100%;
}

body.aam-case-detail-body .aam-case-detail-testimonial .aam-testimonial-card__quote {
  font-size: 19px;
  line-height: 28px;
}


body.aam-case-detail-body .aam-case-detail-youtube {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f51735 0%, #9c1e53 100%);
}

body.aam-case-detail-body .aam-case-detail-youtube__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.aam-case-detail-body .aam-case-detail-youtube__heading img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

body.aam-case-detail-body .aam-case-detail-youtube__heading h3 {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

body.aam-case-detail-body .aam-case-detail-youtube__button {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--aam-white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}

body.aam-case-detail-body .aam-case-detail-youtube__button:hover {
  background: rgba(255, 255, 255, 0.28);
}

body.aam-case-detail-body .aam-case-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e31e26;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 6.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

body.aam-case-detail-body .aam-case-detail-eyebrow::before {
  content: "/";
  color: #f51735;
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
}

body.aam-case-detail-body .aam-case-detail-list,
body.aam-case-detail-body .aam-case-detail-hero ol,
body.aam-case-detail-body .aam-case-detail-block ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0 0 0 34px;
}

body.aam-case-detail-body .aam-case-detail-list,
body.aam-case-detail-body .aam-case-detail-hero ul,
body.aam-case-detail-body .aam-case-detail-block ul {
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0 0 0 34px;
	list-style: none;
}

body.aam-case-detail-body .aam-case-detail-list li,
body.aam-case-detail-body .aam-case-detail-hero li,
body.aam-case-detail-body .aam-case-detail-block li {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-case-detail-body .aam-case-detail-list ul li::before,
body.aam-case-detail-body .aam-case-detail-hero ul li::before,
body.aam-case-detail-body .aam-case-detail-block ul li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -36px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  /*border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1;*/
  background-image: url(assets/ic_arwpoint.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

body.aam-case-detail-body .aam-case-detail-copy {
  max-width: 1180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.3px;
  max-width:95%;

}

body.aam-case-detail-body .aam-case-detail-table {
  width: min(1000px, 100%);
  margin-left: 28px;
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgb(36, 29, 45);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0 auto;
  padding: 4px;
}

body.aam-case-detail-table table tr{
  display: flex;
} 

body.aam-case-detail-body .aam-case-detail-table table {
  width: 100%;
  border-collapse: collapse;
}

body.aam-case-detail-body .aam-case-detail-table th,
body.aam-case-detail-body .aam-case-detail-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #332b3e;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-align: left;
}

body.aam-case-detail-body .aam-case-detail-table th {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  border-radius: 14px 14px 0px 0px
}

body.aam-case-detail-body .aam-case-detail-table th:last-child,
body.aam-case-detail-body .aam-case-detail-table td:last-child {
  text-align: center;
}

body.aam-case-detail-body .aam-case-detail-table tr:last-child td {
  border-bottom: 0;
}




/* =========================================================================
   19. RESPONSIVE — WORKS / CASE DETAIL PAGES
   ========================================================================= */

/* ===== WEB SMALL ===== */
@media (min-width: 1000px) and (max-width: 1280px) {
  body.aam-works-body .aam-works-hero {
	padding-right:60px;
	padding-left:60px;
	gap: 16px;
	min-height: 350px;
	  padding-top: 120px;
  }

  body.aam-works-body .aam-works-hero h1 {
    font-size: 42px;
    line-height: 51px;
    letter-spacing: 0.42px;
	  max-width:75%;
  }
  body.aam-works-body .aam-works-hero > p{
    max-width: 85%;
    gap: 12px;
    font-size: 15px;
    line-height: 23px;
  }
  body.aam-works-body .aam-case-study{
	margin-top:0px;
  }
  body.aam-works-body .aam-works-cases {
   padding-bottom: 80px;
  }
  body.aam-case-detail-body .aam-case-detail-hero {
     padding-right: 60px;
     padding-left: 60px;˙
	 padding-top: 110px;
	  gap:14px;
	 padding-bottom: 50px;
  }
	body.aam-case-detail-body .aam-case-detail-hero h1{
		font-size:28px;
	}
	body.aam-works-body .aam-eyebrow p {
		font-size:14px;
	}
	body.aam-contact-body .aam-eyebrow span {
		font-size:22px;
	}

  body.aam-case-detail-body .aam-case-detail-list, body.aam-case-detail-body .aam-case-detail-hero ul, body.aam-case-detail-body .aam-case-detail-block ul {
	 gap:14px;
  }
  body.aam-case-detail-body .aam-case-detail-build-row {
     grid-template-columns: minmax(0, 1fr) minmax(320px, 340px);
	 gap: 28px;
  }
  body.aam-case-detail-body .aam-case-detail-eyebrow{
  	font-size:14px;
	align-items: baseline;
  }
  body.aam-case-detail-body .aam-case-detail-copy{
	font-size:16px;
	line-height:24px;
  }

  body.aam-case-detail-body .aam-case-detail-eyebrow::before{
  	font-size:18px;
  }
  body.aam-case-detail-body .aam-case-detail-hero li,
  body.aam-case-detail-body .aam-case-detail-block li {
   font-size: 16px;
   line-height: 24px;
  }
  body.aam-case-detail-body .aam-case-detail-block {
      gap: 16px;
  }
  body.aam-case-detail-body .aam-case-detail-table {
     width: min(910px, 100%);
  }
  body.aam-case-detail-body .aam-case-detail-content {
     padding: 80px 60px 80px 60px;
  }
  body.aam-case-detail-body .aam-case-detail-metrics {
     padding-bottom: 60px;
  }
  body.aam-case-detail-body .aam-case-detail-testimonial {
     min-height: 260px;
     padding: 20px;
  }
  body.aam-case-detail-body .aam-case-detail-youtube{
	padding: 20px;  
  }
  .aam-case-card__content{
	margin-top: 18px;
	gap: 4px;
  }
}

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {
 
  body.aam-works-body .aam-works-hero h1 {
    font-size: clamp(42px, 5vw, 52px);
    line-height: 1.1;
  }

  body.aam-works-body .aam-works-hero {
    min-height: 320px;
    padding: 110px var(--aam-page-pad) 40px;
	gap: 14px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);

  }
  body.aam-contact-body .aam-eyebrow span {
    font-size: 20px;
  }
  body.aam-works-body .aam-works-hero h1 {
    max-width: 620px;
    font-size: 40px;
     line-height: 46px;
     letter-spacing: 0.1px;
  }
  body.aam-works-body .aam-works-hero > p{
  	font-size:14px;
	  line-height:22px;
	  max-width:90%;
  }

  body.aam-works-body .aam-eyebrow p {
	  font-size:13px;
  }
  body.aam-works-body .aam-works-cases {
    padding-bottom: 80px;
	  padding-top: 0px;
  }

  body.aam-case-detail-body .aam-case-detail-hero {
    padding-top: 110px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
	gap:12px;
	  padding-bottom: 40px;
  }
	body.aam-case-detail-body .aam-case-detail-video video{
		height:auto;
	}
  body.aam-case-detail-body .aam-case-detail-copy {
	  font-size:16px;
	  max-width:auto;
  }

  body.aam-case-detail-body .aam-case-detail-logo img {
    max-height: 38px;
  }

  body.aam-case-detail-body .aam-case-detail-hero h1 {
	 font-size:28px;
  }
  body.aam-case-detail-body .aam-case-detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
	padding-bottom: 50px;
  }

  body.aam-case-detail-body .aam-case-detail-build-row {
    grid-template-columns: 1fr;
  }
	
  body.aam-case-detail-body .aam-case-detail-side {
  	grid-column: auto;
	flex-direction: row;
	gap:22px;
  }
	body.aam-case-detail-body .aam-case-detail-blocks,
	body.aam-case-detail-body .aam-case-detail-content{
		gap:50px;
	}
  body.aam-case-detail-body .aam-case-detail-hero p{
  	font-size:14px;
  	line-height:22px;
  }
  body.aam-case-detail-body .aam-case-detail-hero li{
	font-size: 16px;
    line-height: 23px;
  }
  body.aam-case-detail-body .aam-case-detail-block {
    gap: 18px;
 }

  body.aam-case-detail-body .aam-case-detail-content {
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 82px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);

  }
  body.aam-case-detail-body .aam-case-detail-eyebrow {
  	font-size:13px;
  }
  body.aam-case-detail-body .aam-case-detail-eyebrow::before{
  	font-size:20px;
  }
  body.aam-case-detail-body .aam-case-detail-youtube, body.aam-case-detail-body .aam-case-detail-testimonial {
	  width:100%;
  }
	body.aam-case-detail-body .aam-case-detail-list li, body.aam-case-detail-body .aam-case-detail-hero li, body.aam-case-detail-body .aam-case-detail-block li{
		font-size:16px;
	}
	body.aam-case-detail-body .aam-case-detail-list ul li::before, body.aam-case-detail-body .aam-case-detail-hero ul li::before, body.aam-case-detail-body .aam-case-detail-block ul li::before{
		height:24px;
		width:24px;
		left: -37px;
	}
	body.aam-case-detail-body .aam-case-detail-list, body.aam-case-detail-body .aam-case-detail-hero ul, body.aam-case-detail-body .aam-case-detail-block ul{
		gap:14px;
	}
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  body.aam-works-body .aam-works-hero {
    padding-top: 150px;
  }

  body.aam-works-body .aam-works-hero h1 {
    font-size: clamp(42px, 5vw, 52px);
    line-height: 1.1;
  }
	body.aam-works-body .aam-eyebrow p {
		font-size: 13px;
        letter-spacing: 6px;
	}
  body.aam-works-body .aam-works-hero {
    min-height: 430px;
    padding: 128px var(--aam-page-pad) 58px;
  }

  body.aam-works-body .aam-works-hero h1 {
    max-width: 640px;
    font-size: clamp(34px, 7vw, 48px);
  }

  body.aam-works-body .aam-works-cases {
    padding-bottom: 90px;
  }

  body.aam-works-body .aam-works-hero {
    min-height: 350px;
    gap: 12px;
    padding: 110px 16px 40px;
  }

  body.aam-works-body .aam-works-hero h1 {
     font-size: 36px;
      line-height: 39px;
      letter-spacing: 0.1px;
  }
 body.aam-contact-body .aam-eyebrow span {
    font-size: 15px;
    margin-top: 2px;
 }
  body.aam-works-body .aam-works-hero > p {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-works-body .aam-works-cases {
    padding-bottom: 62px;
	  padding-top:0px;
  }

  body.aam-case-detail-body .aam-case-detail-hero {
/*     min-height: 430px; */
    padding-top: 110px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
	gap: 14px;
  }

  body.aam-case-detail-body .aam-case-detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  body.aam-case-detail-body .aam-case-detail-build-row {
    grid-template-columns: 1fr;
  }
	
	body.aam-case-detail-body .aam-case-detail-side {
		grid-column: auto;
	}

  body.aam-case-detail-body .aam-case-detail-content {
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 96px;
  }

  body.aam-case-detail-body .aam-case-detail-hero,
  body.aam-case-detail-body .aam-case-detail-metrics,
  body.aam-case-detail-body .aam-case-detail-content {
    padding-inline: 16px;
  }

  body.aam-case-detail-body .aam-case-detail-hero {
/*     min-height: 370; */
    padding-top: 100px;
    padding-bottom: 40px;
  }
	body.aam-case-detail-body .aam-case-detail-video video{
		height:auto;
	}

  body.aam-case-detail-body .aam-case-detail-logo {
    height: 44px;
  }

  body.aam-case-detail-body .aam-case-detail-logo img {
    max-width: 170px;
    max-height: 44px;
  }

  body.aam-case-detail-body .aam-case-detail-hero h1 {
    font-size: 24px;
    line-height: 1.22;
  }

  body.aam-case-detail-body .aam-case-detail-hero p {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-case-detail-body .aam-case-detail-metrics {
/*     grid-template-columns: 1fr; */
    gap: 26px;
    padding-bottom: 24px;
	  grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
	 row-gap: 8px;
     column-gap: 12px;
  }

  body.aam-case-detail-body .aam-case-detail-metric strong {
    font-size: 36px;
  }

  body.aam-case-detail-body .aam-case-detail-metric .aam-stat__suffix {
    font-size: 26px;
	  padding-bottom:4px;
  }

  body.aam-case-detail-body .aam-case-detail-metric > span:not(.aam-stat__suffix) {
    font-size: 16px;
    line-height: 23px;
  }

  body.aam-case-detail-body .aam-case-detail-metric em {
    font-size: 14px;
  }

  body.aam-case-detail-body .aam-case-detail-content {
    gap: 44px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
	body.aam-case-detail-body .aam-case-detail-list, body.aam-case-detail-body .aam-case-detail-hero ul, body.aam-case-detail-body .aam-case-detail-block ul {
    display: grid;
    gap: 6px;
	}
  body.aam-case-detail-body .aam-case-detail-eyebrow {
    font-size: 14px;
    letter-spacing: 4px;
  }
	body.aam-case-detail-body .aam-case-detail-eyebrow::before{
		font-size:14px;
	}

  body.aam-case-detail-body .aam-case-detail-list li,
  body.aam-case-detail-body .aam-case-detail-copy {
    font-size: 15px;
    line-height: 23px;
  }

  body.aam-case-detail-body .aam-case-detail-table {
    margin-left: 0;
    overflow-x: auto;
  }

  body.aam-case-detail-body .aam-case-detail-table table {
    min-width: 620px;
  }
  body.aam-case-detail-body .aam-case-detail-list li, body.aam-case-detail-body .aam-case-detail-hero li, body.aam-case-detail-body .aam-case-detail-block li {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
  }
  body.aam-case-detail-body .aam-case-detail-block {
  	gap: 12px;
  }
  body.aam-case-detail-body .aam-case-detail-list ul li::before, body.aam-case-detail-body .aam-case-detail-hero ul li::before, body.aam-case-detail-body .aam-case-detail-block ul li::before{
	  width:24px;
	  height:24px;
	}
	body.aam-case-detail-body .aam-case-detail-blocks {
		gap:40px;
	}
	body.aam-case-detail-body .aam-case-detail-table th, body.aam-case-detail-body .aam-case-detail-table td {
    	padding: 12px 16px;
	}
	body.aam-case-detail-body .aam-case-detail-youtube, body.aam-case-detail-body .aam-case-detail-testimonial {
		gap: 16px;
		border-radius: 20px;
		padding: 18px 18px;
	   min-height: auto;
	}
	body.aam-case-detail-body .aam-case-detail-testimonial .aam-testimonial-card__quote {
		font-size: 16px;
		line-height: 24px;
	}
	body.aam-case-detail-body .aam-case-detail-youtube__heading img {
		width:24px;
		height:24px;
	}
	body.aam-case-detail-body .aam-case-detail-youtube__heading h3 {
		font-size:18px;
	}

}


/* =========================================================================
   20. CONTACT PAGE FOOTER + RESPONSIVE
   ========================================================================= */

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {
  body.aam-contact-body {
    --aam-header-pad: 16px;
    --aam-page-pad: 24px;
  }

body.aam-contact-body .aam-header { padding: 14px 16px; }

body.aam-contact-body .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 56px;
  }

body.aam-contact-body .aam-header__nav { display: none; }

body.aam-contact-body .aam-header__logo img { width: 76px; }

body.aam-contact-body .aam-header__cta {
    grid-column: 3;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
  }

body.aam-contact-body .aam-header__cta span:last-child { display: none; }

body.aam-contact-body .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }

body.aam-contact-body .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
  }

body.aam-contact-body .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--aam-white);
    opacity: 0;
    transition: transform 0.55s var(--aam-ease), opacity 0.45s var(--aam-ease), background 0.45s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(1) { transform: translateY(-6px); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(2) { transform: translateY(0); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(3) { transform: translateY(6px); }

body.aam-contact-body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(45deg);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(-45deg);
  }

body.aam-contact-body .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

body.aam-contact-body .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }
	body.aam-contact-body .aam-contact-form__row{
		gap: 16px;
	}
	body.aam-contact-body .aam-field{
		margin-top:18px;
	}

body.aam-contact-body .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

body.aam-contact-body .aam-contact-main {
    gap: 42px;
    padding-top: 110px;
        padding-left: 42px;
        padding-right: 42px;
	        padding-bottom: 80px;
  }
body.aam-contact-body .aam-contact-hero {
	gap:16px;
}
	body.aam-contact-body .aam-eyebrow p{
		font-size:13px !important;
	}
	body.aam-contact-body .aam-contact-hero p {
		font-size: 14px;
		line-height: 22px;
	}
body.aam-contact-body .aam-contact-hero h1 {
    max-width: 620px;
    font-size: 40px;
    line-height: 42px;
  }

body.aam-contact-body .aam-contact-form-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
	

body.aam-contact-body .aam-contact-form {
    max-width: 95%;
  }

body.aam-contact-body .aam-contact-copy h2, body.aam-contact-body .aam-contact-special h2 {
    font-size: 30px;
    line-height: 38px;
	max-width: 75%;
  }
  body.aam-contact-body .aam-contact-copy {
    gap: 20px;
  }
  body.aam-contact-body .aam-contact-copy__note {
	  font-size:16px;
	  max-width: 90%;
  }
body.aam-contact-body .aam-contact-ghost {
    margin-top: 20px;
    font-size: clamp(64px, 20vw, 110px);
	display:none;
  }

body.aam-contact-body .aam-contact-special {
    padding: 34px 22px;
    border-radius: 20px;
  }

body.aam-contact-body .aam-contact-special__content {
    gap: 32px;
  }

body.aam-contact-body .aam-contact-box {
    padding: 18px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  body.aam-contact-body {
    --aam-header-pad: 16px;
    --aam-page-pad: 24px;
  }

body.aam-contact-body .aam-header { padding: 14px 16px; }

body.aam-contact-body .aam-header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 16px;
    height: 52px;
  }

body.aam-contact-body .aam-header__nav { display: none; }

body.aam-contact-body .aam-header__logo img { width: 76px; }

body.aam-contact-body .aam-header__cta {
    grid-column: 3;
    height: 44px;
    min-width: 44px;
    padding: 0 12px;
  }

body.aam-contact-body .aam-header__cta span:last-child { display: none; }

body.aam-contact-body .aam-header__phone svg {
    width: 20px;
    height: 20px;
  }
body.aam-contact-body .aam-contact-hero {
	gap:12px;
	}
body.aam-contact-body .aam-menu-toggle {
    position: relative;
    z-index: 92;
    grid-column: 4;
    justify-self: end;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
  }

body.aam-contact-body .aam-menu-toggle img {
    width: 26px;
    height: 26px;
    transition: opacity 0.45s var(--aam-ease), transform 0.55s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--aam-white);
    opacity: 0;
    transition: transform 0.55s var(--aam-ease), opacity 0.45s var(--aam-ease), background 0.45s var(--aam-ease);
  }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(1) { transform: translateY(-6px); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(2) { transform: translateY(0); }

body.aam-contact-body .aam-menu-toggle span:nth-of-type(3) { transform: translateY(6px); }

body.aam-contact-body.is-menu-open .aam-menu-toggle img {
    opacity: 0;
    transform: scale(0.82);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(1) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(45deg);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0);
  }

body.aam-contact-body.is-menu-open .aam-menu-toggle span:nth-of-type(3) {
    background: var(--aam-hot-red);
    opacity: 1;
    transform: rotate(-45deg);
  }

body.aam-contact-body .aam-mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: block;
    overflow: hidden;
    padding: 104px 24px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(245, 23, 53, 0.24), transparent 30%),
      radial-gradient(circle at 84% 7%, rgba(71, 52, 173, 0.28), transparent 28%),
      rgba(18, 8, 28, 0.96);
    clip-path: circle(0% at calc(100% - 45px) 36px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu {
    clip-path: circle(145% at calc(100% - 45px) 36px);
    opacity: 1;
    pointer-events: auto;
  }

body.aam-contact-body .aam-mobile-menu__nav {
    display: grid;
    gap: 8px;
  }

body.aam-contact-body .aam-mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--aam-white);
    font-size: clamp(38px, 11vw, 58px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    transform: translateY(28px);
    opacity: 0;
    transition: transform 0.7s var(--aam-ease), opacity 0.7s var(--aam-ease), color 0.45s var(--aam-ease);
  }

body.aam-contact-body.is-menu-open .aam-mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
  }

body.aam-contact-body .aam-contact-main {
    gap: 32px;
    padding-top: 118px;
  }

body.aam-contact-body .aam-contact-hero h1 {
    max-width: 340px;
    font-size: 38px;
    line-height: 42px;
  }
	body.aam-contact-body .aam-contact-copy{
		gap:20px;
	}

body.aam-contact-body .aam-contact-form-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

body.aam-contact-body .aam-contact-form {
    max-width: none;
  }

body.aam-contact-body .aam-contact-copy h2, body.aam-contact-body .aam-contact-special h2 {
    font-size: 30px;
    line-height: 38px;
  }

body.aam-contact-body .aam-contact-ghost {
    margin-top: 20px;
    font-size: clamp(64px, 20vw, 110px);
	display: none;
  }

body.aam-contact-body .aam-contact-special {
    padding: 24px 16px;
    border-radius: 20px;
  }

body.aam-contact-body .aam-contact-special__content {
    gap: 32px;
  }

body.aam-contact-body .aam-contact-box {
    padding: 18px;
  }

  body.aam-contact-body .aam-header__cta {
    border-radius: 10px;
    height: 2.625rem;
    min-width: 2.625rem;
    padding: 0 0.75rem;
  }

  body.aam-contact-body .aam-contact-main {
      padding-top: 110px;
	  padding-left:16px;
	  padding-right:16px;
	          padding-bottom: 60px;
    }

  body.aam-contact-body .aam-eyebrow p {
      font-size: 13px;
      letter-spacing: 4px;
    }

  body.aam-contact-body .aam-contact-hero h1 {
      font-size: 36px;
      line-height: 38px;
    }

  body.aam-contact-body .aam-contact-form__row {
      grid-template-columns: 1fr;
	  gap:0px;
    }

  body.aam-contact-body .aam-contact-copy__note {
      align-items: flex-start;
      font-size: 15px;
      line-height: 23px;
    }

  body.aam-contact-body .aam-contact-special h2, body.aam-contact-body .aam-contact-copy h2 {
      font-size: 26px;
      line-height: 31px;
    }
	body.aam-contact-body .aam-contact-box h3{
		font-size:18px;
	}
	body.aam-contact-body .aam-contact-box p {
		line-height:20px;
	}
	body.aam-contact-body .aam-contact-special__logo {
		width:70px;
	}
  body.aam-contact-body .aam-contact-tabs {
      gap: 16px;
    }

  body.aam-contact-body .aam-contact-tabs span {
      font-size: 14px;
    }
}


/* =========================================================================
   21. ABOUT PAGE  (body.aam-about-body)
   ========================================================================= */
body.aam-about-body {
  min-width: auto;
  overflow-x: hidden;
  background: #12081c;
  color: var(--aam-white);
  font-family: "Instrument Sans", sans-serif;
}
/* body.aam-about-body .aam-how-work{
	display:none;
} */
body.aam-about-body .aam-header {
  width: 100%;
/*   padding: 15px var(--aam-header-pad); */
}

body.aam-about-body .aam-header__inner {
  max-width: none;
}

body.aam-about-body .aam-header__logo,
body.aam-about-body .aam-header__cta,
body.aam-about-body .aam-header__nav {
  pointer-events: auto;
}

body.aam-about-body .aam-header__logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}

body.aam-about-body .aam-header__nav {
  position: static;
  transform: none;
}

body.aam-about-body .aam-header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px) scale(0.94);
}

body.aam-about-body .aam-header__logo.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px) scale(0.94);
  pointer-events: none;
}

body.aam-about-body .aam-header__cta {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}

body.aam-about-body .aam-about-container {
  width: 100%;
  max-width: 1440px;
  min-width: auto;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-about-body .aam-about-page {
  width: 100%;
  overflow: hidden;
}

body.aam-about-body .aam-about-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 130px 0 50px;
  background: #12081c;
}

body.aam-about-body .aam-about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  object-position: top;
}

body.aam-about-body .aam-about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 50px 36px;
  align-items: start;
}

body.aam-about-body .aam-about-hero__copy {
  grid-column: 1 / -1;
  max-width: 850px;
}

body.aam-about-body .aam-about-hero__copy h1 {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--aam-white);
  font-size: 50px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.42px;
}
.aam-about-container.aam-about-hero__inner .aam-eyebrow{
	display: flex;
    align-items: center;
    gap: 12px;
    color: var(--aam-hot-red);
	margin-bottom: 0px;
}
body.aam-about-body .aam-eyebrow p{
	color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 10px;
}

body.aam-about-body .aam-about-hero__copy h1 span {
  /*color: var(--aam-hot-red);*/
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-about-body .aam-about-hero__media {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

body.aam-about-body .aam-about-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
}

body.aam-about-body .aam-about-hero__text {
  max-width: 610px;
  padding-bottom: 4px;
}

body.aam-about-body .aam-about-hero__text p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
}

body.aam-about-body .aam-about-highlighter {
  position: relative;
  min-height: 100vh;
  background: #f1f2f4;
  color: #12081c;
}

body.aam-about-body .aam-about-highlighter__pin {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: #E8E9EA;
}

body.aam-about-body .aam-about-highlighter__pin::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(25% + 40px);
  width: 100%;
  height: 500px;
  transform: translateY(-42%);
  background: url("assets/highlighter_bg.png") center / cover no-repeat;
  pointer-events: none;
}

body.aam-about-body .aam-about-highlighter__track {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(25% + 40px);
  width: max-content;
  will-change: transform;
}

body.aam-about-body .aam-about-highlighter h2 {
  margin: 0;
  color: #2f73ff;
  font-size: clamp(72px, 10.6vw, 152px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-about-body .aam-about-highlighter h2 span {
  color: #2f73ff;
}

body.aam-about-body .aam-about-highlighter h2 .aam-about-highlighter__dark {
  color: #12081c;
}

/*body.aam-about-body .aam-about-highlighter__pin p {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: min(610px, calc(100% - 32px));
  margin: 0;
  color: rgba(18, 8, 28, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.25px;
  text-align: center;
}*/

.scrol_pragraph{
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: min(610px, calc(100% - 32px));
  margin: 0;
  color: rgba(18, 8, 28, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.25px;
  text-align: center;
}

body.aam-about-body .aam-about-team,
body.aam-about-body .aam-about-testimonials {
  position: relative;
  overflow: hidden;
  background: #12081c;
}

body.aam-about-body .aam-about-team__bg,
body.aam-about-body .aam-about-testimonials__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

body.aam-about-body .aam-about-team__inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 100vh;
  padding-top: 104px;
  padding-bottom: 110px;
}

body.aam-about-body .aam-about-team__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/team_bg.png") center / cover no-repeat;
  pointer-events: none;
}

body.aam-about-body .aam-about-team__bg {
  display: none;
}

body.aam-about-body .aam-about-team__heading {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 650px);
  gap: 54px;
  align-items: start;
}

body.aam-about-body .aam-about-team__heading h2,
body.aam-about-body .aam-about-testimonials__header h2 {
    max-width: 700px;
    margin: 0;
    color: var(--aam-white);
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-team__heading h2 span,
body.aam-about-body .aam-about-testimonials__header h2 span {
  color: rgba(255, 255, 255, 0.48);
}

body.aam-about-body .aam-about-team__stage {
  position: relative;
  height: calc(100vh - 245px);
  min-height: 650px;
  margin-top: 50px;
  overflow: hidden;
}

body.aam-about-body .aam-about-team__watermark {
  display: none;
}

body.aam-about-body .aam-about-member {
  position: absolute;
  display: block;
  width: 230px;
  height: 295px;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  will-change: transform;
}

body.aam-about-body .aam-about-member img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-about-member::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0), rgba(18, 8, 28, 0.78));
}

body.aam-about-body .aam-about-member strong,
body.aam-about-body .aam-about-member em {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
}

body.aam-about-body .aam-about-member strong {
  bottom: 30px;
  color: var(--aam-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}

body.aam-about-body .aam-about-member em {
  bottom: 13px;
  color: var(--aam-hot-red);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.2px;
}

body.aam-about-body .aam-about-member--one {
  left: 5%;
  top: 120px;
}

body.aam-about-body .aam-about-member--two {
  left: 55%;
  top: 60px;
}

body.aam-about-body .aam-about-member--three {
  left: 45%;
  top: 330px;
}

body.aam-about-body .aam-about-member--four {
  right: 7%;
  top: 312px;
}

body.aam-about-body .aam-about-member--five {
  left: 9%;
  top: 430px;
}

body.aam-about-body .aam-about-member--six {
  left: 25%;
  top: 565px;
}

body.aam-about-body .aam-about-member--seven {
  left: 67%;
  top: 628px;
}

body.aam-about-body .aam-about-member--eight {
  left: 36%;
  top: 704px;
}

body.aam-about-body .aam-about-member--nine {
  left: 79%;
  top: 796px;
}

body.aam-about-body .aam-about-member--ten {
  left: 15%;
  top: 882px;
}

body.aam-about-body .aam-about-member--eleven {
  left: 52%;
  top: 950px;
}

body.aam-about-body .aam-about-team-v2 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
  background: #12081c;
  color: var(--aam-white);
}

body.aam-about-body .aam-about-team-v2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 1;
  pointer-events: none;
  object-position: center;
}

body.aam-about-body .aam-about-team-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

body.aam-about-body .aam-about-team-v2__heading {
  display: grid;
  grid-template-columns: minmax(190px, 200px) minmax(0, 600px);
  gap: 126px;
  align-items: start;
  width: 100%;
}
body.aam-about-body .aam-about-team-v2__heading .aam-eyebrow,
header.aam-about-testimonials__header .aam-eyebrow{
	margin-top:10px;
}
 body.aam-about-body .aam-about-team-v2__heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--aam-white);
      font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-team-v2__heading h2 span {
  color: #777b88;
}

body.aam-about-body .aam-about-team-v2__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

body.aam-about-body .aam-about-team-v2__member {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 241 / 340;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 20px 16px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
  transform-origin: center bottom;
  will-change: transform, opacity, clip-path;
  backdrop-filter: blur(15px);
}
body.aam-about-body .aam-about-team-v2__member:after{
	content: "";
    background: linear-gradient(180deg, rgba(18, 8, 28, 0.00) 30.62%, rgba(18, 8, 28, 0.30) 61.94%, rgba(18, 8, 28, 0.9) 95.49%);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
}

/*body.aam-about-body .aam-about-team-v2__member::after {
  content: "";
  position: absolute;
  inset: 44% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0), rgba(8, 8, 44, 0.68) 58%, rgba(12, 17, 74, 0.9));
  pointer-events: none;
}*/

body.aam-about-body .aam-about-team-v2__member img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
  transition: transform 0.8s var(--aam-ease);
}

body.aam-about-body .aam-about-team-v2__member span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

body.aam-about-body .aam-about-team-v2__member strong,
body.aam-about-body .aam-about-team-v2__member em {
  display: block;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

body.aam-about-body .aam-about-team-v2__member strong {
  color: var(--aam-white);
  font-size: 18px;
  letter-spacing: 0.8px;
  font-weight: 400;
}

body.aam-about-body .aam-about-team-v2__member em {
  color: #e31e26;
  font-size: 14px;
  letter-spacing: 0.56px;
}

body.aam-about-body .aam-about-team-v2__member:hover img {
  transform: scale(1.045);
}

body.aam-about-body.aam-team-detail-open {
  overflow: hidden;
}

body.aam-about-body .aam-team-detail {
  --aam-team-detail-width: min(1320px, calc(100vw - 80px));
  --aam-team-detail-height: min(840px, calc(100vh - 80px));
  --aam-team-detail-height: min(840px, calc(100dvh - 80px));
  position: fixed;
  inset: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.78);
  color: var(--aam-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.aam-about-body .aam-team-detail.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.aam-about-body .aam-team-detail__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--aam-team-detail-width);
  height: var(--aam-team-detail-height);
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 28px;
  pointer-events: none;
}

body.aam-about-body .aam-team-detail__close {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 4;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

body.aam-about-body .aam-team-detail__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.aam-about-body .aam-team-detail__viewport {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  width: var(--aam-team-detail-width);
  height: var(--aam-team-detail-height);
  margin: calc((100vh - var(--aam-team-detail-height)) / 2) auto;
  margin: calc((100dvh - var(--aam-team-detail-height)) / 2) auto;
/*   overflow: hidden; */
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px);
	align-items: flex-start;
}

body.aam-about-body .aam-team-detail__media {
  position: sticky;
/*   top: clamp(30px, 4vw, 56px); */
  display: flex;
  width: 100%;
  height: calc(var(--aam-team-detail-height) - clamp(60px, 8vw, 112px));
  max-height: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: start;
  border-radius: 24px;
/*   max-height: 1200px; */
}

body.aam-about-body .aam-team-detail__media img {
  display: block;
  width: min(807px, 139%);
  max-width: auto;
  height: 100%;
  object-fit: cover;
  object-position: top;
	border-radius:24px;
}

body.aam-about-body .aam-team-detail__content {
  display: flex;
  min-width: 0;
  height: calc(var(--aam-team-detail-height) - clamp(60px, 8vw, 112px));
  flex-direction: column;
  gap: 24px;
  overflow: hidden auto;
  padding: 20px 8px 42px 0;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

/* Mobile-only (<= 1000px): Full viewport scroll for stacked photo + bio layout */
@media (max-width: 1000px) {
	body.aam-about-body .aam-team-detail {
        --aam-team-detail-height: calc(100vh - 48px);
        --aam-team-detail-height: calc(100dvh - 48px);
    }
    body.aam-about-body .aam-team-detail__viewport {
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;
    }
    body.aam-about-body .aam-team-detail__media {
        position: relative !important;
        height: auto !important;
		flex-shrink: 0 !important;
    }
    body.aam-about-body .aam-team-detail__media img {
        height: auto !important;
    }
    body.aam-about-body .aam-team-detail__content {
        height: auto !important;
        overflow: visible !important;
		flex-shrink: 0 !important;
    }
}

body.aam-about-body .aam-team-detail__content::-webkit-scrollbar {
  display: none;
}

body.aam-about-body .aam-team-detail__content::-webkit-scrollbar-thumb {
  background: transparent;
}

body.aam-about-body .aam-team-detail__header {
  display: flex;
  width: min(720px, 100%);
  flex-direction: row;
  gap: 8px;
  letter-spacing: 0.5px;
  justify-content: space-between;
	    align-items: center;
}
header.aam-team-detail__header a.aam-socials__link img{
	width:24px;
	height:24px;
}

.set_two {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}  

.set_two a img {
    opacity: 0.7;
}

body.aam-about-body .aam-team-detail__header h2 {
  margin: 0;
  margin-bottom: 10px;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__header p {
  margin: 0;
  color: var(--aam-hot-red);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__quote {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

body.aam-about-body .aam-team-detail__avatar {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

body.aam-about-body .aam-team-detail__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-team-detail__quote strong,
body.aam-about-body .aam-team-detail__quote em {
  display: block;
}

body.aam-about-body .aam-team-detail__quote strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-team-detail__quote em {
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-about-body .aam-team-detail__bio {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-about-body .aam-team-detail__bio p {
  margin: 0;
}

body.aam-about-body .aam-about-testimonials__inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 90px;
}
body.aam-about-body .aam-about-testimonials__inner:after{
    content: "";
    background-image: url(assets/about_testi_ast.png);
    position: absolute;
    width: 700px;
    height: 235px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    bottom: 0;
    z-index: -1;
}

body.aam-about-body .aam-about-testimonials__header {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 620px);
  gap: 54px;
  align-items: start;
  margin-bottom: 40px;
}
header.aam-about-testimonials__header .aam-eyebrow p, header.aam-about-team-v2__heading .aam-eyebrow p {
	font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 7px;
    text-transform: uppercase;
	margin: 0;
    color: var(--aam-hot-red);
}
body.aam-about-body .aam-about-testimonials__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.72fr);
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 80px;
}

body.aam-about-body .aam-about-video-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

body.aam-about-body .aam-about-video-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.aam-about-body .aam-about-video-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

body.aam-about-body .aam-about-video-card__top p {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

body.aam-about-body .aam-about-video-card__top img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.aam-about-body .aam-about-video-card__mute {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.aam-about-body .aam-about-video-card__mute img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
}

body.aam-about-body .aam-about-video-card__frame {
  height: 210px;
  overflow: hidden;
  border-radius: 18px;
  background: #12081c;
}

body.aam-about-body .aam-about-video-card__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.aam-about-body .aam-about-slider {
  position: static;
  min-width: 0;
  overflow: visible;
}

body.aam-about-body .aam-about-slider__viewport {
  overflow: visible;
  width: calc(100% + min(180px, 12vw));
/*   clip-path: inset(0 max(-180px, -12vw) 0 0); */
}

body.aam-about-body .aam-about-slider__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

body.aam-about-body .aam-about-quote-card {
  width: min(640px, 58vw);
  min-height: 350px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 20px;
  border-radius: 32px 32px 32px 0;
  background: rgb(49 41 57);
  backdrop-filter: blur(25px);
}

body.aam-about-body .aam-about-quote-card__headline {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-quote-card__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}

body.aam-about-body p.aam-about-quote-card__copy{
  padding-top:20px;
}

body.aam-about-body .aam-about-quote-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.aam-about-body .aam-about-quote-card__profile img,
body.aam-about-body .aam-about-quote-card__profile > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

body.aam-about-body .aam-about-quote-card__profile strong,
body.aam-about-body .aam-about-quote-card__profile span {
  display: block;
}

body.aam-about-body .aam-about-quote-card__profile > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(227, 30, 38, 0.55), rgba(37, 110, 255, 0.45));
  color: var(--aam-white);
  font-size: 13px;
  font-weight: 600;
}

body.aam-about-body .aam-about-quote-card__profile strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
}

body.aam-about-body .aam-about-quote-card__profile div span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  letter-spacing: 0.2px;
}

body.aam-about-body .aam-about-slider__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 0;
  padding-left: 0;
}

body.aam-about-body .aam-about-slider__nav button {
  width: 68px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 23, 53, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

/*body.aam-about-body .aam-about-slider__nav button:last-child img {
  transform: rotate(180deg);
}*/

body.aam-about-body .aam-about-slider__nav img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}


/* ===== SMALL DEVICE ===== */
@media (min-width:1000px) and (max-width:1280px){
/* 	body.aam-about-body .aam-header{
		padding:15px 40px;
	} */
	body.aam-about-body .aam-about-container{
		padding-right: 60px;
       padding-left: 60px;
		gap:32px;
	}
	body.aam-about-body .aam-eyebrow p{
		font-size:14px;
	}
	body.aam-about-body .aam-about-hero__copy h1{
		margin:16px 0 0;
		 max-width: 80%;
        font-size: 42px;
        line-height: 51px;
	}
	body.aam-about-body .aam-about-hero__inner {
    	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
	body.aam-about-body .aam-about-hero__text p {
		margin: 0 0 11px;
		font-size: 15px;
		letter-spacing: 0.25px;
		max-width:95%;
	}
	body.aam-about-body .aam-about-hero{
		min-height: auto;
    	overflow: hidden;
    	padding: 120px 0 80px;
	}
	body.aam-about-body .aam-about-team-v2__heading h2, body.aam-about-body .aam-about-testimonials__header h2 {
  	  font-size: clamp(34px, 6vw, 34px);
  	  line-height: 1.1;
  	  max-width: 95%;
	}
	body.aam-about-body .aam-about-team-v2__heading {
		gap:28px;
	}
	header.aam-about-team-v2__heading .aam-eyebrow span {
        font-size: 18px;
    }
	body.aam-about-body .aam-about-team-v2__grid{
		gap:18px;
	}
	body.aam-about-body .aam-about-team-v2__member strong{
		font-size:17px;
	}
	body.aam-about-body .aam-about-testimonials__header{
		gap:18px;
	}
	body.aam-about-body .aam-about-testimonials__inner {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	body.aam-about-body .aam-about-team-v2{
		padding:20px 0 20px;
	} 
	body.aam-about-body .aam-about-quote-card__headline{
		font-size:18px;
	}
	body.aam-about-body p.aam-about-quote-card__copy {
		padding-top: 10px;
	}
	body.aam-about-body .aam-about-quote-card {
		min-height:310px;
	}
	body.aam-about-body .aam-about-quote-card__profile strong{
		font-size:16px;
	}
	body.aam-about-body .aam-about-team-v2__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 20px;
	}
	body.aam-about-body .aam-team-detail__viewport{
		padding: 30px;
		gap: clamp(28px, 4vw, 26px);
	}
	body.aam-about-body .aam-team-detail__bio {
		gap: 8px;
		font-size: 15px;
		line-height: 22px;
		width: 97%;
	}
	body.aam-about-body .aam-team-detail__header {
      display: flex;
      width: min(720px, 90%);
	}
	body.aam-about-body .aam-team-detail__media img {
		display: block;
		width: min(767px, 100%);
	}
	body.aam-about-body .aam-team-detail__header h2 {
		font-size:32px;
		margin-bottom: 5px;
	}
	body.aam-about-body .aam-team-detail__header p{
		font-size:16px;
	}
	body.aam-about-body .aam-team-detail__content {
		gap:20px;
		padding-top: 10px;
	}

}

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {
  body.aam-about-body .aam-team-detail {
    --aam-team-detail-width: calc(100vw - 48px);
    --aam-team-detail-height: calc(100vh - 48px);
	--aam-team-detail-height: calc(100dvh - 48px);
  }
	body.aam-about-body .aam-eyebrow p{
		font-size:13px;
	}
  body.aam-about-body .aam-about-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.aam-about-body .aam-about-hero__inner,
  body.aam-about-body .aam-about-testimonials__layout {
    grid-template-columns: 1fr;
  }

  body.aam-about-body .aam-about-team__heading,
  body.aam-about-body .aam-about-testimonials__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.aam-about-body .aam-about-team__stage {
    min-height: 760px;
  }

  body.aam-about-body .aam-about-team-v2 {
    padding: 84px 0;
  }

  body.aam-about-body .aam-about-team-v2__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.aam-about-body .aam-about-team-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  body.aam-about-body .aam-about-team-v2__member {
    width: 100%;
    height: auto;
    min-height: 310px;
    flex-basis: auto;
    aspect-ratio: 241 / 340;
  }

  body.aam-about-body .aam-about-member--two {
    left: auto;
    right: 8%;
  }

  body.aam-about-body .aam-team-detail__viewport {
    grid-template-columns: minmax(300px, 42vw) minmax(0, 1fr);
    gap: 30px;
    padding: 56px 48px 44px 32px;
  }

  body.aam-about-body .aam-team-detail__media {
    width: 100%;
    height: 72vh;
  }

  body.aam-about-body .aam-team-detail__media img {
    width: min(650px, 148%);
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 34px;
  }

  body.aam-about-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-about-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-about-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-about-body .aam-header__nav {
    display: none;
  }

  body.aam-about-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-about-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-about-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-about-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-about-body .aam-mobile-menu {
    display: block;
  }

  body.aam-about-body .aam-about-container {
        padding-right:42px;
        padding-left: 42px;
  }

  body.aam-about-body .aam-about-hero {
    min-height: auto;
    padding: 110px 0 20px;
  }

  main.aam-about-page .aam-how-work__heading{
	  padding-right:42px;
	  padding-left:42px;
   }

  body.aam-about-body .aam-about-hero__inner {
    gap: 32px;
  }

  body.aam-about-body .aam-about-hero__copy h1 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0.1px;
    max-width: 620px;
	  margin-top: 14px;
  }

  body.aam-about-body .aam-about-hero__media img {
    aspect-ratio: 16/9;
  }
  body.aam-about-body .aam-about-hero__text {
    max-width: 100%;
    padding-bottom: 4px;
  }
  body.aam-about-body .aam-about-hero__text p {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 10px;
  }

  body.aam-about-body .aam-about-highlighter {
    min-height: 100vh;
  }

  body.aam-about-body .aam-about-highlighter__pin {
    height: 100vh;
    min-height: 620px;
  }

  body.aam-about-body .aam-about-highlighter h2 {
    font-size: 54px;
  }

  body.aam-about-body .aam-about-highlighter__track,
  body.aam-about-body .aam-about-highlighter__pin::before {
    top: calc(25% + 28px);
  }

  body.aam-about-body .aam-about-highlighter__pin p {
    margin-top: 34px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-about-body .aam-about-team__inner {
    min-height: 900px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body.aam-about-body .aam-about-team__heading h2,
  body.aam-about-body .aam-about-testimonials__header h2 {
         font-size: clamp(30px, 6vw, 30px);
        line-height: 1.12;
        max-width: 75%;
  }
	.aam-about-container.aam-about-testimonials__inner .aam-eyebrow{
		 margin-bottom: 0px;
	}
  body.aam-about-body .aam-about-team__stage {
    height: calc(100vh - 190px);
    min-height: 680px;
    margin-top: 32px;
  }

  body.aam-about-body .aam-about-team__watermark {
    font-size: 102px;
  }

  body.aam-about-body .aam-about-team-v2 {
    padding: 70px 0;
  }

  body.aam-about-body .aam-about-team-v2__inner {
    gap: 34px;
  }

  body.aam-about-body .aam-about-team-v2__heading h2 {
    font-size: clamp(30px, 6vw, 30px);
    line-height: 1.12;
    max-width: 75%;
  }

  body.aam-about-body .aam-about-team-v2__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  body.aam-about-body .aam-about-team-v2__member {
    min-height: 238px;
    padding: 16px 12px;
    border-radius: 14px;
  }

  body.aam-about-body .aam-about-team-v2__member strong {
    font-size: 15px;
    letter-spacing: 0.35px;
  }

  body.aam-about-body .aam-about-team-v2__member em {
    font-size: 11px;
    letter-spacing: 0.22px;
  }

  body.aam-about-body .aam-about-member {
    width: 163px;
    height: 237px;
  }

  body.aam-about-body .aam-about-member--one {
    left: 2%;
    top: 54px;
  }

  body.aam-about-body .aam-about-member--two {
    right: 0;
    top: 16px;
  }

  body.aam-about-body .aam-about-member--three {
    left: 31%;
    top: 250px;
  }

  body.aam-about-body .aam-about-member--four {
    right: 0;
    top: 445px;
  }

  body.aam-about-body .aam-about-member--five {
    left: 0;
    top: 430px;
  }

  body.aam-about-body .aam-about-member--six {
    left: 42%;
    top: 570px;
  }

  body.aam-about-body .aam-about-member--seven {
    left: 2%;
    top: 650px;
  }

  body.aam-about-body .aam-about-member--eight {
    right: 0;
    left: auto;
    top: 700px;
  }

  body.aam-about-body .aam-about-member--nine {
    left: 32%;
    top: 815px;
  }

  body.aam-about-body .aam-about-member--ten {
    left: 0;
    top: 910px;
  }

  body.aam-about-body .aam-about-member--eleven {
    right: 0;
    left: auto;
    top: 985px;
  }

  body.aam-about-body .aam-team-detail {
    overflow: hidden auto;
	  padding:24px;
  }

  body.aam-about-body .aam-team-detail__close {
/*     top: 28px;
    right: 28px;
    width: 32px;
    height: 32px; */
	    margin-top: 24px;
        margin-right: 24px;
        width: 32px;
        height: 32px;
        position: fixed;
  }

  body.aam-about-body .aam-team-detail__bg {
/*     width: calc(100vw - 28px);
    height: calc(100vh - 28px);
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px); */
    border-radius: 28px;
  }

  body.aam-about-body .aam-team-detail__viewport {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 48px);
	  min-height: calc(100dvh - 48px);
	max-height: calc(100vh - 48px);
	  max-height: calc(100dvh - 48px);
    height: auto;
    flex-direction: column;
    gap: 24px;
/*     margin: 14px auto; */
	margin: 0;
/* 	margin: calc((100vh - var(--aam-team-detail-height)) / 2) auto;
    margin: calc((100dvh - var(--aam-team-detail-height)) / 2) auto; */
    overflow: visible;
    padding: 28px;
  }

  body.aam-about-body .aam-team-detail__media {
    position: relative;
    top: auto;
    width: 80%;
    height: 375px;
    max-height: none;
    margin:0 auto;
    margin-top: 0px;
  }

  body.aam-about-body .aam-team-detail__media img {
    width: min(260px, 112vw);
  }

  body.aam-about-body .aam-team-detail__content {
    height: auto;
    overflow: visible;
    gap: 16px;
    padding: 0;
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 30px;
    line-height: 34px;
	  margin-bottom:6px;
  }

  body.aam-about-body .aam-team-detail__header p {
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-about-body .aam-team-detail__quote strong,
  body.aam-about-body .aam-team-detail__quote em,
  body.aam-about-body .aam-team-detail__bio {
    font-size: 15px;
	  line-height:21px;
  }
	
/*   body.aam-about-body .aam-team-detail__bio {
    height: calc(100vh - 574px);
  } */
  body.aam-about-body .aam-team-detail__header {
	width:100%;
  }


  body.aam-about-body .aam-team-detail__quote em {
    white-space: normal;
  }

  body.aam-about-body .aam-about-testimonials__inner {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  body.aam-about-body .aam-about-testimonials__header {
    margin-bottom: 34px;
  }

  body.aam-about-body .aam-about-testimonials__layout {
    padding-bottom: 74px;
  }

  body.aam-about-body .aam-about-video-card {
    min-height: 260px;
    padding: 16px;
    border-radius: 20px;
  }

  body.aam-about-body .aam-about-video-card__frame {
    height: 184px;
    border-radius: 16px;
  }

  body.aam-about-body .aam-about-quote-card {
    width: calc(70vw - 32px);
    min-height: 300px;
    padding: 18px 16px;
    border-radius: 22px 22px 22px 0;
  }

  body.aam-about-body .aam-about-quote-card__headline {
    font-size: 17px;
    line-height: 25px;
  }

  body.aam-about-body .aam-about-quote-card__copy {
    font-size: 15px;
    line-height: 23px;
  }
	body.aam-about-body .aam-about-quote-card__profile strong {
		font-size:16px;
	}
	body.aam-about-body .aam-about-quote-card__profile div span {
		font-size:13px;
	}

  body.aam-about-body .aam-about-slider__nav {
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 26px;
    padding-left: 0;
    justify-content: center;
  }
  body.aam-about-body .aam-about-slider__nav button {
    width: 58px;
	height: 44px;
	  border-radius:12px;
  }
  body.aam-about-body .aam-about-slider__nav img {
    width: 32px;
    height: 32px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
	.aam-menu-toggle {
		transition: opacity 0.58s var(--aam-ease), transform 0.58s var(--aam-ease), visibility 0.58s var(--aam-ease);
        will-change: transform, opacity;
	}
	.aam-header__logo.is-hidden,
    .aam-header__cta.is-hidden,
	.aam-menu-toggle.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-22px) scale(0.94) !important;
        pointer-events: none !important;
    }
	
  body.aam-about-body .aam-team-detail {
/*     --aam-team-detail-width: calc(100vw - 48px);
    --aam-team-detail-height: calc(100vh - 48px); */
/* 	  height:95vh; */
	  --aam-team-detail-width: calc(100vw - 28px);
        --aam-team-detail-height: calc(100vh - 28px);
        --aam-team-detail-height: calc(100dvh - 28px);
  }

  body.aam-about-body .aam-about-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.aam-about-body .aam-about-hero__inner,
  body.aam-about-body .aam-about-testimonials__layout {
    grid-template-columns: 1fr;
  }

  body.aam-about-body .aam-about-team__heading,
  body.aam-about-body .aam-about-testimonials__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.aam-about-body .aam-about-team__stage {
    min-height: 760px;
  }

  body.aam-about-body .aam-about-team-v2 {
    padding: 84px 0;
  }

  body.aam-about-body .aam-about-team-v2__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.aam-about-body .aam-about-team-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  body.aam-about-body .aam-about-team-v2__member {
    width: 100%;
    height: auto;
    min-height: 310px;
    flex-basis: auto;
    aspect-ratio: 241 / 340;
  }

  body.aam-about-body .aam-about-member--two {
    left: auto;
    right: 8%;
  }

  body.aam-about-body .aam-team-detail__viewport {
    grid-template-columns: minmax(300px, 42vw) minmax(0, 1fr);
    gap: 30px;
    padding: 56px 48px 44px 32px;
  }

  body.aam-about-body .aam-team-detail__media {
    width: 100%;
    height: 72vh;
  }

  body.aam-about-body .aam-team-detail__media img {
    width: min(650px, 148%);
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 34px;
  }
	body.aam-about-body .aam-eyebrow p{
		font-size: 13px;
        letter-spacing: 6px;
	}
	body.aam-about-body .aam-about-hero__copy h1{
		margin:12px 0 0;
	}
	.aam-about-container.aam-about-hero__inner .aam-eyebrow{
		margin-bottom:0px;
	}
  body.aam-about-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-about-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-about-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-about-body .aam-header__nav {
    display: none;
  }

  body.aam-about-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-about-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-about-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-about-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-about-body .aam-mobile-menu {
    display: block;
  }

  body.aam-about-body .aam-about-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-about-body .aam-about-hero {
    min-height: auto;
    padding: 110px 0 20px;
  }

  body.aam-about-body .aam-about-hero__inner {
    gap: 26px;
  }

  body.aam-about-body .aam-about-hero__copy h1 {
    font-size: 34px;
    line-height: 38px;
    letter-spacing: 0.42px;
  }

  body.aam-about-body .aam-about-hero__media img {
    aspect-ratio: 1.42;
  }
  body.aam-about-body .aam-about-hero__text p {
	  margin:0px;
  }

  body.aam-about-body .aam-about-hero__text p {
    font-size: 14px;
    line-height: 23px;
  }

  body.aam-about-body .aam-about-highlighter {
    min-height: 100vh;
  }

  body.aam-about-body .aam-about-highlighter__pin {
    height: 100vh;
    min-height: 620px;
  }

  body.aam-about-body .aam-about-highlighter h2 {
    font-size: 54px;
  }

  body.aam-about-body .aam-about-highlighter__track,
  body.aam-about-body .aam-about-highlighter__pin::before {
    top: calc(25% + 28px);
  }

  body.aam-about-body .aam-about-highlighter__pin p {
    margin-top: 34px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-about-body .aam-about-team__inner {
    min-height: 900px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  body.aam-about-body .aam-about-team__heading h2,
  body.aam-about-body .aam-about-testimonials__header h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  body.aam-about-body .aam-about-team__stage {
    height: calc(100vh - 190px);
    min-height: 680px;
    margin-top: 32px;
  }
	header.aam-about-testimonials__header .aam-eyebrow {
		height:auto;
		margin-bottom:0px;
	}
  body.aam-about-body .aam-about-team__watermark {
    font-size: 102px;
  }

  body.aam-about-body .aam-about-team-v2 {
    padding: 40px 0;
  }

  body.aam-about-body .aam-about-team-v2__inner {
    gap: 34px;
  }

  body.aam-about-body .aam-about-team-v2__heading h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  body.aam-about-body .aam-about-team-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.aam-about-body .aam-about-team-v2__member {
    min-height: 238px;
    padding: 16px 12px;
    border-radius: 14px;
  }

  body.aam-about-body .aam-about-team-v2__member strong {
    font-size: 15px;
    letter-spacing: 0.35px;
  }

  body.aam-about-body .aam-about-team-v2__member em {
    font-size: 11px;
    letter-spacing: 0.22px;
  }

  body.aam-about-body .aam-about-member {
    width: 163px;
    height: 237px;
  }

  body.aam-about-body .aam-about-member--one {
    left: 2%;
    top: 54px;
  }

  body.aam-about-body .aam-about-member--two {
    right: 0;
    top: 16px;
  }

  body.aam-about-body .aam-about-member--three {
    left: 31%;
    top: 250px;
  }

  body.aam-about-body .aam-about-member--four {
    right: 0;
    top: 445px;
  }

  body.aam-about-body .aam-about-member--five {
    left: 0;
    top: 430px;
  }

  body.aam-about-body .aam-about-member--six {
    left: 42%;
    top: 570px;
  }

  body.aam-about-body .aam-about-member--seven {
    left: 2%;
    top: 650px;
  }

  body.aam-about-body .aam-about-member--eight {
    right: 0;
    left: auto;
    top: 700px;
  }

  body.aam-about-body .aam-about-member--nine {
    left: 32%;
    top: 815px;
  }

  body.aam-about-body .aam-about-member--ten {
    left: 0;
    top: 910px;
  }

  body.aam-about-body .aam-about-member--eleven {
    right: 0;
    left: auto;
    top: 985px;
  }

  body.aam-about-body .aam-team-detail {
    overflow: hidden auto;
  }

  body.aam-about-body .aam-team-detail__close {
/*     margin-top: 16px;
    margin-right: 16px; */
    width: 32px;
    height: 32px;
    position: fixed;
	  right: 32px;
        top: 32px;
  }
	header.aam-team-detail__header .aam-socials__link{
		width:38px;
		height:38px;
	}
	header.aam-team-detail__header a.aam-socials__link img{
		width:20px;
		height:20px;
	}

  body.aam-about-body .aam-team-detail__bg {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
	height: calc(100dvh - 28px);
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
	max-height: calc(100dvh - 28px);
    border-radius: 22px;
  }

  body.aam-about-body .aam-team-detail__viewport {
    display: flex;
    width: calc(100vw - 28px);
    min-height: auto;
/* 	max-height: calc(95vh - 28px); */
    max-height: calc(100vh - 30px);
    max-height: calc(100dvh - 30px);
	height: auto;
    flex-direction: column;
    gap: 40px;
/*     margin: 14px auto; */
	margin: calc((100vh - var(--aam-team-detail-height)) / 2) auto;
        margin: calc((100dvh - var(--aam-team-detail-height)) / 2) auto;
    overflow: visible;
/*     padding: 24px 16px 44px; */
	padding: 24px 16px 24px;
  }

  body.aam-about-body .aam-team-detail__media {
    position: relative;
    top: auto;
    width: 70%;
    height: 40vh;
    max-height: none;
    margin:0 auto;
/* 	margin-top: 8px; */
  }

  body.aam-about-body .aam-team-detail__media img {
/*     width: min(378px, 112vw); */
	  width:100%;
  }

  body.aam-about-body .aam-team-detail__content {
    height: auto;
    overflow: visible;
    gap: 14px;
    padding: 0;
  }

  body.aam-about-body .aam-team-detail__header h2 {
    font-size: 24px;
    line-height: 30px;
	 margin-bottom: 4px;
  }
	body.aam-about-body .aam-team-detail__header{
		display: flex;
    flex-direction: column;
    align-items: baseline;
		gap:16px;
		margin-bottom:12px;
	}
  body.aam-about-body .aam-team-detail__header p {
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-about-body .aam-team-detail__quote strong,
  body.aam-about-body .aam-team-detail__quote em,
  body.aam-about-body .aam-team-detail__bio {
    font-size: 14px;
        line-height: 22px;
  }
/* 	
  body.aam-about-body .aam-team-detail__bio {
    height: calc(100vh - 68vh);
  } */

  body.aam-about-body .aam-team-detail__quote em {
    white-space: normal;
  }

  body.aam-about-body .aam-about-testimonials__inner {
    padding-top: 20px;
    padding-bottom:70px;
  }

  body.aam-about-body .aam-about-testimonials__header {
    margin-bottom: 24px;
  }

  body.aam-about-body .aam-about-testimonials__layout {
    padding-bottom: 74px;
  }
  body.aam-about-body .aam-about-quote-card__profile strong {
	  font-size:16px;
  }


  body.aam-about-body .aam-about-video-card {
    min-height: 260px;
    padding: 16px;
    border-radius: 20px;
  }

  body.aam-about-body .aam-about-video-card__frame {
    height: 184px;
    border-radius: 16px;
  }

  body.aam-about-body .aam-about-quote-card {
    width: calc(100vw - 32px);
    min-height: 330px;
    padding: 18px 16px;
    border-radius: 20px 20px 20px 0;
  }

  body.aam-about-body .aam-about-quote-card__headline {
    font-size: 18px;
    line-height: 25px;
  }

  body.aam-about-body .aam-about-quote-card__copy {
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-about-body .aam-about-slider__nav {
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 26px;
    padding-left: 0;
    justify-content: center;
  }
}


/* =========================================================================
   23. SUBSCRIPTION SERVICES PAGE  (body.aam-services-body)
   ========================================================================= */
body.aam-services-body {
  margin: 0;
  overflow-x: hidden;
  background: #12081c;
  color: var(--aam-white);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.aam-services-hero__copy .aam-eyebrow p{
	color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
	letter-spacing:10px;
}
body.aam-services-body .aam-services-page {
  position: relative;
  overflow: hidden;
  background: #12081c;
}

body.aam-services-body .aam-services-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1580px;
  object-fit: cover;
  pointer-events: none;
}

body.aam-services-body .aam-services-page > :not(.aam-services-page__bg) {
  position: relative;
  z-index: 1;
}

body.aam-services-body .aam-services-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-services-body .aam-services-hero {
  position: relative;
  min-height: 420px;
  padding: 130px 0 50px;
  /*background: #12081c;*/
}
.aam-services-hero__copy .aam-eyebrow{
  margin-bottom: 0px;
}

body.aam-services-body .aam-services-hero__inner {
  display: flex;
  align-items: center;
}

body.aam-services-body .aam-services-hero__copy {
  display: flex;
  max-width: 1100px;
  flex-direction: column;
  gap: 20px;
}

body.aam-services-body .aam-services-eyebrow {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 12px;
  color: #e31e26;
}

body.aam-services-body .aam-services-eyebrow span {
  display: inline-block;
  color: #e31e26;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
  transform: skewX(-10deg);
}

body.aam-services-body .aam-services-eyebrow p {
  margin: 0;
  color: #E31E26;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 7px;
  text-transform: uppercase;
}

body.aam-services-body .aam-services-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--aam-white);
  font-size: 50px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.4px;
}

body.aam-services-body .aam-services-hero h1 span {
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-services-body .aam-services-hero__copy > p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
}

body.aam-services-body .aam-services-main {
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
  /*background: #12081c;*/
}

body.aam-services-body .aam-services-packages {
  display: flex;
  /*max-width: 1200px;*/
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

body.aam-services-body .aam-services-package {
  position: relative;
  overflow: hidden;
  /*min-height: 564px;*/
  border-radius: 26px;
  background: linear-gradient(254deg, rgb(19 19 33 / 8%), rgba(19, 19, 33, 0.045)), url(assets/ser_bg.png) center / cover no-repeat;
  box-shadow: 0 2px 20px rgba(18, 8, 28, 0.06);
}

body.aam-services-body .aam-services-package::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

body.aam-services-body .aam-services-package--single .aam-services-package__bar {
  /*background: linear-gradient(163deg, rgba(178, 98, 55, 0.7) 9.44%, rgba(178, 98, 55, 0.35) 92.36%);*/
  background: linear-gradient(90deg, rgba(65, 32, 100, 0.35) 0%, rgba(156, 30, 83, 0.35) 100%);
  backdrop-filter: blur(17px);
}

body.aam-services-body .aam-services-package--growth {
  min-height: auto;
}

body.aam-services-body .aam-services-package--growth .aam-services-package__bar {
  /*background: linear-gradient(163deg, rgba(63, 126, 251, 0.7) 9.44%, rgba(63, 126, 251, 0.35) 92.36%);*/
  background: linear-gradient(90deg, #412064 0%, #9C1E53 100%);
  backdrop-filter: blur(17px);
}

body.aam-services-body .aam-services-package--embedded {
  min-height: auto;
}

body.aam-services-body .aam-services-package--embedded .aam-services-package__bar {
  /*background: linear-gradient(163deg, rgba(17, 165, 108, 0.6) 9.44%, rgba(17, 165, 108, 0.3) 92.36%);*/
  background: linear-gradient(90deg, rgba(65, 32, 100, 0.35) 0%, rgba(156, 30, 83, 0.35) 100%);
  backdrop-filter: blur(17px);
}

body.aam-services-body .aam-services-package__bar {
  position: relative;
  z-index: 1;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 8px 8px 0;
  padding: 8px 10px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, rgba(65, 32, 100, 0.35) 0%, rgba(156, 30, 83, 0.35) 100%);
  backdrop-filter: blur(17px);
}

body.aam-services-body .aam-services-package__bar span {
  width: min(250px, 28%);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

body.aam-services-body .aam-services-package__bar span:first-child {
  transform: rotate(180deg);
}

body.aam-services-body .aam-services-package__bar strong {
  color: var(--aam-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.aam-services-body .aam-services-package__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 550px minmax(0, 1fr);
  gap: 20px;
  min-height: 400px;
  padding: 28px;
}

body.aam-services-body .aam-services-package__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  min-height: 100%;
  padding-top: 0;
}

body.aam-services-body .aam-services-package__intro-main {
  display: flex;
  max-width: 450px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

body.aam-services-body .aam-services-package__intro-main > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.aam-services-body .aam-services-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

body.aam-services-body .aam-services-price div {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.aam-services-body .aam-services-price img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

body.aam-services-body .aam-services-price p,
body.aam-services-body .aam-services-package__intro-main > div > p {
  margin: 0;
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}
body.aam-services-body .aam-services-package__intro-main > div > p{
  opacity: 0.7;
}

body.aam-services-body .aam-services-price strong {
  color: var(--aam-white);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.4px;
}

body.aam-services-body .aam-services-price strong span {
  font-size: 18px;
  font-weight: 400;
}

body.aam-services-body .aam-services-package__intro-main > div > p {
  max-width: 450px;
  font-size: 14px;
  line-height: 23px;
}

body.aam-services-body .aam-services-package__included {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

body.aam-services-body .aam-services-package__included > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.aam-services-body .aam-services-package__included ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-services-body .aam-services-package__included li {
  position: relative;
  min-height: 24px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-package__included li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url(assets/ic_tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.aam-services-body .aam-services-package__contract {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-package__contract img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

body.aam-services-body .aam-services-package__cta {
  display: inline-flex;
  padding: 0px 20px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
/*   border: 1px solid #f51735; */
  border-radius: 12px;
  background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: uppercase;
}
/* body.aam-services-body .aam-services-package__cta::after {
    position: absolute;
    inset: auto auto -19px -7px;
    width: 50px;
    height: 39px;
    background: radial-gradient(circle, rgba(245, 23, 53, 0.7), rgba(255, 255, 255, 0));
    content: "";
    filter: blur(9px);
    transform: rotate(20deg);
} */

body.aam-services-body .aam-services-package__cta:hover {
	background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
}

body.aam-services-body .aam-services-addons {
  max-width: 1300px;
  margin: 100px auto 0;
}

body.aam-services-body .aam-services-addons > p {
  max-width: 1074px;
  margin: 20px 0 30px;
  color: var(--aam-white);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.3px;
}

body.aam-services-body .aam-services-table {
  width: min(1000px, 100%);
/*   margin: 0 auto; */
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(36 29 45);
  color: rgba(255, 255, 255, 0.9);
}

body.aam-services-body .aam-services-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4px;
  min-height: 64px;
  border-bottom: 1px solid #332b3e;
}

.aam-services-table .aam-services-table__head {
    min-height: 56px !important;
}

.aam-services-table .aam-services-table__head span {
    font-size:15px !important;
}


body.aam-services-body .aam-services-table span,
body.aam-services-body .aam-services-table strong {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 20px;
  border-radius: 14px 14px 0px 0px;
  /*background: rgba(255, 255, 255, 0.025);*/
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.3px;
}
/*body.aam-services-body .aam-services-table span{
  background: transparent;
}*/

body.aam-services-body .aam-services-table strong {
  justify-content: center;
  text-align: center;
}

body.aam-services-body .aam-services-table span{
  color: rgba(255, 255, 255, 0.70);
  font-family: "Instrument Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: 0.5px;
}

body.aam-services-body .aam-services-table__head span {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aam-white);
  opacity: 0.7;
}

body.aam-services-body .aam-services-table__head span:last-child {
  justify-content: center;
  text-align: center;
}
.aam-services-hero__copy .aam-eyebrow{
  margin-bottom: 0px;
}


/* ===== SMALL DEVICE ===== */
@media (min-width: 1000px) and (max-width: 1280px) {
	body.aam-services-body .aam-services-container {
		padding-right: 60px;
		padding-left: 60px;
		margin-top: -10px;
	}
	body.aam-services-body .aam-services-hero h1{
		font-size: 42px;
        line-height: 51px;
        letter-spacing: 0.42px;
		max-width:75%;
	}
	body.aam-services-body .aam-services-hero__copy > p{
		max-width: 85%;
        gap: 12px;
        font-size: 15px;
        line-height: 23px;
	}
	body.aam-services-body .aam-services-page > :not(.aam-services-page__bg){
		min-height:350px;
	}
/* 	body.aam-services-body .aam-services-page {
		min-height:360px;
		padding:130px 0 50px;
	} */
	.aam-services-hero__copy .aam-eyebrow p{
		font-size: 14px;
	}
	body.aam-services-body .aam-services-hero__copy {
		gap:16px;
	}
	body.aam-services-body .aam-services-package__body {
		grid-template-columns: 50% minmax(0, 1fr);
	}
	body.aam-services-body .aam-services-package__bar strong {
		font-size:16px;
	}
	body.aam-services-body .aam-services-price strong {
		font-size: 36px;
		line-height: 1;
	}
	body.aam-services-body .aam-services-package__included li {
      font-size: 14px;
      line-height: 21px;
	}
	body.aam-services-body .aam-services-package__included li::before{
		width:20px;
		height:20px;
	}
	body.aam-services-body .aam-services-package__contract {
		font-size:15px;
	}
	body.aam-services-body .aam-services-package__cta {
		font-size:14px;
	}
	body.aam-services-body .aam-services-package__included ul {
		gap:10px;
	}
	body.aam-services-body .aam-services-package__included > p {
		font-size:13px;
	}
	body.aam-services-body .aam-services-eyebrow p {
		font-size:14px;
	}
    body.aam-services-body .aam-services-addons > p {
      margin: 16px 0 30px;
	  max-width: 90%;
	}
	body.aam-services-body .aam-services-table {
    	width: min(1000px, 90%);
	}
	body.aam-services-body .aam-services-main{
		padding-bottom:90px;
	}
	body.aam-services-body .aam-services-addons {
		max-width: 1300px;
		margin: 80px auto 0;
	}
}


/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {

  body.aam-services-body .aam-services-hero {
    min-height: auto;
    padding: 140px 0 62px;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 82px;
  }

  body.aam-services-body .aam-services-package,
  body.aam-services-body .aam-services-package--growth,
  body.aam-services-body .aam-services-package--embedded {
    min-height: 0;
  }

  body.aam-services-body .aam-services-package__body {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 34px 24px 28px;
  }

  body.aam-services-body .aam-services-package__intro {
    width: 100%;
    max-width: none;
    gap: 30px;
    padding-top: 0;
  }
	.aam-services-hero__copy .aam-eyebrow p{
		font-size: 13px;
	}
  body.aam-services-body .aam-services-package__intro-main,
  body.aam-services-body .aam-services-package__intro-main > div > p {
    max-width: 640px;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 240px);
  }

  body.aam-services-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-services-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-services-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-services-body .aam-header__nav {
    display: none;
  }

  body.aam-services-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-services-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }
  .aam-eyebrow p {
	   font-size: 13px;
   }

  body.aam-services-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-services-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-services-body .aam-mobile-menu {
    display: block;
  }

  body.aam-services-body .aam-services-container {
	    padding-right: 42px;
        padding-left: 42px;
  }

  body.aam-services-body .aam-services-hero {
    padding: 110px 0 40px;
	min-height: 320px;
  }

  body.aam-services-body .aam-services-hero__copy {
    gap: 14px;
  }
  body.aam-what-body .aam-what-hero__grid {
    gap: 16px;
  }
  body.aam-services-body .aam-services-eyebrow {
    gap: 8px;
  }

  body.aam-services-body .aam-services-eyebrow p {
    font-size: 13px;
    letter-spacing: 4px;
  }

  body.aam-services-body .aam-services-eyebrow span {
    font-size: 20px;
  }

  body.aam-services-body .aam-services-hero h1 {
    font-size: 40px;
     line-height: 46px;
     letter-spacing: 0.1px;
	 max-width:620px;
  }

  body.aam-services-body .aam-services-hero__copy > p {
    gap: 10px;
        font-size: 14px;
        line-height: 22px;
	  max-width:90%;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 80px;
  }

  body.aam-services-body .aam-services-packages {
    gap: 24px;
  }

  body.aam-services-body .aam-services-package {
    border-radius: 20px;
  }

  body.aam-services-body .aam-services-package__bar {
    height: 44px;
    gap: 12px;
    margin: 6px 6px 0;
    border-radius: 16px 16px 0 0;
  }

  body.aam-services-body .aam-services-package__bar span {
    width: 22%;
  }

  body.aam-services-body .aam-services-package__bar strong {
    font-size: 14px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__body {
    gap: 24px;
    padding: 28px 16px 20px;
  }

  body.aam-services-body .aam-services-price strong {
    font-size: 34px;
  }

  body.aam-services-body .aam-services-price strong span,
  body.aam-services-body .aam-services-price p,
  body.aam-services-body .aam-services-package__included li,
  body.aam-services-body .aam-services-package__contract {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-package__included > p {
    font-size: 12px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__included ul {
    gap: 10px;
  }

  body.aam-services-body .aam-services-package__included li {
    padding-left: 26px;
  }

  body.aam-services-body .aam-services-package__included li::before {
    top: 1px;
  }

  body.aam-services-body .aam-services-package__cta {
    width: auto;
    height: 46px;
    font-size: 14px;
  }
  body.aam-services-body .aam-services-package__included li::before {
	  width:20px;
	  height:20px;
  }
	.aam-footer, .aam-footer-logos{
		padding-left:42px;
		padding-right:42px;
	}


  body.aam-services-body .aam-services-addons {
    margin-top: 70px;
  }

  body.aam-services-body .aam-services-addons > p {
    margin: 20px 0 28px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-table {
    overflow: hidden;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) 220px;
    min-height: 58px;
  }

  body.aam-services-body .aam-services-table span,
  body.aam-services-body .aam-services-table strong {
    padding: 0 12px;
    font-size: 14px;
    line-height: 17px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  body.aam-services-body .aam-services-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.aam-services-body .aam-services-hero {
    min-height: auto;
    padding: 140px 0 62px;
  }

  body.aam-services-body .aam-services-hero h1 {
    font-size: 44px;
    line-height: 50px;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 82px;
  }

  body.aam-services-body .aam-services-package,
  body.aam-services-body .aam-services-package--growth,
  body.aam-services-body .aam-services-package--embedded {
    min-height: 0;
  }
 .aam-services-hero__copy .aam-eyebrow p {
	 font-size: 13px;
        letter-spacing: 6px;
  }

  body.aam-services-body .aam-services-package__body {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 34px 24px 28px;
  }

  body.aam-services-body .aam-services-package__intro {
    width: 100%;
    max-width: none;
    gap: 30px;
    padding-top: 0;
  }

  body.aam-services-body .aam-services-package__intro-main,
  body.aam-services-body .aam-services-package__intro-main > div > p {
    max-width: 640px;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 240px);
  }

  body.aam-services-body {
    --aam-header-x: 16px;
    --aam-header-pad: 16px;
  }

  body.aam-services-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-services-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-services-body .aam-header__nav {
    display: none;
  }

  body.aam-services-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-services-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-services-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-services-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-services-body .aam-mobile-menu {
    display: block;
  }

  body.aam-services-body .aam-services-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-services-body .aam-services-hero {
    min-height: 350px;
        gap: 12px;
        padding: 110px 0px 40px;
  }

  body.aam-services-body .aam-services-hero__copy {
    gap: 12px;
  }
  body.aam-what-body .aam-what-hero__grid {
    gap: 16px;
  }
  body.aam-services-body .aam-services-eyebrow {
    gap: 8px;
  }

  body.aam-services-body .aam-services-eyebrow p {
    font-size: 12px;
    letter-spacing: 4px;
  }

  body.aam-services-body .aam-services-eyebrow span {
    font-size: 16px;
  }

  body.aam-services-body .aam-services-hero h1 {
    font-size: 36px;
    line-height: 39px;
    letter-spacing: 0.1px;
  }

  body.aam-services-body .aam-services-hero__copy > p {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-main {
    padding-bottom: 72px;
  }

  body.aam-services-body .aam-services-packages {
    gap: 24px;
  }

  body.aam-services-body .aam-services-package {
    border-radius: 20px;
  }

  body.aam-services-body .aam-services-package__bar {
    height: 44px;
    gap: 12px;
    margin: 6px 6px 0;
    border-radius: 16px 16px 0 0;
  }

  body.aam-services-body .aam-services-package__bar span {
    width: 22%;
  }

  body.aam-services-body .aam-services-package__bar strong {
    font-size: 14px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__body {
    gap: 24px;
    padding: 28px 16px 20px;
  }

  body.aam-services-body .aam-services-price strong {
    font-size: 34px;
  }

  body.aam-services-body .aam-services-price strong span,
  body.aam-services-body .aam-services-price p,
  body.aam-services-body .aam-services-package__included li,
  body.aam-services-body .aam-services-package__contract {
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-package__included > p {
    font-size: 12px;
    line-height: 20px;
  }

  body.aam-services-body .aam-services-package__included ul {
    gap: 10px;
  }

  body.aam-services-body .aam-services-package__included li {
    padding-left: 26px;
  }

  body.aam-services-body .aam-services-package__included li::before {
    top: 1px;
  }

  body.aam-services-body .aam-services-package__cta {
    width: 100%;
    height: 46px;
    font-size: 14px;
  }

  body.aam-services-body .aam-services-addons {
    margin-top: 70px;
  }

  body.aam-services-body .aam-services-addons > p {
    margin: 20px 0 28px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-services-body .aam-services-table {
    overflow: hidden;
  }

  body.aam-services-body .aam-services-table > div {
    grid-template-columns: minmax(0, 1fr) 116px;
    min-height: 58px;
  }

  body.aam-services-body .aam-services-table span,
  body.aam-services-body .aam-services-table strong {
    padding: 0 12px;
    font-size: 13px;
    line-height: 17px;
  }
}


/* =========================================================================
   24. WHAT WE DO PAGE  (body.aam-what-body)
   ========================================================================= */
body.aam-what-body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: #ffffff;
  background: #12081c;
  font-family: "Instrument Sans", Arial, sans-serif;
  --aam-what-pad: 70px;
  --aam-what-max: 1440px;
}

body.aam-what-body .aam-header__nav a[href="what-we-do.html"] {
  color: #e31e26;
}
body.aam-what-body .aam-eyebrow p{
	color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
	letter-spacing:10px;
}
	
body.aam-what-body .aam-header__nav a[href="what-we-do.html"]::after {
  transform: scaleX(1);
}

body.aam-what-body .aam-what-container {
  width: min(100%, var(--aam-what-max));
  margin: 0 auto;
  padding-right: var(--aam-what-pad);
  padding-left: var(--aam-what-pad);
}

body.aam-what-body .aam-what-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #12081c;
}

body.aam-what-body .aam-what-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 1;
  pointer-events: none;
}

body.aam-what-body .aam-what-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0.2), rgba(18, 8, 28, 0.46));
  pointer-events: none;
}

body.aam-what-body .aam-what-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  padding-top: 130px;
  padding-bottom: 50px;
}
.aam-what-hero__grid .aam-eyebrow{
  margin-bottom: 0px;
}

/*body.aam-what-body .aam-what-hero .aam-eyebrow {
  margin-bottom: 42px;
}*/

body.aam-what-body .aam-what-hero__grid {
  /*display: grid;
  grid-template-columns: minmax(0, 800px) minmax(280px, 468px);
  gap: clamp(42px, 6.95vw, 100px);
  align-items: end;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

body.aam-what-body .aam-what-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
     font-size: 50px;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: 0.42px;
}
body.aam-what-body .aam-what-hero h1 span{
  color: transparent;
  background: linear-gradient(131deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 95.12%);
  background-clip: text;
  -webkit-background-clip: text;
}
body.aam-what-body .aam-what-hero__copy {
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4px;
  width: 100%;
  max-width: 1100px;
  margin: 0;
}

body.aam-what-body .aam-what-hero__copy p {
  margin: 0;
}

body.aam-what-body .aam-what-services {
  position: relative;
  min-height: 100vh;
  background: #12081c;
}

body.aam-what-body .aam-what-services__pin {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #12081c;
}

body.aam-what-body .aam-what-services__cards {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(assets/contact_bg.png);
  background-position: top 510px center;
  background-size: cover;
}

body.aam-what-body .aam-service-panel {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  min-height: max(610px, 90vh);
  color: #ffffff;
  border-radius: 0;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 42px 92px rgba(0, 0, 0, 0.22);
}

body.aam-what-body .aam-service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

body.aam-what-body .aam-service-panel--dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(38, 95, 255, 0.18), transparent 38%),
    #12081c;
}

body.aam-what-body .aam-service-panel--red {
  background:
    radial-gradient(circle at 47% -12%, rgba(255, 255, 255, 0.26), transparent 20%),
    linear-gradient(115deg, #f91935 0%, #e31e26 38%, #a70c48 100%);
}

body.aam-what-body .aam-service-panel--light {
  color: #2b2436;
  background:
    radial-gradient(circle at 54% -10%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(105deg, #f7f7f8 0%, #dedee0 100%);
}

body.aam-what-body .aam-service-panel--blue {
  background:
    radial-gradient(circle at 58% 5%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(120deg, #2f85ff 0%, #2867e4 55%, #1552c7 100%);
}

body.aam-what-body .aam-service-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 626px) minmax(0, 626px);
  gap: 48px;
  align-items: start;
  width: min(100%, var(--aam-what-max));
  min-height: inherit;
  margin: 0 auto;
  padding: 70px var(--aam-what-pad);
}

body.aam-what-body .aam-service-panel__media {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
	aspect-ratio:16/9;
}

body.aam-what-body .aam-service-panel__media video{
	width:100%;
	height: 100%;
    object-fit: cover;
}
/* 
body.aam-what-body .aam-service-panel__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
} */

body.aam-what-body .aam-service-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 380px;
  padding-top: 2px;
}

body.aam-what-body .aam-service-panel__heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 24px;
}

body.aam-what-body .aam-service-panel__heading img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

body.aam-what-body .aam-service-panel h2 {
  margin: 4px 0 0;
  max-width: 540px;
  font-size: 28px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.2px;
}

body.aam-what-body .aam-service-panel p {
  max-width: auto;
  margin: 0 0 28px 80px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

body.aam-what-body .aam-service-panel--light p,
body.aam-what-body .aam-service-panel--light .aam-service-panel__includes li {
  color: rgba(43, 36, 54, 0.72);
}

body.aam-what-body .aam-service-panel--light .aam-service-panel__includes h3 {
  color: #12081C;
}

body.aam-what-body .aam-service-panel__includes {
  display: block;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 30px;
  margin-left: 80px;
  align-items: start;
}

body.aam-what-body .aam-service-panel__includes h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  text-transform: uppercase;
  opacity: .6;
}

body.aam-what-body .aam-service-panel__includes ul {
  display: block;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-what-body .aam-service-panel__includes li {
  position: relative;
  min-height: 24px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding-top: 12px;
}

body.aam-what-body .aam-service-panel__includes li::before {
  content: "";
  position: absolute;
  /*top: 0;*/
  bottom:0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: url("assets/ic_line_lightgrey.svg") center / contain no-repeat;
}

body.aam-what-body .aam-service-panel--red .aam-service-panel__includes li::before,
body.aam-what-body .aam-service-panel--blue .aam-service-panel__includes li::before {
  background-image: url("assets/ic_line_lightgrey.svg");
}

body.aam-what-body .aam-service-panel--light .aam-service-panel__includes li::before {
  background-image: url("assets/ic_line_darkgrey.svg");
}

body.aam-what-body .aam-service-panel__inner {
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: 28px;
}

body.aam-what-body .aam-service-panel__heading {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0;
}

body.aam-what-body .aam-service-panel__media {
  grid-column: 1;
  grid-row: 2;
}

body.aam-what-body .aam-service-panel__content {
  grid-column: 2;
  grid-row: 2;
  padding-top: 0;
}

body.aam-what-body .aam-service-panel h2 {
  max-width: 920px;
}

body.aam-what-body .aam-service-panel p,
body.aam-what-body .aam-service-panel__includes {
  margin-left: 0;
}

/* ===== WEB SMALL ===== */
@media (min-width: 1000px) and (max-width: 1280px) {
  body.aam-what-body {
    --aam-what-pad: 40px;
  }

  body.aam-what-body .aam-what-hero__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.aam-what-body .aam-eyebrow p{
   font-size:14px;
  }
	
  body.aam-what-body .aam-what-container{
	padding-left:60px;
	padding-right:60px;
	min-height: 350px;
	  padding-top: 120px;
  }

  body.aam-what-body .aam-what-hero h1 {
    max-width: 75%;
    font-size: 42px;
    line-height: 51px;
	  
  }
  body .aam-client-socials .aam-socials__link {
	  width: 42px;
	  height: 42px;
	  border-radius:12px;
	}
  body .aam-client-socials .aam-socials__link img {
    width: 22px;
    height: 22px;
  }

  body.aam-what-body .aam-what-hero__copy {
    max-width: 85%;
	gap: 12px;
	 font-size: 15px;
     line-height: 23px;

  }
	

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
  }

  body.aam-what-body .aam-service-panel h2 {
    font-size: 26px;
    line-height: 34px;
  }
	body.aam-what-body .aam-service-panel__heading img {
		width: 48px;
		height: 48px;
		object-fit: cover;
	}
	body.aam-what-body .aam-service-panel__includes li{
		font-size:17px;
	}
  body.aam-what-body .aam-service-panel__includes {
    grid-template-columns: 1fr;
    gap: 14px;
	  
  }

  body.aam-what-body .aam-service-panel__inner {
    row-gap: 20px;
   padding-right: 60px;
    padding-left: 60px;
  }
  body.aam-what-body .aam-service-panel__media {
    width: 100%;
    height: 310px;
	border-radius: 20px;
  }
   body.aam-what-body .aam-service-panel__heading {
	grid-template-columns: 50px minmax(0, 1fr);
  }
  body.aam-what-body .aam-service-panel p {
	  margin:0px 0px 18px 0px;
  }
	body.aam-what-body .aam-service-panel__includes h3 {
    padding-bottom: 2px;
	}
}

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {
  .aam-footer-logos__track img {
	width: 114px;
	height: auto;
	flex: 0 0 144px;
	object-fit: contain;
  }
  body.aam-what-body {
    --aam-what-pad: 40px;
  }

  body.aam-what-body .aam-what-hero__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.aam-what-body .aam-what-hero h1 {
    max-width: 760px;
    font-size: 54px;
    line-height: 60px;
  }

  body.aam-what-body .aam-what-hero__copy {
    max-width: 720px;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
  }

  body.aam-what-body .aam-service-panel h2 {
    font-size: 32px;
    line-height: 38px;
  }

  body.aam-what-body .aam-service-panel__includes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.aam-what-body .aam-service-panel__inner {
    row-gap: 22px;
  }

  body.aam-what-body {
    --aam-what-pad: 16px;
  }

  body.aam-what-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-what-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-what-body .aam-header__nav {
    display: none;
  }

  body.aam-what-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-what-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-what-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-what-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-what-body .aam-mobile-menu {
    display: block;
  }

  body.aam-what-body .aam-what-hero {
    min-height: auto;
  }

  body.aam-what-body .aam-what-hero__inner {
    min-height: 320px;
    padding-top: 110px;
    padding-bottom: 40px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
  }

  body.aam-what-body .aam-what-hero .aam-eyebrow {
    margin-bottom: 0px;
  }

  body.aam-what-body .aam-what-hero h1 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0.1px;
	  max-width:620px;
  }
	body.aam-what-body .aam-eyebrow p{
		font-size:13px;
	}
  body.aam-what-body .aam-what-hero__copy {
    gap: 8px;
    font-size: 14px;
    line-height: 22px;
	  max-width:90%;
  }
	body.aam-what-body.aam-eyebrow span {
		font-size: 20px;
	}

  body.aam-what-body .aam-what-services,
  body.aam-what-body .aam-what-services__pin,
  body.aam-what-body .aam-what-services__cards {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body.aam-what-body .aam-what-services {
    background: #12081c;
  }

  body.aam-what-body .aam-service-panel {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none;
    box-shadow: none;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: none;
    gap: 16px;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 42px;
	padding-right: var(--aam-header-x);
    padding-left: var(--aam-header-x);
  }

  .aam-footer__cta-block h2 {
	  margin:0px 0px 12px;
  }
  .aam-footer__cta-block p {
    font-size: 16px;
    line-height: 25px;
	  margin: 0 0 24px;
  }
	.aam-footer__button{
		height:48px;
		font-size:15px;
	}
  .aam-footer__field-wrap {
    padding-bottom: 12px;
 }
  .aam-eyebrow span {
    font-size: 20px;
  }
	.aam-footer__menu h3, .aam-footer__follow h3 {
		font-size:16px;
	}
	.aam-footer__follow {
		gap: 12px;
	}
  body.aam-what-body .aam-service-panel__media {
    order: 2;
    height: auto;
    border-radius: 20px;
  }

  body.aam-what-body .aam-service-panel__content {
    order: 1;
    min-height: 0;
  }

  body.aam-what-body .aam-service-panel__heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }

  body.aam-what-body .aam-service-panel__heading img {
    width: 46px;
    height: 46px;
  }

  body.aam-what-body .aam-service-panel h2 {
    margin-top: 2px;
    font-size: 22px;
    line-height: 28px;
  }

  body.aam-what-body .aam-service-panel p {
    margin: 0 0 20px 58px;
    font-size: 16px;
    line-height: 24px;
  }

  body.aam-what-body .aam-service-panel__includes {
    margin-left: 58px;
  }

  body.aam-what-body .aam-service-panel__includes ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.aam-what-body .aam-service-panel__includes h3 {
    font-size: 14px;
    line-height: 20px;
  }

  body.aam-what-body .aam-service-panel__includes li {
    font-size: 15px;
    line-height: 20px;
  }

	body .aam-client-socials .aam-socials__link {
	  width: 40px;
	  height: 40px;
	  border-radius:12px;
	}
  body .aam-client-socials .aam-socials__link img {
    width: 20px;
    height: 20px;
  }

  body.aam-what-body .aam-service-panel__heading,
  body.aam-what-body .aam-service-panel__media,
  body.aam-what-body .aam-service-panel__content {
    grid-column: auto;
    grid-row: auto;
	
  }
	body.aam-what-body .aam-service-panel__heading{
		align-items: center;
	}

  body.aam-what-body .aam-service-panel__heading {
    order: 1;
	margin: 0px;

  }

  body.aam-what-body .aam-service-panel__content {
    order: 2;
  }

  body.aam-what-body .aam-service-panel__media {
    order: 3;
	  margin-top:12px;
  }

  body.aam-what-body .aam-service-panel p,
  body.aam-what-body .aam-service-panel__includes {
    margin-left: 0px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  body.aam-what-body {
    --aam-what-pad: 40px;
  }
	
  body.aam-what-body .aam-what-hero__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.aam-what-body .aam-what-hero h1 {
    max-width: 760px;
    font-size: 54px;
    line-height: 60px;
  }

  body.aam-what-body .aam-what-hero__copy {
    max-width: 720px;
  }
	body.aam-what-body .aam-eyebrow p{
		font-size: 13px;
        letter-spacing: 6px;
	}
  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
  }

  body.aam-what-body .aam-service-panel h2 {
    font-size: 32px;
    line-height: 38px;
  }

  body.aam-what-body .aam-service-panel__includes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.aam-what-body .aam-service-panel__inner {
    row-gap: 22px;
  }

  body.aam-what-body {
    --aam-what-pad: 16px;
  }

  body.aam-what-body .aam-header {
    padding: 14px 16px;
  }

  body.aam-what-body .aam-header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  body.aam-what-body .aam-header__nav {
    display: none;
  }

  body.aam-what-body .aam-header__logo img {
    width: 76px;
  }

  body.aam-what-body .aam-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    justify-content: center;
  }

  body.aam-what-body .aam-header__cta span:last-child {
    display: none;
  }

  body.aam-what-body .aam-menu-toggle {
    /*display: inline-flex;*/
  }

  body.aam-what-body .aam-mobile-menu {
    display: block;
  }

  body.aam-what-body .aam-what-hero {
    min-height: auto;
  }

  body.aam-what-body .aam-what-hero__inner {
    min-height: 350px;
    padding-top: 110px;
    padding-bottom: 40px;
  }

  body.aam-what-body .aam-what-hero .aam-eyebrow {
    margin-bottom: 0px;
  }

  body.aam-what-body .aam-what-hero h1 {
    font-size: 36px;
    line-height: 39px;
    letter-spacing: 0.1px;
  }

  body.aam-what-body .aam-what-hero__copy {
    gap: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-what-body .aam-what-services,
  body.aam-what-body .aam-what-services__pin,
  body.aam-what-body .aam-what-services__cards {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body.aam-what-body .aam-what-services {
    background: #12081c;
  }

  body.aam-what-body .aam-service-panel {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none;
    box-shadow: none;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  body.aam-what-body .aam-service-panel__media {
    order: 2;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 16px;
  }

  body.aam-what-body .aam-service-panel__content {
    order: 1;
    min-height: 0;
  }
	body.aam-what-body .aam-service-panel__includes li::before{
		width:18px;
		height:18px;
	}

  body.aam-what-body .aam-service-panel__heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  body.aam-what-body .aam-service-panel__heading img {
    width: 46px;
    height: 46px;
  }

  body.aam-what-body .aam-service-panel h2 {
    margin-top: 2px;
    font-size: 22px;
    line-height: 28px;
  }

  body.aam-what-body .aam-service-panel p {
    margin: 0 0 20px 58px;
    font-size: 14px;
    line-height: 22px;
  }

  body.aam-what-body .aam-service-panel__includes {
    margin-left: 58px;
  }

  body.aam-what-body .aam-service-panel__includes ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.aam-what-body .aam-service-panel__includes h3 {
    font-size: 13px;
    line-height: 20px;
  }

  body.aam-what-body .aam-service-panel__includes li {
    font-size: 15px;
    line-height: 20px;
	  padding-left: 22px;
  }

  body.aam-what-body .aam-service-panel__inner {
    grid-template-rows: none;
  }

  body.aam-what-body .aam-service-panel__heading,
  body.aam-what-body .aam-service-panel__media,
  body.aam-what-body .aam-service-panel__content {
    grid-column: auto;
    grid-row: auto;
  }

  body.aam-what-body .aam-service-panel__heading {
    order: 1;
  }

  body.aam-what-body .aam-service-panel__content {
    order: 2;
  }

  body.aam-what-body .aam-service-panel__media {
    order: 3;
  }

  body.aam-what-body .aam-service-panel p,
  body.aam-what-body .aam-service-panel__includes {
    margin-left: 0px;
  }
.aam-footer__social .aam-socials__link img {
    width: 20px;
    height: 20px;
	}

}




/* =========================================================================
   25. JOBS PAGE  (body.aam-jobs-body)
   ========================================================================= */
body.aam-jobs-body .aam-jobs-page {
  position: relative;
  overflow: hidden;
  background: var(--aam-bg);
  color: var(--aam-white);
}

body.aam-jobs-body .aam-jobs-page__bg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  min-height: 1180px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

body.aam-jobs-body .aam-jobs-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

body.aam-jobs-body .aam-jobs-hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 50px;
  min-height: 420px;
}

body.aam-jobs-body .aam-jobs-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

body.aam-jobs-body .aam-jobs-hero__copy {
  display: flex;
  width: 100%;
  max-width: 1100px;
  flex-direction: column;
  align-self: flex-start;
  gap: 20px;
}

body.aam-jobs-body .aam-eyebrow p {
  color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 10px;
}

body.aam-jobs-body .aam-jobs-hero__copy h1 {
  max-width: 800px;
  margin: 0;
  color: var(--aam-white);
  font-size: 50px;
   font-weight: 500;
   line-height: 58px;
   letter-spacing: 0.42px;
}

body.aam-jobs-body .aam-jobs-hero__copy h1 span {
  color: transparent;
  background: linear-gradient(130deg, #f51735 9.443%, rgba(234, 21, 89, 0.7) 92.365%);
  background-clip: text;
  -webkit-background-clip: text;
}

body.aam-jobs-body .aam-jobs-hero__copy > p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-weight:500;
}

body.aam-jobs-body .aam-jobs-search {
  display: flex;
  width: min(700px, 100%);
  min-height: 54px;
  align-items: center;
  overflow: hidden;
/*   border: 1px solid var(--aam-hot-red); */
  border-radius: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(10, 4, 18, 0.18);
  backdrop-filter: blur(5px);
}

body.aam-jobs-body .aam-jobs-search__field {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

body.aam-jobs-body .aam-jobs-search__field span,
body.aam-jobs-body .aam-job-detail__header svg {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: rgba(18, 8, 28, 0.42);
}

body.aam-jobs-body .aam-jobs-search__field svg,
body.aam-jobs-body .aam-job-detail__header svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

body.aam-jobs-body .aam-jobs-search__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(18, 8, 28, 0.85);
  font-size: 16px;
  line-height: 24px;
  outline: none;
}

body.aam-jobs-body .aam-jobs-search__field input::placeholder {
  color: rgba(18, 8, 28, 0.5);
}

body.aam-jobs-body .aam-jobs-search__divider {
  width: 1px;
  height: 24px;
  flex: 0 0 1px;
  background: rgba(18, 8, 28, 0.16);
}

body.aam-jobs-body .aam-jobs-search button {
  display: inline-flex;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aam-hot-red);
  border-radius: 9px;
  padding: 0 24px;
  background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.78) 92.36%);
  color: var(--aam-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
}

body.aam-jobs-body .aam-jobs-search button.aam-jobs-search__clear {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(18, 8, 28, 0.42);
}

body.aam-jobs-body .aam-jobs-search button.aam-jobs-search__clear[hidden] {
  display: none;
}

body.aam-jobs-body .aam-jobs-search__clear svg {
  width: 18px;
  height: 18px;
}

body.aam-jobs-body .aam-jobs-search__clear:hover {
  color: var(--aam-hot-red);
}

body.aam-jobs-body .aam-jobs-count {
  width: 100%;
  margin: -10px 0 0;
  color: var(--aam-white);
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-jobs-listing {
  position: relative;
  padding-bottom: 100px;
}

body.aam-jobs-body .aam-jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body.aam-jobs-body .aam-job-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 20px;
  padding: 20px 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), background 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}

body.aam-jobs-body .aam-job-card:hover,
body.aam-jobs-body .aam-job-card:focus-visible {
  border-color: rgba(245, 23, 53, 0.62);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(10, 4, 18, 0.28);
  transform: translateY(-3px);
  outline: none;
}

body.aam-jobs-body .aam-job-card.is-hidden {
  display: none !important;
}

body.aam-jobs-body .aam-job-card img {
  width: 44px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

body.aam-jobs-body .aam-job-card strong {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.75px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-card span {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

body.aam-jobs-body .aam-job-card em {
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-card i {
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.28);
}

body.aam-jobs-body .aam-job-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.3px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.aam-jobs-body .aam-job-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-style: italic;
  line-height: 21px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-jobs-more {
  position: relative;
  left: 50%;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  border: 1px solid rgba(245, 23, 53, 0.68);
  border-radius: 12px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aam-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transform: translateX(-50%);
  cursor: pointer;
  backdrop-filter: blur(15px);
}

body.aam-jobs-body .aam-jobs-more svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.aam-jobs-body.aam-job-detail-open {
  overflow: hidden;
}

body.aam-jobs-body .aam-job-detail {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--aam-ease);
}

body.aam-jobs-body .aam-job-detail.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.aam-jobs-body .aam-job-detail__panel {
  position: relative;
  display: flex;
  width: min(1320px, calc(100vw - 80px));
  height: min(840px, calc(100vh - 80px));
  flex-direction: column;
  overflow: hidden;
  background: #12081c;
  color: var(--aam-white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.42s var(--aam-ease);
}

body.aam-jobs-body .aam-job-detail.is-open .aam-job-detail__panel {
  transform: translateY(0) scale(1);
      border-radius: 28px;
}

body.aam-jobs-body .aam-job-detail__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body.aam-jobs-body .aam-job-detail__header {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  gap: 24px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.1);
}

body.aam-jobs-body .aam-job-detail__header > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  width:90%;
}

body.aam-jobs-body .aam-job-detail__header h2 {
  margin: 0;
  color: var(--aam-white);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1.6px;
}

body.aam-jobs-body .aam-job-detail__header p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

body.aam-jobs-body .aam-job-detail__header p span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-detail__header p i {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.24);
}

body.aam-jobs-body .aam-job-detail__header svg {
  color: rgba(255, 255, 255, 0.72);
}

body.aam-jobs-body .aam-job-detail__header > em {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  line-height: 21px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-detail__close {
  position: absolute;
  top: 20px;
  right: 30px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

body.aam-jobs-body .aam-job-detail__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.aam-jobs-body .aam-job-detail__body {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 28px 50px 150px;
  scrollbar-width: none;
}

body.aam-jobs-body .aam-job-detail__body::-webkit-scrollbar {
  display: none;
}

body.aam-jobs-body .aam-job-detail__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

body.aam-jobs-body .aam-job-detail__intro p,
body.aam-jobs-body .aam-job-detail__columns p,
body.aam-jobs-body .aam-job-detail__columns li {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-detail__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

body.aam-jobs-body .aam-job-detail__columns section {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

body.aam-jobs-body .aam-job-detail__columns section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 20px;
}

body.aam-jobs-body .aam-job-detail__columns h3 {
  margin: 0;
  color: var(--aam-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.5px;
}

body.aam-jobs-body .aam-job-detail__columns ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aam-jobs-body .aam-job-detail__columns li {
  position: relative;
  padding-left: 30px;
}

body.aam-jobs-body .aam-job-detail__columns li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  content: "✓";
  font-size: 11px;
  line-height: 1;
}

body.aam-jobs-body .aam-job-detail__apply {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body.aam-jobs-body .aam-job-detail__apply::before {
  position: fixed;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: 120px;
  background: linear-gradient(180deg, rgba(18, 8, 28, 0), rgba(18, 8, 28, 0.88));
  content: "";
  pointer-events: none;
}

body.aam-jobs-body .aam-job-detail__apply button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--aam-hot-red);
  border-radius: 12px;
  padding: 0 32px;
  background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

body.aam-jobs-body .aam-job-application {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(450px, calc(100% - 40px));
/*   height: min(565px, calc(100% - 70px)); */
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.75);
  color: #12081c;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.32s var(--aam-ease), transform 0.32s var(--aam-ease);
  backdrop-filter: blur(35px);
}

body.aam-jobs-body .aam-job-application.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.aam-jobs-body .aam-job-application__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}

body.aam-jobs-body .aam-job-application__content,
body.aam-jobs-body .aam-job-application__actions {
  position: relative;
  z-index: 1;
}

body.aam-jobs-body .aam-job-application__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.aam-jobs-body .aam-job-application h3 {
  margin: 0;
  color: #12081c;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-application__field {
  position: relative;
  display: flex;
  height: 46px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #f51735;
  border-radius: 12px;
  background: rgba(18, 8, 28, 0.08);
  backdrop-filter: blur(15px);
}

body.aam-jobs-body .aam-job-application__field span,
body.aam-jobs-body .aam-job-application__upload label > span {
  position: absolute;
  left: 16px;
  color: rgba(18, 8, 28, 0.6);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.3px;
  pointer-events: none;
}

body.aam-jobs-body .aam-job-application__field input,
body.aam-jobs-body .aam-job-application__field textarea {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  color: #12081c;
  font: inherit;
}

body.aam-jobs-body .aam-job-application__field:focus-within span,
body.aam-jobs-body .aam-job-application__field:has(input:not(:placeholder-shown)) span,
body.aam-jobs-body .aam-job-application__field:has(textarea:not(:placeholder-shown)) span {
  opacity: 0;
}

body.aam-jobs-body .aam-job-application__field--message {
  height: 120px;
  align-items: flex-start;
}

body.aam-jobs-body .aam-job-application__field--message span {
  top: 14px;
}

body.aam-jobs-body .aam-job-application__field--message textarea {
  min-height: 100%;
  resize: none;
  padding-top: 14px;
}

body.aam-jobs-body .aam-job-application__upload {
  display: flex;
  gap: 10px;
/*   background: white; */
}

body.aam-jobs-body .aam-job-application__upload label {
  position: relative;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 6px 0 16px;
  background: rgba(18, 8, 28, 0.08);
  cursor: pointer;
  backdrop-filter: blur(15px);
}

body.aam-jobs-body .aam-job-application__upload label > span {
  position: relative;
  z-index: 1;
  left: auto;
  display: block;
  min-width: 0;
  max-width: calc(100% - 118px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aam-jobs-body .aam-job-application__upload input {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

body.aam-jobs-body .aam-job-application__upload strong {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-left: auto;
  height: 40px;
  align-items: center;
  justify-content: center;
/*   border: 1px solid #f51735; */
  border-radius: 9px;
  padding: 0 21px;
/*   background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%); */
	background: linear-gradient(109deg, #12081c 9.44%, #322e53 92.36%);
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

body.aam-jobs-body .aam-job-application__upload p {
  margin: 0;
  color: rgba(18, 8, 28, 0.45);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-application__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

body.aam-jobs-body .aam-job-application__actions button {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 24px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

body.aam-jobs-body .aam-job-application__cancel {
  /*border: 1.5px solid #f51735;*/
  background: rgba(18, 8, 28, 0.08);
  color: #12081c;
}

body.aam-jobs-body .aam-job-application__submit {
  border: 1px solid #f51735;
  background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
}


/* ===== WEB SMALL ===== */
@media (min-width: 1000px) and (max-width: 1280px) {
  body.aam-jobs-body .aam-jobs-container {
	    padding-right: 60px;
        padding-left: 60px;
  }
	body.aam-jobs-body .aam-eyebrow p{
		font-size:14px;
		font-weight:600;
	}
	body.aam-jobs-body .aam-jobs-hero__copy h1{
		font-size: 42px;
        line-height: 51px;
        letter-spacing: 0.42px;
		max-width: 75%;
	}
	body.aam-jobs-body .aam-jobs-hero__copy{
		 gap: 16px;
	}
	body.aam-jobs-body .aam-jobs-hero{
		min-height:350px;
		padding-top: 120px;
		        padding-bottom: 28px;
	}
  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.aam-jobs-body .aam-jobs-listing {
	  padding-bottom:80px;
  }

	body.aam-jobs-body .aam-jobs-hero__copy > p{
		max-width: 85%;
        gap: 12px;
        font-size: 15px;
        line-height: 23px;
	}
	body.aam-jobs-body .aam-job-card{
		gap:10px;
	}
	body.aam-jobs-body .aam-jobs-count{
		font-size:16px;
	}
    body.aam-jobs-body .aam-job-detail__panel {
/*     width: min(1120px, calc(100vw - 56px)); */
	  width:100%;
    }
	
	
    body.aam-jobs-body .aam-job-detail__header{
		min-height:110px;
		gap: 20px;
    	padding: 28px 30px;
	}
	body.aam-jobs-body .aam-job-detail__header h2{
		font-size:32px;
	}
	body.aam-jobs-body .aam-job-detail__header p span {
		font-size:15px;
		gap:15px;
		line-height: 20px;
	}	
	body.aam-jobs-body .aam-job-detail__header > div{
		gap:14px;
	}
	body.aam-jobs-body .aam-job-detail__body {
		padding:30px 30px 150px;
	}
	body.aam-jobs-body .aam-job-detail__intro {
		margin-bottom:24px;
	}
	body.aam-jobs-body .aam-job-detail__columns h3 {
		font-size:18px;
	}
	body.aam-jobs-body .aam-job-detail__columns section {
		gap:10px;
	}
}

/* ===== TABLET ===== */
@media (min-width: 600px) and (max-width: 1000px) {
  body.aam-jobs-body .aam-jobs-container {
    padding-right: clamp(42px, 5vw, 64px);
    padding-left: clamp(42px, 5vw, 64px);
  }

  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: min(1120px, calc(100vw - 56px));
  }

  body.aam-jobs-body .aam-jobs-container {
        padding-right: var(--aam-header-x);
        padding-left: var(--aam-header-x);
  }

  body.aam-jobs-body .aam-jobs-hero {
    padding-top: 110px;
    padding-bottom: 40px;
	min-height: 320px;
  }

  body.aam-jobs-body .aam-jobs-hero__copy h1 {
    max-width: 620px;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0.1px;
  }
	body.aam-jobs-body .aam-jobs-hero__copy > p{
		font-size: 14px;
        line-height: 22px;
	    max-width: 90%;
	}
	body.aam-jobs-body .aam-jobs-hero__copy{
		gap:14px;
	}
  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aam-jobs-body .aam-job-detail {
    padding: 24px;
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: calc(100vw - 48px);
    height: calc(100vh - 48px);
  }

  body.aam-jobs-body .aam-job-detail__header {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 28px 24px;
	gap:16px;
  }
  body.aam-jobs-body .aam-job-detail__intro {
	  margin-bottom:20px;
  }
  body.aam-jobs-body .aam-job-detail__columns h3 {
		font-size:18px;
  }
  body.aam-jobs-body .aam-job-detail__header h2 {
    font-size: 30px;
    letter-spacing: 0.8px;
  }
  body.aam-jobs-body .aam-job-detail__header p span {
		font-size:14px;
  }
  body.aam-jobs-body .aam-job-detail__header > div {
		gap:12px;
  }
  body.aam-jobs-body .aam-job-detail__body {
    padding: 28px 28px 136px;
  }

  body.aam-jobs-body .aam-job-detail__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.aam-jobs-body .aam-job-detail__columns section + section {
    border-left: 0;
    padding-left: 0;
  }

  body.aam-jobs-body .aam-job-detail__apply {
    right: 28px;
    bottom: 20px;
  }

  body.aam-jobs-body .aam-job-application {
    right: 28px;
    bottom: 20px;
    width: min(450px, calc(100% - 56px));
  }
	body.aam-jobs-body .aam-eyebrow p{
		font-size:13px;
	}
	body.aam-jobs-body .aam-jobs-listing {
      padding-bottom: 80px;
	}
	body.aam-jobs-body .aam-jobs-count {
		font-size:16px;
	}
	body.aam-jobs-body .aam-job-card {
		font-size:18px;
	}
	header.aam-about-team-v2__heading .aam-eyebrow{
		margin-bottom:0px;
	}
	body.aam-jobs-body .aam-job-detail__columns section {
    	gap: 10px;
	}
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  body.aam-jobs-body .aam-jobs-container {
    padding-right: clamp(42px, 5vw, 64px);
    padding-left: clamp(42px, 5vw, 64px);
  }

  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: min(1120px, calc(100vw - 56px));
  }

  body.aam-jobs-body .aam-jobs-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  body.aam-jobs-body .aam-jobs-hero {
    padding-top: 118px;
    padding-bottom: 54px;
  }

  body.aam-jobs-body .aam-jobs-hero__copy h1 {
    max-width: 680px;
    font-size: 42px;
  }

  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aam-jobs-body .aam-job-detail {
    padding: 24px;
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: calc(100vw - 48px);
    height: calc(100vh - 48px);
  }

  body.aam-jobs-body .aam-job-detail__header {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 28px 24px;
  }

  body.aam-jobs-body .aam-job-detail__header h2 {
    font-size: 34px;
    letter-spacing: 0.8px;
  }

  body.aam-jobs-body .aam-job-detail__body {
    padding: 26px 28px 136px;
  }

  body.aam-jobs-body .aam-job-detail__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.aam-jobs-body .aam-job-detail__columns section + section {
    border-left: 0;
    padding-left: 0;
  }

  body.aam-jobs-body .aam-job-detail__apply {
    right: 28px;
    bottom: 20px;
  }

  body.aam-jobs-body .aam-job-application {
    right: 28px;
    bottom: 20px;
    width: min(450px, calc(100% - 56px));
  }

  body.aam-jobs-body .aam-jobs-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.aam-jobs-body .aam-jobs-hero {
     min-height: 350px;
     padding-top: 110px;
     padding-bottom: 40px;
  }

  body.aam-jobs-body .aam-jobs-hero__inner {
    gap: 24px;
  }
	body.aam-jobs-body .aam-jobs-hero__copy{
		gap:12px;
	}
  body.aam-jobs-body .aam-jobs-hero__copy .aam-eyebrow p {
    font-size: 13px;
    letter-spacing: 6px;;
  }

  body.aam-jobs-body .aam-jobs-hero__copy h1 {
     font-size: 36px;
     line-height: 39px;
     letter-spacing: 0.1px;
  }
	body.aam-jobs-body .aam-jobs-hero__copy > p{
		font-size: 14px;
        line-height: 22px;
	}

  body.aam-jobs-body .aam-jobs-search {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
  }

  body.aam-jobs-body .aam-jobs-search__field {
    min-height: 42px;
  }

  body.aam-jobs-body .aam-jobs-search__divider {
    width: 100%;
    height: 1px;
  }

  body.aam-jobs-body .aam-jobs-search button {
    width: 100%;
  }

  body.aam-jobs-body .aam-jobs-grid {
    grid-template-columns: 1fr;
  }

  body.aam-jobs-body .aam-jobs-listing {
    padding-bottom: 72px;
  }

  body.aam-jobs-body .aam-job-card {
    min-height: 168px;
	gap:8px;
	      border-radius: 16px;
    padding: 16px 16px 16px;
  }
  body.aam-jobs-body .aam-jobs-count {
	  font-size:16px;
  }

  body.aam-jobs-body .aam-job-card p {
	  min-height:auto;
  }
  body.aam-jobs-body .aam-job-detail {
    padding: 24px 14px 24px 14px;
  }

  body.aam-jobs-body .aam-job-detail__panel {
    width: calc(100vw - 28px);
    height: calc(95vh - 28px);
  }
	body.aam-jobs-body .aam-job-card strong{
		font-size:18px;
	}
  body.aam-jobs-body .aam-job-detail__header {
    padding: 28px 16px 18px;
	gap: 12px;
  }
  body.aam-jobs-body .aam-job-detail.is-open .aam-job-detail__panel {
    border-radius: 22px;
  }
  body.aam-jobs-body .aam-job-detail__header h2 {
    font-size: 22px;
  }

  body.aam-jobs-body .aam-job-detail__header p {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.aam-jobs-body .aam-job-detail__header p i {
    display: none;
  }

  body.aam-jobs-body .aam-job-detail__header > em {
    margin-top: 0;
  }

  body.aam-jobs-body .aam-job-detail__close {
    top: 16px;
    right: 16px;
  }

  body.aam-jobs-body .aam-job-detail__body {
    padding: 22px 16px 128px;
  }
  body.aam-jobs-body .aam-job-detail__columns h3 {
	  font-size:17px;
	  line-height: 22px;
  }

  body.aam-jobs-body .aam-job-detail__apply {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  body.aam-jobs-body .aam-job-detail__apply button {
    width: 100%;
  }

  body.aam-jobs-body .aam-job-application {
    right: 8px;
    bottom: 22px;
    width: calc(100% - 16px);
/*     height: min(550px, calc(100% - 28px)); */
	  height:auto;
    padding: 16px 14px;
	  border-radius:20px
  }

  body.aam-jobs-body .aam-job-application h3 {
    font-size: 18px;
  }

  body.aam-jobs-body .aam-job-application__actions {
    gap: 10px;
  }

  body.aam-jobs-body .aam-job-application__actions button {
    flex: 1;
    padding: 0 12px;
    font-size: 14px;
	min-height: auto;
  }
  header.aam-about-team-v2__heading .aam-eyebrow{
	margin-bottom:0px;
  }
  body.aam-jobs-body .aam-job-application__content {
	gap:14px;
	  padding:0;
  }
  body.aam-jobs-body .aam-job-application .wpcf7-form p {
	margin-bottom:4px;
  }
	
}


/* =========================================================================
   26. SMALL SHARED OVERRIDES
   ========================================================================= */
/* body .aam-client-socials .aam-socials__link {
  display: grid;
  width: 46px;
  height: 46px;
} */
÷


@media (max-width: 600px) {
  body .aam-client-socials .aam-socials__link {
    width: 2.5rem;
    height: 2.5rem;
  }
  body .aam-client-socials .aam-socials__link img {
    width: 22px;
    height: 22px;
    opacity: 0.8;
  }
  body.aam-about-body .aam-team-detail__header{
    display: block;
  }
  .set_two{
    padding-top:20px;
  }
  .aam-socials__link{
    width:36px;
    height: 36px;
	border-radius: 9px;
  }
  .set_two a img{
    width: 20px;
    height: 20px;
  }
  .aam-eyebrow p{
    font-size: 12px;
  }
  .aam-case-study__header, .aam-how-work__heading, .aam-how-work__track, .aam-case-study__grid{
      padding: 0 16px;
    }
  .aam-case-study__grid{
    gap:24px;
  }
  .aam-case-study__row{
    gap:30px;
  }
  .aam-service-card__main, .aam-service-card__term,
  .aam-service-card__bottom, .aam-service-card--growth .aam-service-card__main,
  .aam-service-card--growth .aam-service-card__term{
    padding: 0 16px;
  }
  .aam-service-card__bottom, .aam-service-card--growth .aam-service-card__bottom{
    padding:16px 16px
  }
  .aam-testimonials__eyebrow{
    margin-top:0px;
	padding-top:0px
  }
  .aam-testimonial-card__profile h3 {
    font-size: 16px;
  }
  .aam-testimonials__side, .aam-testimonials__wide, .aam-build__right{
    gap:20px;
  }
  .aam-eyebrow{
    align-items:start;
  }
  body.aam-what-body .aam-service-panel p, body.aam-what-body .aam-service-panel__includes{
    margin-left:0px;
  }
  body.aam-what-body .aam-service-panel h2 {
    margin-top: 2px;
    font-size: 20px;
    line-height: 24px;
  }
  body.aam-what-body .aam-service-panel__heading img {
      width: 36px;
      height: 36px;
  }
  body.aam-what-body .aam-service-panel__heading {
    gap:4px;
  }
  body.aam-about-body .aam-about-hero__copy h1{
    margin:16px 0 0;
  }
  body.aam-contact-body .aam-contact-hero{
    gap: 16px;
  }
  body.aam-about-body .aam-about-highlighter h2 span{
    font-size: clamp(7.5rem, 18vw, 6rem);
  }
  body.aam-about-body .aam-team-detail__media img {
    width: 80%;
  }
  body.aam-about-body .aam-about-highlighter__pin p{
    margin-top:12px;
  }
  .aam-about-team__heading .aam-eyebrow, header.aam-about-testimonials__header .aam-eyebrow {
    margin-bottom:0px;
  }
  body.aam-about-body .aam-about-team__heading h2, body.aam-about-body .aam-about-testimonials__header h2{
    font-size: 1.625rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }
  body.aam-about-body .aam-about-quote-card__profile strong{
    font-size: 16px;
  }
  .aam-client-hero-content .aam-eyebrow {
    margin-bottom: 12px;
	height:auto;
  }
  .aam-client-hero-content {
	  top: auto;
	  right: 1rem;
	  left: 1rem;
	  width: auto;
	  bottom:13%;
	  text-align: center;
  }
  .aam-client-intro__media{
	  opacity:0.8 !important;
  }
  .aam-case-nav__brand {
	  width:100%;
  }
  .aam-case-nav__brand span {
	  font-size:14px;
  }
  .aam-case-nav__brand strong {
	  font-size: 16px;
  }
  .aam-client-hero-copy {
	position: static;
	width: 100%;
	max-width: 620px;
	margin-top: 14px;
  }
  .aam-footer__menu h3, .aam-footer__follow h3 {
	font-size: 16px;
  }
	.aam-footer__follow {
		gap: 4px;
	}
	.aam-services__headline {
		margin-top:0px;
	}
}

body.aam-jobs-body .aam-job-application .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

body.aam-jobs-body .aam-job-application .wpcf7-form p {
  margin: 0;
  margin-top: -6px;
  margin-bottom: 20px;
}

body.aam-jobs-body .aam-job-application .aam-cf-input {
  display: flex;
  width: 100%;
  height: 46px;
  align-items: center;
/*   border: 1px solid #f51735; */
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(18, 8, 28, 0.08);
  backdrop-filter: blur(15px);
  color: #12081c;
  font: inherit;
  outline: 0;
  position:relative;
}
body.aam-jobs-body .aam-job-application .aam-cf-input:before{
	content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
body.aam-jobs-body .aam-job-application .aam-cf-input::placeholder {
  color: rgba(18, 8, 28, 0.6);
  font-size: 15px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-application textarea.aam-cf-textarea {
  height: 120px;
  padding-top: 14px;
  resize: none;
  background: rgba(18, 8, 28, 0.08);
}
.aam-job-application__upload{
	background: rgba(18, 8, 28, 0.08);
}

/* File upload — match .aam-job-application__upload */
body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv {
  position: relative;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 6px 0 16px;
  background: rgba(18, 8, 28, 0.08);
  backdrop-filter: blur(15px);
}

body.aam-jobs-body .aam-job-application .aam-cf-file {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv::before {
  content: "Add your CV";
  position: relative;
  z-index: 1;
  color: rgba(18, 8, 28, 0.6);
  font-size: 15px;
  letter-spacing: 0.3px;
}

body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv::after {
  content: "Browse";
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-left: auto;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f51735;
  border-radius: 9px;
  padding: 0 21px;
  background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  pointer-events: none;
}
@media (max-width: 600px) {
    body.aam-jobs-body .aam-job-application .wpcf7-form p {
        margin-bottom: 4px;
    }
}

/* Submit — match .aam-job-application__submit */
body.aam-jobs-body .aam-job-application .aam-cf-submit {
  display: inline-flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f51735;
  border-radius: 12px;
  padding: 0 24px;
  background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
  color: var(--aam-white);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* WP Job Manager Custom Form Styling */
.aam-jm-apply-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.aam-jm-field input[type="text"],
.aam-jm-field input[type="email"],
.aam-jm-field textarea {
    display: flex;
    width: 100%;
    border-radius: 12px;
    padding: 14px 18px;
    background: rgba(18, 8, 28, 0.08);
    backdrop-filter: blur(15px);
    color: #12081c;
    font-family: inherit;
    font-size: 15px;
    border: none;
    outline: 0;
    box-sizing: border-box;
}

.aam-jm-field textarea {
    height: 120px;
    resize: none;
}

.aam-jm-field input::placeholder,
.aam-jm-field textarea::placeholder {
    color: rgba(18, 8, 28, 0.6);
    font-size: 15px;
}

.aam-jm-file-display {
    position: relative;
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 0 6px 0 16px;
    background: rgba(18, 8, 28, 0.08);
    backdrop-filter: blur(15px);
    box-sizing: border-box;
	cursor: pointer;
}

.aam-jm-file-display input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.aam-jm-file-display .aam-job-application__upload-text {
	position: relative;
    z-index: 1;
    color: rgba(18, 8, 28, 0.6);
    font-size: 15px;
    letter-spacing: 0.3px;
	transition: color 0.2s ease;
}

.aam-jm-file-display.has-file .aam-job-application__upload-text,
.cv-upload-wrap.has-file .aam-job-application__upload-text {
    color: #12081c !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.aam-jm-browse-btn {
    position: relative;
	z-index: 1;
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 0 21px;
    background: linear-gradient(109deg, #12081c 9.44%, #322e53 92.36%);
    color: var(--aam-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
	border: none;
    pointer-events: none;
}

/* .aam-jm-browse-btn input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
} */

.aam-jm-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 10px;
}

.aam-jm-btn-cancel {
	display: inline-flex;
    height: 48px;
/*     padding: 0 28px;
    border-radius: 14px;
    background: rgba(18, 8, 28, 0.12); */
	align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    padding: 0 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: rgba(18, 8, 28, 0.08);
    color: #12081c;
/*     font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px; */
    border: none;
/*     cursor: pointer; */
    transition: background 0.2s ease;
}

.aam-jm-btn-cancel:hover {
    background: rgba(18, 8, 28, 0.15);
}

.aam-jm-btn-submit {
	display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    padding: 0 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid #f51735;
    background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.aam-jm-btn-submit:hover {
    opacity: 0.9;
}

.aam-jm-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .aam-jm-actions {
        gap: 10px;
    }
    .aam-jm-actions button {
        flex: 1;
        padding: 0 12px;
        font-size: 14px;
    }
}

/* WP Job Manager Form Per-Field Validation Error Messages (Matches CF7 .wpcf7-not-valid-tip) */
.aam-jm-field.is-invalid input,
.aam-jm-field.is-invalid textarea,
.aam-jm-field.is-invalid .aam-jm-file-display {
    border-color: #f51735 !important;
}
.aam-field-error {
    display: block;
    margin-top: 6px;
    color: #f51735;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.2px;
}
/* WP Job Manager Bottom Feedback Box (Success & Failure) */
.aam-job-application__feedback-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    text-align: center;
}
.aam-job-application__feedback-msg .aam-feedback-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.aam-job-application__feedback-msg .aam-feedback-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
}
.aam-job-application__feedback-msg.is-success .aam-feedback-text {
    color: #16a34a;
}
.aam-job-application__feedback-msg.is-error .aam-feedback-text {
    color: #f51735;
}



/* Hide CF7's default validation-tip/response spacing so layout stays tight */
body.aam-jobs-body .aam-job-application .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #f51735;
  font-size: 12px;
}

/* CF7 Validation Error Tips */
.aam-job-application .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    color: #f51735;
    font-size: 12px;
    line-height: 16px;
}

/* Allow upload box to let CV validation tip overflow outside the 54px upload box */
/* .aam-job-application__upload,
.aam-job-application .wpcf7-form-control-wrap[data-name="cv"] {
    position: relative;
    overflow: visible !important;
} */
/* When CV validation tip is relocated after the upload note, use natural document flow */
.aam-job-application .aam-job-application__upload-note + .wpcf7-not-valid-tip {
    position: static !important;
    display: block;
    margin-top: 0px !important;
    color: #f51735 !important;
    font-size: 12px !important;
    line-height: 0px !important;
}

/* Position CV validation error tip under the upload note text */
/* .aam-job-application .wpcf7-form-control-wrap[data-name="cv"] .wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% + 32px);
    left: 0;
    width: 100%;
    margin: 0;
    color: #f51735;
    font-size: 12px;
    line-height: 16px;
    white-space: normal;
    z-index: 10;
    pointer-events: none;
} */

.aam-job-application .aam-job-application__upload-note,
.aam-job-application p.aam-job-application__upload-note,
.aam-job-application__upload-note {
    margin-bottom: 0px !important;
}

/* Custom Job Form Success Message Styling (Under Buttons) */
.aam-job-application .wpcf7-response-output {
    display: none !important;
}

.aam-job-application__success-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #21A316;
    align-self: flex-start;
	margin: 0 auto;
}

.aam-job-application__success-msg[hidden] {
    display: none !important;
}

.aam-job-application__success-msg .aam-success-icon {
    width: 16.85px;
    height: 16.85px;
    min-width: 16.85px;
    min-height: 16.85px;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
}

.aam-job-application__success-msg .aam-success-text {
    font-size: 14px;
    font-weight: 500;
    color: #21A316;
    line-height: 18px;
}




/* =========================================================================
   LARGE SCREENS (2560px+) FLUID CLAMP TYPOGRAPHY - HOME BANNER
   ========================================================================= */
@media (min-width: 1920px) {
    /* Header Container & Layout Scaling */
    .aam-header__inner {
        height: clamp(60px, 3.2vw, 84px);
        grid-template-columns: clamp(200px, 12vw, 300px) minmax(0, 1fr) clamp(200px, 12vw, 300px);
        height: clamp(60px, 3.2vw, 120px);
        grid-template-columns: clamp(200px, 12vw, 450px) minmax(0, 1fr) clamp(200px, 12vw, 450px);
    }
    /* Header Logo Scaling */
    .aam-header__logo img {
        width: clamp(90px, 4.8vw, 130px);
        width: clamp(90px, 4.8vw, 190px);
    }
    /* Header Navigation Links & Gap Scaling (existing min: 16px font / 38px gap) */
    .aam-header__nav {
        gap: clamp(38px, 2.2vw, 56px);
        gap: clamp(38px, 2vw, 84px);
    }
    .aam-header__nav a {
        font-size: clamp(16px, 0.85vw, 22px);
        font-size: clamp(16px, 0.85vw, 36px);
    }
    /* Header Contact CTA Button Scaling (existing min: 16px font / 48px height) */
    .aam-header__cta {
        font-size: clamp(16px, 0.85vw, 22px);
        height: clamp(48px, 2.5vw, 66px);
        padding: 0 clamp(24px, 1.4vw, 36px);
        font-size: clamp(16px, 0.85vw, 36px);
        height: clamp(48px, 2.4vw, 92px);
        padding: 0 clamp(24px, 1.4vw, 54px);
    }
    .aam-header__phone svg {
        width: clamp(16px, 0.85vw, 22px);
        height: clamp(16px, 0.85vw, 22px);
        width: clamp(16px, 0.85vw, 36px);
        height: clamp(16px, 0.85vw, 36px);
    }
    /* Hero container width & bottom position scaling for large screens */
	.aam-hero-content,
    .aam-client-hero-content {
		left: clamp(70px, 9vw, 360px);
        width: min(clamp(650px, 42vw, 1150px), calc(100vw - 2 * var(--aam-header-x)));
        width: min(clamp(650px, 42vw, 1600px), calc(100vw - 2 * var(--aam-header-x)));
        bottom: calc(clamp(10%, 28vw, 18%) - 120px);
    }
    /* Eyebrow text scaling */
    .aam-client-hero-content .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 38px);
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-client-hero-content .aam-eyebrow p {
        font-size: clamp(17px, 1vw, 26px);
        font-size: clamp(17px, 1vw, 38px);
    }
    /* Hero headline scaling (existing min: 58px, scaling to ~97px at 2560px) */
    /* Hero headline scaling (existing min: 58px, scaling up smoothly to 160px on 3.5k+) */
    .aam-hero-content h1,
    .aam-client-hero-content h1 {
        font-size: clamp(58px, 3.8vw, 110px);
        font-size: clamp(58px, 3.8vw, 160px);
    }
    /* Hero copy scaling (existing min: 18px / 25px, scaling to ~28px at 2560px) */
    /* Hero copy scaling (existing min: 18px / 25px, scaling up smoothly to 42px on 3.5k+) */
    .aam-client-hero-copy {
        max-width: clamp(620px, 36vw, 980px);
        max-width: clamp(620px, 36vw, 1400px);
    }
    .aam-client-hero-copy p {
        font-size: clamp(18px, 1.1vw, 28px);
        line-height: clamp(25px, 1.5vw, 38px);
        font-size: clamp(18px, 1.1vw, 42px);
        line-height: clamp(25px, 1.5vw, 58px);
    }
    /* Hero action buttons scaling (existing min: 16px / 50px height) */
    .aam-client-hero-content .aam-hero-content__actions .aam-button {
        font-size: clamp(16px, 0.9vw, 22px);
        height: clamp(50px, 2.7vw, 72px);
        padding: 0 clamp(20px, 1.5vw, 36px);
        font-size: clamp(16px, 0.9vw, 34px);
        height: clamp(50px, 2.7vw, 104px);
        padding: 0 clamp(20px, 1.5vw, 56px);
    }
	
	/* Floating Social Media Icons Scaling (existing min: 46px button / 24px icon) */
    .aam-client-socials {
        gap: clamp(14px, 0.8vw, 32px);
    }
    .aam-socials__link {
        width: clamp(46px, 2.4vw, 92px);
        height: clamp(46px, 2.4vw, 92px);
        border-radius: clamp(14px, 0.75vw, 28px);
    }
    .aam-socials__link svg,
    .aam-client-socials .aam-socials__link img {
        width: clamp(24px, 1.3vw, 50px);
        height: clamp(24px, 1.3vw, 50px);
    }
	
	/* Client Slider & Stats Data Section Scaling (2560px - 3840px+) */
    .aam-results {
        max-width: clamp(1560px, 88vw, 3200px);
        column-gap: clamp(24px, 1.5vw, 60px);
        row-gap: clamp(10px, 0.8vw, 30px);
        padding-bottom: clamp(30px, 2.5vw, 90px);
    }
    /* Stat Numbers & Suffixes */
    .aam-stat strong {
        font-size: clamp(60px, 3.8vw, 140px);
        gap: clamp(8px, 0.5vw, 20px);
    }
    .aam-stat__suffix {
        font-size: clamp(50px, 3vw, 115px);
        padding-bottom: clamp(5px, 0.3vw, 14px);
    }
    /* Stat Labels & Details */
    .aam-stat>span {
        font-size: clamp(16px, 0.95vw, 32px);
        line-height: clamp(23px, 1.3vw, 44px);
        margin-top: clamp(6px, 0.4vw, 16px);
    }
    .aam-stat em {
        font-size: clamp(14px, 0.8vw, 26px);
        margin-top: clamp(4px, 0.25vw, 12px);
    }
    /* Client Case Nav Brand Box & Logo */
    .aam-case-nav__brand {
        width: clamp(300px, 16vw, 600px);
        min-height: clamp(80px, 4vw, 160px);
        gap: clamp(6px, 0.4vw, 16px);
    }
    .aam-case-nav__brand img {
        width: clamp(150px, 8.5vw, 320px);
        max-width: clamp(150px, 8.5vw, 320px);
    }
    .aam-case-nav__brand span {
        font-size: clamp(16px, 0.85vw, 30px);
        letter-spacing: clamp(0.84px, 0.05vw, 2px);
    }
    .aam-case-nav__brand strong {
        font-size: clamp(18px, 1vw, 34px);
        letter-spacing: clamp(1.2px, 0.07vw, 2.5px);
    }
    /* Slider Navigation Arrows */
    .aam-case-nav__button {
        width: clamp(52px, 2.8vw, 104px);
        height: clamp(52px, 2.8vw, 104px);
    }
    .aam-case-nav__button img {
        width: clamp(46px, 2.4vw, 92px);
        height: clamp(46px, 2.4vw, 92px);
    }
	
	/* =========================================================================
       WHAT WE DO / CAPABILITIES SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-capabilities__intro {
        max-width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        gap: clamp(56px, 3.5vw, 140px);
    }
    .aam-capabilities__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-capabilities__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-capabilities__copy h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
        max-width: clamp(700px, 48vw, 1800px);
    }
    .aam-capabilities__copy p {
        font-size: clamp(18px, 1.1vw, 42px);
        line-height: clamp(26px, 1.5vw, 58px);
        max-width: clamp(690px, 45vw, 1700px);
    }
    /* Capability Stack Cards (Home & What We Do Page) */
    .aam-capability-panel {
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        grid-template-columns: minmax(260px, calc(23vw - 128px)) minmax(320px, 1fr) clamp(380px, 25vw, 950px);
        gap: clamp(58px, 3.5vw, 140px);
        padding-top: clamp(40px, 2.5vw, 90px);
        padding-bottom: clamp(40px, 2.5vw, 90px);
    }
    .aam-capability-panel__number {
        font-size: clamp(100px, 6.5vw, 240px);
    }
    .aam-capability-panel__content {
        max-width: clamp(590px, 40vw, 1500px);
    }
    .aam-capability-panel__content h3 {
        font-size: clamp(34px, 2.4vw, 90px);
        line-height: clamp(40px, 2.8vw, 106px);
    }
    .aam-capability-panel__content p {
        font-size: clamp(18px, 1.1vw, 42px);
        line-height: clamp(26px, 1.5vw, 58px);
        max-width: clamp(590px, 40vw, 1500px);
    }
    .aam-capability-panel .aam-button {
        font-size: clamp(16px, 0.9vw, 34px);
        height: clamp(50px, 2.7vw, 104px);
        padding: 0 clamp(20px, 1.5vw, 56px);
    }
    .aam-capability-panel__media {
        width: clamp(380px, 25vw, 950px);
        border-radius: clamp(18px, 1.2vw, 44px);
    }
	
	/* What We Do Standalone Page Hero & Service Panels */
    body.aam-what-body .aam-what-container {
        width: 100%;
        max-width: 100%;
		margin: 0;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }

    body.aam-what-body .aam-what-hero__inner {
        padding-top: clamp(130px, 8vw, 320px);
        padding-bottom: clamp(50px, 3.5vw, 140px);
    }
    body.aam-what-body .aam-what-hero__grid {
        gap: clamp(22px, 1.4vw, 56px);
    }
	body.aam-what-body .aam-eyebrow span {
		font-size: clamp(24px, 1.4vw, 54px);
	}
	body.aam-what-body .aam-eyebrow p {
		font-size: clamp(15px, 0.95vw, 36px);
	}
    body.aam-what-body .aam-what-hero h1 {
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        max-width: clamp(800px, 50vw, 1800px);
    }

    body.aam-what-body .aam-what-hero__copy {
        gap: clamp(16px, 1vw, 38px);
        max-width: clamp(1080px, 68vw, 2400px);
    }
	
	body.aam-what-body .aam-what-hero__copy p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
    }

    body.aam-what-body .aam-service-panel__inner {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        padding-top: clamp(70px, 4.5vw, 180px);
        padding-bottom: clamp(70px, 4.5vw, 180px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(48px, 3vw, 120px);
    }

    body.aam-what-body .aam-service-panel__heading {
        grid-template-columns: clamp(54px, 3.4vw, 130px) minmax(0, 1fr);
        gap: clamp(8px, 0.6vw, 24px);
        margin-bottom: clamp(24px, 1.5vw, 56px);
    }

    body.aam-what-body .aam-service-panel__heading img {
        width: clamp(54px, 3.4vw, 130px);
        height: clamp(54px, 3.4vw, 130px);
    }

    body.aam-what-body .aam-service-panel h2 {
        font-size: clamp(28px, 2.2vw, 84px);
        line-height: clamp(38px, 2.8vw, 106px);
        max-width: clamp(540px, 36vw, 1400px);
    }

    body.aam-what-body .aam-service-panel p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(28px, 1.7vw, 66px);
        margin-bottom: clamp(28px, 1.8vw, 70px);
    }

    body.aam-what-body .aam-service-panel__includes h3 {
        font-size: clamp(14px, 0.9vw, 34px);
        line-height: clamp(22px, 1.4vw, 52px);
    }

    body.aam-what-body .aam-service-panel__includes li {
        font-size: clamp(18px, 1.15vw, 44px);
        line-height: clamp(22px, 1.5vw, 58px);
        padding-left: clamp(28px, 1.8vw, 70px);
        padding-top: clamp(12px, 0.8vw, 30px);
    }

    body.aam-what-body .aam-service-panel__includes li::before {
        width: clamp(24px, 1.4vw, 54px);
        height: clamp(24px, 1.4vw, 54px);
    }

    body.aam-what-body .aam-service-panel__media {
        width: 100%;
        border-radius: clamp(22px, 1.4vw, 54px);
    }
	
	/* =========================================================================
       HOW WE WORK SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-how-work__pin {
        min-height: clamp(840px, 50vw, 1800px);
        padding-top: clamp(100px, 6vw, 220px);
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    .aam-how-work__heading {
        max-width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    .aam-how-work__heading-inner {
        max-width: clamp(55%, 55vw, 1600px);
        gap: clamp(24px, 1.5vw, 56px);
    }
    .aam-how-work__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-how-work__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-how-work__heading h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
        max-width: clamp(700px, 48vw, 1800px);
    }
    .aam-how-work__viewport {
        margin-top: clamp(50px, 3vw, 120px);
    }
    .aam-how-work__track {
        gap: clamp(70px, 4vw, 160px);
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    /* Work Card Group & Cards */
    .aam-work-card-group {
        width: clamp(1300px, 72vw, 2800px);
        flex: 0 0 clamp(1300px, 72vw, 2800px);
        gap: clamp(40px, 2.5vw, 100px);
    }
    .aam-work-card-group__number {
        width: clamp(300px, 16vw, 600px);
        max-width: clamp(300px, 16vw, 600px);
        font-size: clamp(28px, 1.8vw, 68px);
    }
    .aam-work-card {
        width: clamp(580px, 32vw, 1250px);
        flex: 0 0 clamp(580px, 32vw, 1250px);
        gap: clamp(30px, 1.8vw, 68px);
        border-radius: clamp(24px, 1.4vw, 54px);
        padding: clamp(18px, 1.1vw, 42px) clamp(18px, 1.1vw, 42px) clamp(24px, 1.4vw, 54px);
    }
    .aam-work-card__image {
        border-radius: clamp(20px, 1.2vw, 44px);
    }
    .aam-work-card h3 {
        font-size: clamp(24px, 1.5vw, 58px);
        line-height: clamp(28px, 1.8vw, 70px);
    }
    .aam-work-card-group__copy {
        width: clamp(300px, 18vw, 700px);
        max-width: clamp(300px, 18vw, 700px);
    }
    .aam-work-card-group__copy p {
        font-size: clamp(18px, 1.1vw, 42px);
        line-height: clamp(25px, 1.5vw, 58px);
    }
	
	/* =========================================================================
       SUBSCRIBER SERVICES PACKAGE SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-services__pin {
        padding-top: clamp(92px, 5.5vw, 200px);
        padding-bottom: clamp(92px, 5.5vw, 200px);
    }
	.aam-services {
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    .aam-services__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-services__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-services__headline {
        width: clamp(834px, 56vw, 2600px);
        max-width: clamp(834px, 56vw, 2600px);
    }
    .aam-services__headline h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
        width: 100%;
        max-width: 100%;
    }
    .aam-services__ghost {
        font-size: clamp(200px, 14vw, 520px);
        line-height: clamp(160px, 11vw, 420px);
    }
    .aam-services__cards {
/*         width: clamp(1274px, 72vw, 2800px); */
		width: 100%;
        max-width: 100%;
        gap: clamp(28px, 1.8vw, 70px);
        margin-top: clamp(40px, 2.5vw, 100px);
    }
    /* Side Pricing Cards (Signal & Embedded) */
    .aam-service-card {
        height: clamp(465px, 28vw, 1050px);
        border-radius: clamp(24px, 1.4vw, 54px);
    }
    /* Middle Growth Pricing Card */
    .aam-service-card--growth {
/*         width: clamp(405px, 24vw, 920px); */
		flex: 1 1 0;
        width: auto;
        height: clamp(510px, 31vw, 1150px);
/*         flex: 0 0 clamp(405px, 24vw, 920px); */
        border-radius: clamp(26px, 1.5vw, 58px);
    }
    /* Pricing Card Header Badges */
    .aam-service-card__tag span {
        height: clamp(48px, 2.8vw, 104px);
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(24px, 1.4vw, 52px);
        border-radius: clamp(19px, 1.1vw, 42px) clamp(19px, 1.1vw, 42px) 0 0;
    }
    .aam-service-card--growth .aam-service-card__tag span {
        height: clamp(52px, 3.1vw, 116px);
        font-size: clamp(18px, 1.05vw, 40px);
        line-height: clamp(27px, 1.5vw, 56px);
        border-radius: clamp(21px, 1.2vw, 46px) clamp(21px, 1.2vw, 46px) 0 0;
    }
    .aam-service-card--embedded .aam-service-card__tag span {
        border-radius: clamp(20px, 1.15vw, 44px) clamp(20px, 1.15vw, 44px) 0 0;
    }
    /* Pricing Card Inner Layout & Padding */
    .aam-service-card__main {
        gap: clamp(12px, 0.8vw, 28px);
        padding-left: clamp(20px, 1.3vw, 48px);
        padding-right: clamp(20px, 1.3vw, 48px);
    }
    .aam-service-card--growth .aam-service-card__main {
        gap: clamp(13px, 0.85vw, 30px);
        padding-left: clamp(22px, 1.4vw, 52px);
        padding-right: clamp(22px, 1.4vw, 52px);
    }
    .aam-service-card__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
        line-height: clamp(24px, 1.4vw, 52px);
    }
    .aam-service-card--growth .aam-service-card__eyebrow p {
        font-size: clamp(17.3px, 1.05vw, 40px);
        line-height: clamp(26px, 1.5vw, 56px);
    }
    .aam-service-card__price {
        font-size: clamp(40px, 2.6vw, 98px);
    }
    .aam-service-card--growth .aam-service-card__price {
        font-size: clamp(43px, 2.8vw, 106px);
    }
    .aam-service-card__price span {
        font-size: clamp(18px, 1.1vw, 42px);
    }
    .aam-service-card--growth .aam-service-card__price span {
        font-size: clamp(19.5px, 1.2vw, 46px);
    }
    .aam-service-card__description {
        font-size: clamp(14px, 0.85vw, 32px);
        line-height: clamp(22px, 1.3vw, 48px);
    }
    .aam-service-card--growth .aam-service-card__description {
        font-size: clamp(15.5px, 0.95vw, 35px);
        line-height: clamp(22px, 1.3vw, 48px);
    }
    /* Contract Term Line & Icon */
    .aam-service-card__term {
        gap: clamp(8px, 0.5vw, 20px);
        padding-left: clamp(20px, 1.3vw, 48px);
        padding-right: clamp(20px, 1.3vw, 48px);
    }
    .aam-service-card--growth .aam-service-card__term {
        gap: clamp(8.7px, 0.55vw, 22px);
        padding-left: clamp(22px, 1.4vw, 52px);
        padding-right: clamp(22px, 1.4vw, 52px);
    }
    .aam-service-card__term img {
        width: clamp(24px, 1.4vw, 54px);
        height: clamp(24px, 1.4vw, 54px);
    }
    .aam-service-card--growth .aam-service-card__term img {
        width: clamp(26px, 1.5vw, 58px);
        height: clamp(26px, 1.5vw, 58px);
    }
    .aam-service-card__term p {
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(24px, 1.4vw, 52px);
    }
    .aam-service-card--growth .aam-service-card__term p {
        font-size: clamp(17.3px, 1vw, 38px);
        line-height: clamp(26px, 1.5vw, 56px);
    }
    /* Card Bottom CTA Button */
    .aam-service-card__bottom {
        padding: clamp(20px, 1.3vw, 48px);
    }
    .aam-service-card--growth .aam-service-card__bottom {
        padding: clamp(22px, 1.4vw, 52px);
    }
    .aam-service-card__button {
        height: clamp(48px, 2.8vw, 104px);
        font-size: clamp(16px, 0.95vw, 36px);
        border-radius: clamp(12px, 0.75vw, 28px);
    }
    .aam-service-card--growth .aam-service-card__button {
        height: clamp(52px, 3.1vw, 116px);
        font-size: clamp(17.3px, 1vw, 38px);
        border-radius: clamp(14px, 0.85vw, 32px);
    }
	
	/* =========================================================================
       WE BUILD IT TOO SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-build__pin {
        padding-top: clamp(100px, 6vw, 220px);
        padding-bottom: clamp(100px, 6vw, 220px);
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    .aam-build__container {
/*         max-width: clamp(1300px, 72vw, 2800px); */
		width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 0.90fr) minmax(430px, 1fr);
        gap: clamp(40px, 2.5vw, 100px);
        min-height: clamp(712px, 42vw, 1500px);
    }
    .aam-build__right {
        height: clamp(712px, 42vw, 1500px);
    }
	
	.aam-build__left {
        gap: clamp(50px, 3.2vw, 120px);
    }
	
    .aam-build__content {
        gap: clamp(30px, 2vw, 75px);
        padding-top: clamp(40px, 2.5vw, 90px);
    }
	
    .aam-build__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-build__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-build__heading h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
    }
    .aam-build__description > p {
        font-size: clamp(18px, 1.1vw, 42px);
        line-height: clamp(27px, 1.5vw, 60px);
        max-width: clamp(620px, 42vw, 1400px);
    }
    .aam-build__callout {
        padding: clamp(8px, 0.5vw, 18px) clamp(16px, 1vw, 38px);
        border-left-width: clamp(3px, 0.2vw, 8px);
    }
    .aam-build__callout p {
        font-size: clamp(20px, 1.2vw, 46px);
        line-height: clamp(25px, 1.5vw, 58px);
    }
    .aam-build__cta {
        font-size: clamp(16px, 0.9vw, 34px);
        height: clamp(50px, 2.7vw, 104px);
        padding: 0 clamp(20px, 1.5vw, 56px);
    }
    /* Stacked Cards */
    .aam-build-card {
        min-height: clamp(150px, 9vw, 320px);
        border-radius: clamp(20px, 1.2vw, 44px);
        padding: clamp(24px, 1.4vw, 54px) clamp(24px, 1.4vw, 54px) clamp(24px, 1.4vw, 54px) 0;
        gap: clamp(12px, 0.8vw, 28px);
    }
    .aam-build-card__heading {
        height: clamp(56px, 3.4vw, 130px);
        padding: clamp(10px, 0.6vw, 24px) clamp(20px, 1.2vw, 48px);
    }
    .aam-build-card__heading h3 {
        font-size: clamp(20px, 1.3vw, 48px);
        line-height: clamp(25px, 1.5vw, 58px);
    }
    .aam-build-card__icon {
/*         width: clamp(24px, 1.8vw, 68px);
        height: clamp(24px, 1.8vw, 68px); */
		width: clamp(54px, 3.2vw, 130px);
        height: clamp(54px, 3.2vw, 130px);
        top: clamp(20px, 1.2vw, 48px);
        right: clamp(20px, 1.2vw, 48px);
    }
    .aam-build-card__body > p {
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(24px, 1.4vw, 52px);
        padding-left: clamp(20px, 1.2vw, 48px);
        padding-right: clamp(20px, 1.2vw, 48px);
    }
	
	/* =========================================================================
       CASE STUDY SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-case-study {
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    .aam-case-study__inner {
        max-width: 100%;
    }
    .aam-case-study__header {
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        min-height: clamp(144px, 8.5vw, 320px);
        gap: clamp(40px, 2.5vw, 100px);
    }
    .aam-case-study__heading-group {
        grid-template-columns: clamp(254px, 16vw, 600px) minmax(0, 1fr);
        gap: clamp(60px, 4vw, 160px);
    }
    .aam-case-study__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-case-study__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-case-study__heading-group h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
        max-width: clamp(700px, 48vw, 1800px);
    }
    .aam-case-study__cta {
        height: clamp(48px, 2.8vw, 104px);
        padding: 0 clamp(24px, 1.4vw, 54px);
        font-size: clamp(16px, 0.9vw, 34px);
        border-radius: clamp(12px, 0.75vw, 28px);
    }
    .aam-case-study__cta span {
        width: clamp(24px, 1.4vw, 54px);
        height: clamp(24px, 1.4vw, 54px);
        font-size: clamp(20px, 1.2vw, 44px);
    }
    /* Case Study Grid & Cards */
    .aam-case-study__grid {
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        column-gap: clamp(40px, 2.5vw, 100px);
        row-gap: clamp(60px, 3.8vw, 150px);
        margin-top: clamp(50px, 3vw, 120px);
    }
    .aam-case-study__row {
        column-gap: clamp(40px, 2.5vw, 100px);
    }
    .aam-case-card--left .aam-case-card__media,
    .aam-case-card--right .aam-case-card__media {
        height: clamp(470px, 28vw, 1050px);
        border-radius: clamp(28px, 1.6vw, 60px);
    }
    .aam-case-card__content {
        margin-top: clamp(20px, 1.2vw, 48px);
        gap: clamp(6px, 0.4vw, 16px);
    }
    .aam-case-card__content h3 {
        font-size: clamp(22px, 1.4vw, 52px);
        line-height: clamp(26px, 1.6vw, 62px);
    }
    .aam-case-card__content p {
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(23px, 1.4vw, 52px);
    }
	
	/* =========================================================================
       OUR AWARDS SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-awards {
        padding-top: clamp(100px, 6vw, 220px);
        padding-bottom: clamp(120px, 7vw, 260px);
    }
    .aam-awards__inner {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    .aam-awards__header {
        width: 100%;
        max-width: clamp(700px, 48vw, 1800px);
    }
    .aam-awards__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-awards__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
    }
    .aam-awards__header h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
    }
    .aam-awards__marquee {
        margin-top: clamp(42px, 2.8vw, 104px);
        padding-top: clamp(18px, 1.2vw, 44px);
        padding-bottom: clamp(34px, 2.2vw, 84px);
    }
    .aam-awards__group {
        gap: clamp(24px, 1.6vw, 64px);
        padding-right: clamp(24px, 1.6vw, 64px);
    }
    .aam-award-card {
        width: clamp(220px, 14vw, 520px);
        height: clamp(340px, 21vw, 800px);
        flex: 0 0 clamp(220px, 14vw, 520px);
        border-radius: clamp(16px, 1.1vw, 42px);
        padding: clamp(20px, 1.3vw, 48px);
    }
    .aam-award-card__top p {
        font-size: clamp(36px, 2.3vw, 86px);
    }
    .aam-award-card__top img {
        width: clamp(80px, 5.2vw, 195px);
        height: clamp(100px, 6.5vw, 245px);
        flex: 0 0 clamp(80px, 5.2vw, 195px);
    }
    .aam-award-card__copy {
        gap: clamp(6px, 0.4vw, 16px);
    }
    .aam-award-card__copy h3,
    .aam-award-card__copy p {
        font-size: clamp(18px, 1.15vw, 44px);
        line-height: clamp(24px, 1.5vw, 58px);
    }
	
	/* =========================================================================
       TESTIMONIALS SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-testimonials {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        padding-top: clamp(100px, 6vw, 220px);
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    .aam-testimonials__header {
        grid-template-columns: clamp(190px, 12vw, 440px) minmax(0, 1fr);
        gap: clamp(58px, 3.8vw, 150px);
        margin-bottom: clamp(52px, 3.2vw, 120px);
    }
    .aam-testimonials__eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    .aam-testimonials__eyebrow p {
        font-size: clamp(16px, 1vw, 38px);
        line-height: clamp(22px, 1.4vw, 52px);
    }
    .aam-testimonials__header h2 {
        font-size: clamp(40px, 2.8vw, 110px);
        line-height: clamp(46px, 3.2vw, 126px);
        max-width: clamp(700px, 53vw, 1800px);
    }
    .aam-testimonials__grid {
        grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.45fr);
        gap: clamp(32px, 2vw, 80px);
    }
    .aam-testimonials__side,
    .aam-testimonials__wide {
        gap: clamp(32px, 2vw, 80px);
    }
    .aam-testimonial-card {
        min-height: clamp(250px, 16vw, 600px);
        gap: clamp(28px, 1.8vw, 70px);
        padding: clamp(20px, 1.3vw, 48px) clamp(24px, 1.5vw, 56px);
        border-radius: clamp(28px, 1.6vw, 60px) clamp(28px, 1.6vw, 60px) clamp(28px, 1.6vw, 60px) 0;
    }
    .aam-testimonial-card--large {
        min-height: clamp(260px, 17vw, 640px);
    }
    .aam-testimonial-card__quote {
        font-size: clamp(17px, 1.1vw, 42px);
        line-height: clamp(26px, 1.6vw, 62px);
    }
    .aam-testimonial-card__profile {
        gap: clamp(16px, 1vw, 38px);
    }
    .aam-testimonial-card__avatar {
        width: clamp(56px, 3.6vw, 135px);
        height: clamp(56px, 3.6vw, 135px);
        font-size: clamp(14px, 0.9vw, 34px);
    }
    .aam-testimonial-card__profile h3 {
        font-size: clamp(18px, 1.15vw, 44px);
        line-height: clamp(25px, 1.5vw, 58px);
    }
    .aam-testimonial-card__profile p {
        font-size: clamp(14px, 0.9vw, 34px);
        line-height: clamp(20px, 1.3vw, 48px);
    }
    .aam-testimonial-video {
        padding: clamp(20px, 1.3vw, 48px);
        border-radius: clamp(24px, 1.5vw, 58px);
    }
	
	/* =========================================================================
       FOOTER SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    .aam-footer-logos {
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        padding-bottom: clamp(60px, 3.8vw, 150px);
    }
    .aam-footer-logos__track img {
        width: clamp(174px, 11vw, 390px);
        height: clamp(78px, 5vw, 175px);
        flex: 0 0 clamp(174px, 11vw, 390px);
    }
    .aam-footer {
        width: 100%;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    .aam-footer__top {
		grid-template-columns: minmax(0, 2.2fr) minmax(180px, 0.8fr) minmax(480px, 1.8fr) !important;
        gap: clamp(52px, 3.5vw, 140px);
        padding-bottom: clamp(62px, 4vw, 160px);
    }
    .aam-footer__cta-block h2 {
        font-size: clamp(42px, 2.8vw, 110px);
        line-height: clamp(48px, 3.2vw, 126px);
        max-width: clamp(580px, 40vw, 1500px);
        margin-bottom: clamp(24px, 1.5vw, 56px);
    }
    .aam-footer__cta-block p {
        font-size: clamp(18px, 1.15vw, 44px);
        line-height: clamp(28px, 1.7vw, 66px);
        max-width: clamp(575px, 40vw, 1500px);
        margin-bottom: clamp(40px, 2.5vw, 100px);
    }
    .aam-footer__button {
        min-width: clamp(196px, 12vw, 440px);
        height: clamp(50px, 2.8vw, 104px);
        font-size: clamp(16px, 0.9vw, 34px);
        border-radius: clamp(12px, 0.75vw, 28px);
    }
    .aam-footer__menu,
    .aam-footer__follow {
        gap: clamp(16px, 1vw, 38px);
    }
    .aam-footer__menu h3 {
        font-size: clamp(18px, 1.15vw, 44px);
        line-height: clamp(25px, 1.5vw, 58px);
        margin-bottom: clamp(6px, 0.4vw, 16px);
    }
	.aam-footer__follow h3 {
        font-size: clamp(18px, 1.15vw, 44px) !important;
        line-height: clamp(25px, 1.5vw, 58px) !important;
        margin-bottom: clamp(6px, 0.4vw, 16px) !important;
        white-space: nowrap !important;
    }
    .aam-footer__menu a {
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(22px, 1.4vw, 52px);
    }
	.aam-footer__follow .aam-contact-email,
	.aam-footer__field-wrap .wpcf7-form,
    .aam-footer__field-wrap form,
    .aam-footer__field-wrap .aam-contact-email,
    .aam-footer__field {
/*         height: clamp(50px, 2.8vw, 104px);
        border-radius: clamp(12px, 0.75vw, 28px); */
		position: relative !important;
		height: clamp(50px, 3.2vw, 104px) !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        padding-left: clamp(16px, 1.2vw, 38px) !important;
        padding-right: clamp(16px, 1.2vw, 38px) !important;
    }
	.aam-footer__field-wrap .wpcf7-form-control-wrap {
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center !important;
    }
	.aam-footer__field-wrap .wpcf7-not-valid-tip {
        position: absolute !important;
        top: calc(100% + clamp(6px, 0.4vw, 16px)) !important;
        left: 0 !important;
        font-size: clamp(14px, 0.95vw, 25px) !important;
        line-height: clamp(18px, 1.2vw, 33px) !important;
        color: #f51735 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        z-index: 10 !important;
    }
	
	/* Footer Form Success Message Styling */
	.aam-footer-success,
    .aam-footer__field-wrap .wpcf7-response-output,
    .aam-footer__follow .wpcf7-response-output {
        position: absolute !important;
        top: calc(100% + clamp(6px, 0.4vw, 16px)) !important;
        left: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 18px !important;
        color: #21A316 !important;
        white-space: nowrap !important;
        z-index: 10 !important;
    }
	
	.aam-footer-success img,
    .aam-footer-success .aam-success-icon,
    .aam-footer__field-wrap .wpcf7-response-output img,
    .aam-footer__follow .wpcf7-response-output img,
    .aam-footer__field-wrap .wpcf7-response-output .aam-success-icon,
    .aam-footer__follow .wpcf7-response-output .aam-success-icon {
        width: 16.85px !important;
        height: 16.85px !important;
        min-width: 16.85px !important;
        min-height: 16.85px !important;
        flex-shrink: 0 !important;
        object-fit: contain !important;
        display: inline-block !important;
    }
	
	.aam-footer-success span,
    .aam-footer-success .aam-success-text,
    .aam-footer__field-wrap .wpcf7-response-output span,
    .aam-footer__follow .wpcf7-response-output span,
    .aam-footer__field-wrap .wpcf7-response-output .aam-success-text,
    .aam-footer__follow .wpcf7-response-output .aam-success-text {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #21A316 !important;
        line-height: 18px !important;
    }
	
	
    .aam-footer__field-wrap input[type="email"],
	.aam-footer__follow .aam-contact-email input[type="email"],
    .aam-footer__field-wrap .aam-contact-email input[type="email"],
    .aam-footer__field input {
/*         font-size: clamp(16px, 0.9vw, 34px);
        padding-left: clamp(16px, 1vw, 38px);
        padding-right: clamp(16px, 1vw, 38px); */
		font-size: clamp(15px, 1.05vw, 34px) !important;
    }
	.aam-footer__field-wrap input[type="email"]::placeholder,
	.aam-footer__follow .aam-contact-email input[type="email"]::placeholder,
    .aam-footer__field-wrap .aam-contact-email input[type="email"]::placeholder,
    .aam-footer__field input::placeholder {
        font-size: clamp(15px, 1.05vw, 34px) !important;
    }
	.aam-footer__field-wrap button[type="submit"],
    .aam-footer__field-wrap button.wpcf7-submit,
    .aam-footer__follow .aam-contact-email input[type="submit"],
    .aam-footer__follow .aam-contact-email button,
    .aam-footer__field button {
/*         width: clamp(50px, 2.8vw, 104px);
        height: clamp(50px, 2.8vw, 104px); */
		width: clamp(24px, 1.6vw, 54px) !important;
        height: clamp(24px, 1.6vw, 54px) !important;
    }
	.aam-footer__field-wrap button img,
	.aam-footer__follow .aam-contact-email img,
    .aam-footer__field button img {
/*         width: clamp(20px, 1.2vw, 44px);
        height: clamp(20px, 1.2vw, 44px); */
		width: clamp(24px, 1.6vw, 54px) !important;
        height: clamp(24px, 1.6vw, 54px) !important;
    }
    .aam-footer__social {
        gap: clamp(12px, 0.8vw, 28px);
    }
    .aam-footer__social .aam-socials__link {
        width: clamp(44px, 2.6vw, 98px);
        height: clamp(44px, 2.6vw, 98px);
        border-radius: clamp(12px, 0.75vw, 28px);
    }
    .aam-footer__social .aam-socials__link img {
        width: clamp(24px, 1.4vw, 54px);
        height: clamp(24px, 1.4vw, 54px);
    }
    .aam-footer__logo {
        height: clamp(124px, 8.5vw, 320px);
        margin-bottom: clamp(34px, 2.2vw, 84px);
    }
    .aam-footer__bottom {
        min-height: clamp(78px, 5vw, 180px);
        padding-top: clamp(30px, 1.8vw, 70px);
        padding-bottom: clamp(30px, 1.8vw, 70px);
        gap: clamp(28px, 1.8vw, 70px);
    }
    .aam-footer__bottom p,
    .aam-footer__bottom a {
        font-size: clamp(14px, 0.9vw, 34px);
        line-height: clamp(20px, 1.3vw, 48px);
    }
	
	/* =========================================================================
       WORKS PAGE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-works-body .aam-works-hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
        padding-top: clamp(130px, 8vw, 320px);
        padding-bottom: clamp(50px, 3.5vw, 140px);
        gap: clamp(22px, 1.4vw, 56px);
    }
    body.aam-works-body .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    body.aam-works-body .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px);
    }
    body.aam-works-body .aam-works-hero h1 {
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        max-width: clamp(800px, 50vw, 1800px);
    }
    body.aam-works-body .aam-works-hero > p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
        max-width: clamp(1100px, 68vw, 2400px);
    }
    body.aam-works-body .aam-works-cases {
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    body.aam-works-body .aam-works-cases .aam-case-study__inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
		padding-left: 0;
        padding-right: 0;
    }
	
	/* =========================================================================
       SERVICES PAGE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-services-body .aam-services-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    body.aam-services-body .aam-services-hero {
        padding-top: clamp(130px, 8vw, 320px);
        padding-bottom: clamp(50px, 3.5vw, 140px);
    }
    body.aam-services-body .aam-services-hero__copy {
        max-width: clamp(1100px, 68vw, 2400px);
        gap: clamp(22px, 1.4vw, 56px);
    }
    body.aam-services-body .aam-services-hero .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    body.aam-services-body .aam-services-hero .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px);
    }
    body.aam-services-body .aam-services-hero h1 {
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        max-width: clamp(800px, 50vw, 1800px);
    }
    body.aam-services-body .aam-services-hero__copy > p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
        max-width: clamp(1100px, 68vw, 2400px);
    }
    body.aam-services-body .aam-services-main {
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    body.aam-services-body .aam-services-packages {
        gap: clamp(40px, 2.5vw, 100px);
    }
    body.aam-services-body .aam-services-package {
        border-radius: clamp(26px, 1.6vw, 64px);
    }
    body.aam-services-body .aam-services-package__bar {
        height: clamp(50px, 3vw, 120px);
        border-radius: clamp(22px, 1.4vw, 56px) clamp(22px, 1.4vw, 56px) 0 0;
        padding: 0 clamp(20px, 1.2vw, 48px);
    }
    body.aam-services-body .aam-services-package__bar strong {
        font-size: clamp(18px, 1.1vw, 44px);
        line-height: clamp(25px, 1.5vw, 60px);
    }
    body.aam-services-body .aam-services-package__body {
        grid-template-columns: clamp(450px, 32vw, 1200px) minmax(0, 1fr);
        gap: clamp(30px, 2vw, 80px);
        padding: clamp(28px, 1.8vw, 70px);
    }
    body.aam-services-body .aam-services-package__intro {
        max-width: clamp(450px, 32vw, 1200px);
    }
    body.aam-services-body .aam-services-package__intro-main {
        max-width: clamp(450px, 30vw, 1100px);
        gap: clamp(24px, 1.5vw, 60px);
    }
    body.aam-services-body .aam-services-price strong {
        font-size: clamp(44px, 2.8vw, 110px);
    }
    body.aam-services-body .aam-services-price p {
        font-size: clamp(14px, 0.9vw, 34px);
    }
    body.aam-services-body .aam-services-price strong span {
        font-size: clamp(18px, 1.1vw, 44px);
    }
    body.aam-services-body .aam-services-package__intro-main > div > p {
        font-size: clamp(14px, 0.9vw, 36px);
        line-height: clamp(23px, 1.4vw, 54px);
        max-width: clamp(450px, 30vw, 1100px);
    }
    body.aam-services-body .aam-services-package__contract {
        font-size: clamp(16px, 0.95vw, 36px);
        line-height: clamp(24px, 1.4vw, 52px);
        gap: clamp(8px, 0.5vw, 20px);
    }
    body.aam-services-body .aam-services-package__contract img {
        width: clamp(24px, 1.4vw, 54px);
        height: clamp(24px, 1.4vw, 54px);
    }
    body.aam-services-body .aam-services-package__included {
        gap: clamp(12px, 0.8vw, 30px);
    }
    body.aam-services-body .aam-services-package__included > p {
        font-size: clamp(14px, 0.9vw, 34px);
        line-height: clamp(22px, 1.3vw, 48px);
    }
    body.aam-services-body .aam-services-package__included ul {
        gap: clamp(12px, 0.8vw, 30px);
    }
    body.aam-services-body .aam-services-package__included li {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.5vw, 60px);
        padding-left: clamp(30px, 1.8vw, 70px);
        min-height: clamp(24px, 1.5vw, 60px);
    }
    body.aam-services-body .aam-services-package__included li::before {
        width: clamp(22px, 1.3vw, 50px);
        height: clamp(22px, 1.3vw, 50px);
        top: clamp(2px, 0.2vw, 8px);
    }
    body.aam-services-body .aam-services-addons {
        width: 100%;
        max-width: 100%;
        margin-top: clamp(100px, 6vw, 220px);
        padding-top: 0;
    }
	body.aam-services-body .aam-services-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px) !important;
    }
    body.aam-services-body .aam-services-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px) !important;
        letter-spacing: clamp(7px, 0.4vw, 16px) !important;
    }
	body.aam-services-body .aam-services-addons > p {
        font-size: clamp(16px, 1.05vw, 40px) !important;
        line-height: clamp(24px, 1.6vw, 62px) !important;
        max-width: clamp(1100px, 68vw, 2400px) !important;
        margin-top: clamp(24px, 1.4vw, 56px) !important;
        margin-bottom: clamp(40px, 2.5vw, 100px) !important;
    }
    body.aam-services-body .aam-services-table {
        width: 100%;
        max-width: 100%;
        border-radius: clamp(16px, 1vw, 40px);
        padding: clamp(4px, 0.3vw, 12px);
    }
    body.aam-services-body .aam-services-table > div {
        grid-template-columns: minmax(0, 1fr) clamp(320px, 24vw, 900px);
        min-height: clamp(64px, 4vw, 160px);
    }
    body.aam-services-body .aam-services-table .aam-services-table__head {
        min-height: clamp(56px, 3.5vw, 140px) !important;
    }
	body.aam-services-body .aam-services-table .aam-services-table__head span {
        font-size: clamp(15px, 0.95vw, 36px) !important;
    }
    body.aam-services-body .aam-services-table span,
    body.aam-services-body .aam-services-table strong {
        font-size: clamp(17px, 1.1vw, 42px) !important;
        line-height: clamp(25px, 1.6vw, 62px) !important;
        padding: 0 clamp(20px, 1.5vw, 60px) !important;
        border-radius: clamp(14px, 0.9vw, 36px) clamp(14px, 0.9vw, 36px) 0 0 !important;
    }
	
	/* =========================================================================
       JOBS PAGE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-jobs-body .aam-jobs-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    body.aam-jobs-body .aam-jobs-hero {
        padding-top: clamp(130px, 8vw, 320px);
        padding-bottom: clamp(50px, 3.5vw, 140px);
    }
    body.aam-jobs-body .aam-jobs-hero__inner {
        gap: clamp(28px, 1.8vw, 70px);
    }
    body.aam-jobs-body .aam-jobs-hero__copy {
        max-width: clamp(1100px, 68vw, 2400px);
        gap: clamp(22px, 1.4vw, 56px);
    }
    body.aam-jobs-body .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    body.aam-jobs-body .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px);
    }
    body.aam-jobs-body .aam-jobs-hero__copy h1 {
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        max-width: clamp(800px, 50vw, 1800px);
    }
    body.aam-jobs-body .aam-jobs-hero__copy > p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
        max-width: clamp(1100px, 68vw, 2400px);
    }
    body.aam-jobs-body .aam-jobs-search {
        width: clamp(700px, 48vw, 1700px);
        min-height: clamp(54px, 3.4vw, 120px);
        border-radius: clamp(12px, 0.8vw, 30px);
        padding: clamp(6px, 0.4vw, 14px);
    }
    body.aam-jobs-body .aam-jobs-search__field span,
    body.aam-jobs-body .aam-jobs-search__field svg {
        width: clamp(20px, 1.3vw, 48px);
        height: clamp(20px, 1.3vw, 48px);
    }
    body.aam-jobs-body .aam-jobs-search__field input {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
    }
    body.aam-jobs-body .aam-jobs-search button {
        height: clamp(43px, 2.7vw, 96px);
        border-radius: clamp(9px, 0.6vw, 22px);
        padding: 0 clamp(24px, 1.6vw, 60px);
        font-size: clamp(15px, 0.95vw, 36px);
    }
    body.aam-jobs-body .aam-jobs-count {
        font-size: clamp(18px, 1.1vw, 44px);
        line-height: clamp(25px, 1.5vw, 60px);
    }
    body.aam-jobs-body .aam-jobs-listing {
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    body.aam-jobs-body .aam-jobs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(20px, 1.4vw, 56px);
    }
    body.aam-jobs-body .aam-job-card {
        min-height: clamp(178px, 12vw, 440px);
        border-radius: clamp(20px, 1.3vw, 50px);
        padding: clamp(20px, 1.4vw, 54px);
        gap: clamp(12px, 0.8vw, 30px);
    }
    body.aam-jobs-body .aam-job-card img {
        width: clamp(44px, 2.8vw, 110px);
        height: clamp(38px, 2.4vw, 95px);
    }
    body.aam-jobs-body .aam-job-card strong {
        font-size: clamp(20px, 1.3vw, 52px);
        line-height: clamp(26px, 1.6vw, 64px);
    }
    body.aam-jobs-body .aam-job-card span,
    body.aam-jobs-body .aam-job-card em {
        font-size: clamp(14px, 0.9vw, 36px);
        line-height: clamp(20px, 1.3vw, 48px);
    }
    body.aam-jobs-body .aam-job-card p {
        font-size: clamp(14px, 0.9vw, 36px);
        line-height: clamp(22px, 1.4vw, 54px);
    }
    body.aam-jobs-body .aam-job-card small {
        font-size: clamp(13px, 0.85vw, 34px);
    }
	body.aam-jobs-body .aam-jobs-empty {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
        margin-top: clamp(30px, 2vw, 80px);
    }
	/* Job Application Form Modal Scaling */
    body.aam-jobs-body .aam-job-application {
        width: clamp(450px, 28vw, 980px) !important;
        max-width: clamp(450px, 28vw, 980px) !important;
        padding: clamp(28px, 1.8vw, 64px) !important;
        border-radius: clamp(24px, 1.5vw, 56px) !important;
        right: clamp(20px, 1.5vw, 50px) !important;
        bottom: clamp(20px, 1.5vw, 50px) !important;
    }
    body.aam-jobs-body .aam-job-application__content {
        gap: clamp(20px, 1.3vw, 48px) !important;
    }
    body.aam-jobs-body .aam-job-application h3 {
        font-size: clamp(20px, 1.3vw, 46px) !important;
        line-height: clamp(24px, 1.6vw, 56px) !important;
        margin-bottom: clamp(10px, 0.7vw, 24px) !important;
    }
/*     body.aam-jobs-body .aam-job-application .wpcf7-form {
        gap: clamp(16px, 1vw, 36px) !important;
    } */
    body.aam-jobs-body .aam-job-application .aam-cf-input,
	body.aam-jobs-body .aam-job-application__field,
    body.aam-jobs-body .aam-job-application textarea.aam-cf-textarea,
    body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv,
	body.aam-jobs-body .aam-job-application__upload,
    body.aam-jobs-body .aam-job-application__upload label,
    body.aam-jobs-body .aam-job-application__cancel {
        border-width: clamp(1.5px, 0.12vw, 4px) !important;
        border-style: solid !important;
		border-color: #f51735 !important;
    }
    body.aam-jobs-body .aam-job-application .aam-cf-input:before {
        padding: clamp(1.5px, 0.12vw, 4px) !important;
    }
    /* Form Fields & Message Box Height */
    body.aam-jobs-body .aam-job-application .aam-cf-input,
    body.aam-jobs-body .aam-job-application__field {
        height: clamp(46px, 2.8vw, 98px) !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        padding: 0 clamp(16px, 1vw, 36px) !important;
        font-size: clamp(15px, 0.95vw, 34px) !important;
    }
    body.aam-jobs-body .aam-job-application .aam-cf-input::placeholder,
	body.aam-jobs-body .aam-job-application textarea.aam-cf-textarea::placeholder,
    body.aam-jobs-body .aam-job-application textarea::placeholder,
    body.aam-jobs-body .aam-job-application input::placeholder,
    body.aam-jobs-body .aam-job-application__field span,
	body.aam-jobs-body .aam-job-application .aam-job-application__upload-text,
    body.aam-jobs-body .aam-job-application .aam-job-application__upload span,
    body.aam-jobs-body .aam-job-application .aam-job-application__upload label > span,
    body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv::before {
        font-size: clamp(15px, 0.95vw, 34px) !important;
		line-height: clamp(18px, 1.2vw, 42px) !important;
        letter-spacing: 0.3px !important;
    }
    body.aam-jobs-body .aam-job-application textarea.aam-cf-textarea,
    body.aam-jobs-body .aam-job-application__field--message {
        height: clamp(120px, 7.5vw, 260px) !important;
        padding-top: clamp(14px, 0.9vw, 32px) !important;
    }
	
	/* File Upload Container (.aam-job-application__upload & variants) */
    body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv,
	body.aam-jobs-body .aam-job-application .aam-job-application__upload,
    body.aam-jobs-body .aam-job-application__upload label {
		display: flex !important;
        position: relative !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: clamp(54px, 3.2vw, 114px) !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        padding: 0 clamp(6px, 0.4vw, 14px) 0 clamp(16px, 1vw, 36px) !important;
		background: rgba(18, 8, 28, 0.08) !important;
        backdrop-filter: blur(15px) !important;
    }
	/* Browse Button Scaling */
    body.aam-jobs-body .aam-job-application .aam-job-application__upload strong,
    body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap.cv::after,
    body.aam-jobs-body .aam-job-application__upload strong {
		display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: clamp(40px, 2.4vw, 84px) !important;
        padding: 0 clamp(21px, 1.3vw, 46px) !important;
        font-size: clamp(14px, 0.85vw, 30px) !important;
		line-height: clamp(25px, 1.4vw, 52px) !important;
        border-radius: clamp(9px, 0.6vw, 20px) !important;
		border: 1px solid #f51735 !important;
        background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%) !important;
        color: var(--aam-white) !important;
        text-transform: uppercase !important;
        margin-left: auto !important;
    }
    /* Upload Helper Note Text Scaling */
	body.aam-jobs-body .aam-job-application .aam-job-application__upload-note,
    body.aam-jobs-body .aam-job-application small,
    body.aam-jobs-body .aam-job-application p,
    body.aam-jobs-body .aam-job-application__upload p,
    body.aam-jobs-body .aam-job-application .wpcf7-form p small,
    body.aam-jobs-body .aam-job-application .wpcf7-form p.aam-job-application__upload-note {
        font-size: clamp(13px, 0.85vw, 28px) !important;
        line-height: clamp(18px, 1.1vw, 38px) !important;
        margin-top: clamp(6px, 0.4vw, 14px) !important;
		color: rgba(18, 8, 28, 0.45) !important;
    }
    body.aam-jobs-body .aam-job-application__actions {
        gap: clamp(16px, 1vw, 36px) !important;
        margin-top: clamp(10px, 0.7vw, 24px) !important;
    }
    body.aam-jobs-body .aam-job-application__actions button,
    body.aam-jobs-body .aam-job-application__cancel {
        height: clamp(48px, 3vw, 104px) !important;
        padding: 0 clamp(24px, 1.5vw, 54px) !important;
        font-size: clamp(16px, 0.95vw, 34px) !important;
		font-weight: 500 !important;
        letter-spacing: 0.3px !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
		border: clamp(1.5px, 0.12vw, 4px) solid #f51735 !important;
        background: rgba(18, 8, 28, 0.08) !important;
        color: #12081c !important;
        text-transform: uppercase !important;
    }
	body.aam-jobs-body .aam-job-application .aam-cf-submit,
    body.aam-jobs-body .aam-job-application input[type="submit"],
    body.aam-jobs-body .aam-job-application .aam-job-application__submit,
    body.aam-jobs-body .aam-job-application input.wpcf7-submit {
        height: clamp(48px, 3vw, 104px) !important;
        padding: 0 clamp(24px, 1.5vw, 54px) !important;
        font-size: clamp(16px, 0.95vw, 34px) !important;
        font-weight: 500 !important;
        letter-spacing: 0.3px !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        border: clamp(1.5px, 0.12vw, 4px) solid #f51735 !important;
        background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%) !important;
        color: var(--aam-white) !important;
        text-transform: uppercase !important;
    }
	
	/* =========================================================================
       ABOUT PAGE HERO SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-about-body .aam-about-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    body.aam-about-body .aam-about-hero {
        padding-top: clamp(130px, 8vw, 320px);
        padding-bottom: clamp(95px, 6vw, 240px);
    }
    body.aam-about-body .aam-about-hero__inner {
        grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
        gap: clamp(60px, 3.8vw, 150px) clamp(40px, 2.5vw, 100px);
    }
    body.aam-about-body .aam-about-hero__copy {
        max-width: clamp(850px, 55vw, 2000px);
    }
    body.aam-about-body .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    body.aam-about-body .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px);
    }
    body.aam-about-body .aam-about-hero__copy h1 {
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        max-width: clamp(800px, 50vw, 1800px);
        margin-top: clamp(22px, 1.4vw, 56px);
    }
    body.aam-about-body .aam-about-hero__media {
        border-radius: clamp(20px, 1.3vw, 50px);
    }
    body.aam-about-body .aam-about-hero__text {
        max-width: clamp(610px, 42vw, 1500px);
    }
    body.aam-about-body .aam-about-hero__text p {
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
        margin-bottom: clamp(16px, 1vw, 40px);
    }
	
	body.aam-about-body .aam-about-team-v2 {
        padding-top: clamp(100px, 6vw, 220px);
        padding-bottom: clamp(50px, 3.5vw, 140px);
    }
    body.aam-about-body .aam-about-team-v2__inner {
        gap: clamp(50px, 3.2vw, 120px);
    }
    body.aam-about-body .aam-about-team-v2__heading {
        grid-template-columns: clamp(190px, 14vw, 550px) minmax(0, 1fr);
        gap: clamp(60px, 4vw, 160px);
    }
    body.aam-about-body .aam-about-team-v2__heading h2 {
        font-size: clamp(40px, 2.7vw, 110px);
        line-height: clamp(46px, 3.1vw, 126px);
        max-width: clamp(700px, 48vw, 1800px);
    }
    body.aam-about-body .aam-about-team-v2__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: clamp(24px, 1.6vw, 64px);
    }
    body.aam-about-body .aam-about-team-v2__member {
        border-radius: clamp(16px, 1.1vw, 44px);
        padding: clamp(20px, 1.4vw, 54px) clamp(16px, 1.1vw, 44px);
    }
    body.aam-about-body .aam-about-team-v2__member span {
        gap: clamp(6px, 0.4vw, 16px);
    }
    body.aam-about-body .aam-about-team-v2__member strong {
        font-size: clamp(18px, 1.25vw, 48px);
        letter-spacing: 0.8px;
    }
    body.aam-about-body .aam-about-team-v2__member em {
        font-size: clamp(14px, 0.95vw, 36px);
        letter-spacing: 0.56px;
    }
	
	/* =========================================================================
       ABOUT PAGE TESTIMONIALS SECTION SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-about-body .aam-about-testimonials__inner {
        padding-top: clamp(96px, 6vw, 240px);
        padding-bottom: clamp(110px, 7vw, 280px);
    }
    body.aam-about-body .aam-about-testimonials__header {
        grid-template-columns: clamp(190px, 14vw, 550px) minmax(0, 1fr) !important;
        gap: clamp(54px, 4vw, 160px) !important;
        margin-bottom: clamp(32px, 2vw, 80px) !important;
    }
    header.aam-about-testimonials__header .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px) !important;
        letter-spacing: clamp(7px, 0.4vw, 16px) !important;
    }
    body.aam-about-body .aam-about-testimonials__header h2 {
        font-size: clamp(40px, 2.7vw, 110px) !important;
        line-height: clamp(46px, 3.1vw, 126px) !important;
        max-width: clamp(800px, 55vw, 2200px) !important;
    }
    body.aam-about-body .aam-about-testimonials__layout {
        display: block !important;
        width: 100% !important;
        padding-bottom: clamp(80px, 5vw, 200px) !important;
    }
    body.aam-about-body .aam-about-slider {
        width: 100% !important;
    }
    body.aam-about-body .aam-about-quote-card {
        width: clamp(540px, 38vw, 1400px) !important;
        min-height: clamp(320px, 22vw, 800px) !important;
        border-radius: clamp(32px, 2vw, 80px) clamp(32px, 2vw, 80px) clamp(32px, 2vw, 80px) 0 !important;
        padding: clamp(24px, 1.8vw, 64px) clamp(20px, 1.5vw, 56px) !important;
        gap: clamp(28px, 1.8vw, 64px) !important;
    }
    body.aam-about-body .aam-about-quote-card__headline {
        font-size: clamp(20px, 1.35vw, 52px) !important;
        line-height: clamp(28px, 1.8vw, 70px) !important;
    }
    body.aam-about-body .aam-about-quote-card__copy,
    body.aam-about-body p.aam-about-quote-card__copy {
        font-size: clamp(16px, 1.05vw, 40px) !important;
        line-height: clamp(25px, 1.6vw, 62px) !important;
    }
    body.aam-about-body .aam-about-quote-card__profile {
        gap: clamp(12px, 0.8vw, 30px) !important;
    }
    body.aam-about-body .aam-about-quote-card__profile img,
    body.aam-about-body .aam-about-quote-card__profile > span {
        width: clamp(46px, 3vw, 115px) !important;
        height: clamp(46px, 3vw, 115px) !important;
        flex: 0 0 clamp(46px, 3vw, 115px) !important;
    }
    body.aam-about-body .aam-about-quote-card__profile strong {
        font-size: clamp(18px, 1.2vw, 46px) !important;
        line-height: clamp(25px, 1.6vw, 62px) !important;
    }
    body.aam-about-body .aam-about-quote-card__profile div span {
        font-size: clamp(14px, 0.95vw, 36px) !important;
        line-height: clamp(20px, 1.3vw, 48px) !important;
    }
    body.aam-about-body .aam-about-slider__nav {
        gap: clamp(24px, 1.5vw, 60px) !important;
    }
    body.aam-about-body .aam-about-slider__nav button {
        width: clamp(68px, 4.4vw, 170px) !important;
        height: clamp(48px, 3.1vw, 120px) !important;
        border-radius: clamp(14px, 0.9vw, 36px) !important;
    }
    body.aam-about-body .aam-about-slider__nav img {
        width: clamp(36px, 2.3vw, 90px) !important;
        height: clamp(36px, 2.3vw, 90px) !important;
    }
	
	/* =========================================================================
       TEAM MEMBER DETAIL MODAL SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-about-body .aam-team-detail {
        --aam-team-detail-width: clamp(1320px, 72vw, 2500px);
        --aam-team-detail-height: clamp(840px, 82vh, 1800px);
    }
    body.aam-about-body .aam-team-detail__bg {
        border-radius: clamp(28px, 1.8vw, 70px);
    }
    body.aam-about-body .aam-team-detail__close {
        width: clamp(32px, 2.2vw, 80px);
        height: clamp(32px, 2.2vw, 80px);
        top: clamp(20px, 1.5vw, 50px);
        right: clamp(30px, 2vw, 70px);
    }
    body.aam-about-body .aam-team-detail__viewport {
        grid-template-columns: clamp(320px, 28vw, 900px) minmax(0, 1fr);
        gap: clamp(28px, 2.5vw, 90px);
        padding: clamp(30px, 2.5vw, 90px);
    }
	/* Left Side Image — Uncropped */
    body.aam-about-body .aam-team-detail__media {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
/*         border-radius: clamp(16px, 1.1vw, 40px); */
    }
    body.aam-about-body .aam-team-detail__media img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: inherit;
    }
    body.aam-about-body .aam-team-detail__content {
        gap: clamp(20px, 1.4vw, 50px);
        padding-right: clamp(10px, 0.8vw, 30px);
    }
	 /* Header & Right Corner Social Icon Alignment */
    body.aam-about-body .aam-team-detail__header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 90% !important;
        gap: clamp(16px, 1.2vw, 40px) !important;
    }
    body.aam-about-body .aam-team-detail__header .set_one {
        display: flex;
        flex-direction: column;
        gap: clamp(6px, 0.4vw, 16px);
        min-width: 0;
        flex: 1;
    }
    body.aam-about-body .aam-team-detail__header h2 {
        font-size: clamp(30px, 1.8vw, 64px) !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
    }
    body.aam-about-body .aam-team-detail__header p {
        font-size: clamp(16px, 1vw, 36px) !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
	body.aam-about-body .aam-team-detail__header .set_two {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        margin-top: clamp(4px, 0.3vw, 12px);
    }
    .set_two a img,
    .set_two a svg {
        width: clamp(28px, 1.8vw, 70px) !important;
        height: clamp(28px, 1.8vw, 70px) !important;
    }
    body.aam-about-body .aam-team-detail__bio {
        gap: clamp(12px, 0.9vw, 32px);
        font-size: clamp(15px, 0.9vw, 32px);
        line-height: clamp(23px, 1.4vw, 50px);
    }
	
	/* Job Detail Modal Scaling */
    body.aam-jobs-body .aam-job-detail__panel {
        width: clamp(1200px, 75vw, 2500px);
        height: clamp(750px, 90vh, 1600px);
    }
    body.aam-jobs-body .aam-job-detail.is-open .aam-job-detail__panel {
        border-radius: clamp(30px, 1.8vw, 64px);
    }
    body.aam-jobs-body .aam-job-detail__close {
        width: clamp(32px, 2vw, 76px);
        height: clamp(32px, 2vw, 76px);
        top: clamp(20px, 1.3vw, 50px);
        right: clamp(30px, 2vw, 70px);
    }
    body.aam-jobs-body .aam-job-detail__header {
        min-height: clamp(130px, 8vw, 280px);
        padding: clamp(30px, 1.8vw, 64px) clamp(40px, 2.5vw, 90px);
        gap: clamp(24px, 1.5vw, 56px);
    }
    body.aam-jobs-body .aam-job-detail__header h2 {
        font-size: clamp(36px, 2.2vw, 84px);
        letter-spacing: 1.6px;
    }
    body.aam-jobs-body .aam-job-detail__header p span {
/*         font-size: clamp(16px, 1vw, 38px);
        line-height: clamp(24px, 1.5vw, 56px);
        gap: clamp(8px, 0.5vw, 18px); */
		font-size: clamp(16px, 1vw, 38px) !important;
        line-height: clamp(24px, 1.5vw, 56px) !important;
        gap: clamp(8px, 0.5vw, 18px) !important;
    }

    body.aam-jobs-body .aam-job-detail__header p span svg,
    body.aam-jobs-body .aam-job-detail__header svg {
/*         width: clamp(20px, 1.3vw, 48px);
        height: clamp(20px, 1.3vw, 48px); */
		width: clamp(20px, 1.2vw, 42px) !important;
        height: clamp(20px, 1.2vw, 42px) !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
		display: inline-block !important;
		flex: 0 0 clamp(20px, 1.2vw, 42px) !important;
        max-width: none !important;
        max-height: none !important;
    }
	 body.aam-jobs-body .aam-job-detail__header p i {
        width: 1px !important;
        height: clamp(20px, 1.2vw, 42px) !important;
        background: rgba(255, 255, 255, 0.24) !important;
    }
    body.aam-jobs-body .aam-job-detail__header > em {
        font-size: clamp(14px, 0.9vw, 34px);
        line-height: clamp(21px, 1.3vw, 48px);
    }
    body.aam-jobs-body .aam-job-detail__body {
        padding: clamp(28px, 1.8vw, 64px) clamp(50px, 3.2vw, 120px) clamp(150px, 9vw, 320px);
    }
    body.aam-jobs-body .aam-job-detail__intro {
        gap: clamp(10px, 0.7vw, 24px);
        margin-bottom: clamp(30px, 2vw, 70px);
    }
    body.aam-jobs-body .aam-job-detail__intro p,
    body.aam-jobs-body .aam-job-detail__columns p,
    body.aam-jobs-body .aam-job-detail__columns li {
        font-size: clamp(14px, 0.95vw, 36px);
        line-height: clamp(21px, 1.4vw, 54px);
    }
    body.aam-jobs-body .aam-job-detail__columns {
        gap: clamp(20px, 1.5vw, 60px);
    }
    body.aam-jobs-body .aam-job-detail__columns section + section {
        padding-left: clamp(20px, 1.5vw, 60px);
    }
    body.aam-jobs-body .aam-job-detail__columns h3 {
        font-size: clamp(20px, 1.3vw, 48px);
        line-height: clamp(28px, 1.8vw, 64px);
    }
    body.aam-jobs-body .aam-job-detail__columns li {
        padding-left: clamp(30px, 2vw, 70px);
    }
    body.aam-jobs-body .aam-job-detail__columns li::before {
        width: clamp(18px, 1.2vw, 44px);
        height: clamp(18px, 1.2vw, 44px);
        font-size: clamp(11px, 0.7vw, 26px);
        top: clamp(3px, 0.2vw, 8px);
    }
    body.aam-jobs-body .aam-job-detail__apply {
        right: clamp(50px, 3.2vw, 120px);
        bottom: clamp(20px, 1.4vw, 50px);
    }
    body.aam-jobs-body .aam-job-detail__apply button {
        height: clamp(48px, 3vw, 108px);
        padding: 0 clamp(28px, 1.8vw, 64px);
        font-size: clamp(15px, 0.95vw, 36px);
        border-radius: clamp(12px, 0.8vw, 28px);
    }
	
	
	/* =========================================================================
       CONTACT PAGE ULTRA-WIDE RESPONSIVE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-contact-body .aam-contact-main {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: clamp(70px, 9vw, 360px) !important;
        padding-right: clamp(70px, 9vw, 360px) !important;
        padding-top: clamp(130px, 8vw, 280px) !important;
        padding-bottom: clamp(100px, 6vw, 220px) !important;
        gap: clamp(70px, 4.5vw, 160px) !important;
    }
    /* Hero Section Eyebrow, H1 Title & Paragraph */
    body.aam-contact-body .aam-contact-hero {
        gap: clamp(22px, 1.4vw, 50px);
    }
    body.aam-contact-body .aam-eyebrow {
        gap: clamp(11px, 0.7vw, 26px);
    }
    body.aam-contact-body .aam-eyebrow span {
        font-size: clamp(24px, 1.4vw, 54px);
    }
    body.aam-contact-body .aam-eyebrow p {
        font-size: clamp(15px, 0.95vw, 36px) !important;
        line-height: clamp(22px, 1.4vw, 50px) !important;
        letter-spacing: clamp(6.4px, 0.4vw, 16px) !important;
    }
    body.aam-contact-body .aam-contact-hero h1 {
        max-width: clamp(500px, 50vw, 1258px);
        font-size: clamp(50px, 3.4vw, 135px);
        line-height: clamp(58px, 3.8vw, 150px);
        letter-spacing: 0.42px;
    }
    body.aam-contact-body .aam-contact-hero p {
        max-width: clamp(1080px, 80vw, 2560px);
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
    }
    /* Contact Form Section 2-Column Grid */
    body.aam-contact-body .aam-contact-form-section {
        grid-template-columns: minmax(0, 1fr) clamp(450px, 34vw, 1200px) !important;
        gap: clamp(70px, 4.5vw, 160px) !important;
    }
    /* Left Copy Column & Watermark Ghost Text */
    body.aam-contact-body .aam-contact-copy {
        gap: clamp(40px, 2.5vw, 90px);
    }
    body.aam-contact-body .aam-contact-copy h2 {
        font-size: clamp(36px, 2.4vw, 92px);
        line-height: clamp(45px, 3vw, 115px);
    }
    body.aam-contact-body .aam-contact-copy__note {
        gap: clamp(10px, 0.7vw, 24px);
        font-size: clamp(18px, 1.2vw, 46px);
        line-height: clamp(25px, 1.6vw, 62px);
    }
    body.aam-contact-body .aam-contact-copy__note img {
        width: clamp(24px, 1.6vw, 60px);
        height: clamp(24px, 1.6vw, 60px);
        flex: 0 0 clamp(24px, 1.6vw, 60px);
    }
    body.aam-contact-body .aam-contact-ghost {
        margin-top: clamp(54px, 3.5vw, 130px);
        font-size: clamp(82px, 8.5vw, 300px);
    }
    /* Right Form Column & Inputs */
    body.aam-contact-body .aam-contact-form {
        max-width: 100% !important;
        gap: clamp(20px, 1.3vw, 48px);
    }
    body.aam-contact-body .aam-contact-form__row {
        gap: clamp(20px, 1.3vw, 48px);
    }
    body.aam-contact-body .aam-field {
        height: clamp(46px, 2.8vw, 98px);
        border-radius: clamp(12px, 0.8vw, 26px);
        padding: 0 clamp(18px, 1.2vw, 42px);
        font-size: clamp(15px, 0.95vw, 34px);
        margin-top: clamp(15px, 1vw, 32px);
    }
    body.aam-contact-body .aam-field:before {
        padding: clamp(1.5px, 0.12vw, 4px);
    }
    body.aam-contact-body .aam-field::placeholder {
        font-size: clamp(15px, 0.95vw, 34px);
    }
    body.aam-contact-body textarea.aam-field {
        height: clamp(140px, 9vw, 320px);
        padding-top: clamp(16px, 1vw, 36px);
    }
    body.aam-contact-body .aam-contact-submit {
        height: clamp(48px, 3vw, 104px);
        border-radius: clamp(12px, 0.8vw, 26px);
        font-size: clamp(16px, 0.95vw, 34px);
        margin-top: clamp(15px, 1vw, 32px);
    }
    /* Bottom Build Shows / Special Banner Card */
    body.aam-contact-body .aam-contact-special {
        border-radius: clamp(24px, 1.5vw, 56px);
        padding: clamp(62px, 4vw, 140px) clamp(40px, 2.5vw, 90px);
        min-height: clamp(340px, 22vw, 780px);
        margin-top: clamp(30px, 2vw, 80px);
    }
    body.aam-contact-body .aam-contact-special__content {
        max-width: clamp(650px, 42vw, 1500px);
        gap: clamp(48px, 3vw, 110px);
    }
    body.aam-contact-body .aam-contact-special__logo {
        width: clamp(90px, 5vw, 180px);
    }
    body.aam-contact-body .aam-contact-special h2 {
        max-width: clamp(630px, 40vw, 1400px);
        font-size: clamp(36px, 2.4vw, 92px);
        line-height: clamp(45px, 3vw, 115px);
        margin-top: clamp(28px, 1.8vw, 64px);
    }
    body.aam-contact-body .aam-contact-box {
        max-width: clamp(650px, 42vw, 1500px);
        border-radius: clamp(20px, 1.3vw, 48px);
        padding: clamp(24px, 1.6vw, 60px);
        gap: clamp(15px, 1vw, 36px);
    }
    body.aam-contact-body .aam-contact-box h3 {
        font-size: clamp(20px, 1.3vw, 48px);
        line-height: clamp(28px, 1.8vw, 64px);
    }
    body.aam-contact-body .aam-contact-box p {
        font-size: clamp(16px, 1vw, 36px);
        line-height: clamp(24px, 1.5vw, 56px);
    }
    /* Checkbox Pill Options Scaling (Build Shows / Media Inquiries) */
    .aam-inline-form__options {
        margin-bottom: clamp(15px, 1vw, 36px) !important;
    }
    .aam-inline-form__options .wpcf7-list-item {
        margin-right: clamp(12px, 1vw, 36px) !important;
    }
	.aam-inline-form__options .wpcf7-list-item label {
        gap: clamp(8px, 0.6vw, 20px) !important;
    }
    .aam-inline-form__options input[type="checkbox"] {
        width: clamp(20px, 1.3vw, 46px) !important;
        height: clamp(20px, 1.3vw, 46px) !important;
        border-width: clamp(2px, 0.12vw, 4px) !important;
        border-radius: clamp(5px, 0.3vw, 12px) !important;
    }
    .aam-inline-form__options input[type="checkbox"]:checked::after {
        left: clamp(6px, 0.4vw, 14px) !important;
        top: clamp(2px, 0.15vw, 6px) !important;
        width: clamp(6px, 0.4vw, 14px) !important;
        height: clamp(10px, 0.65vw, 24px) !important;
        border-width: 0 clamp(2px, 0.15vw, 5px) clamp(2px, 0.15vw, 5px) 0 !important;
    }
    .aam-inline-form__options .wpcf7-list-item-label {
        font-size: clamp(15px, 0.95vw, 34px) !important;
    }
    /* Email Address Input Row & Submit Paper Plane Icon Scaling */
    body.aam-contact-body .aam-contact-email {
        height: clamp(46px, 3vw, 104px) !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        padding: 0 clamp(14px, 1vw, 32px) 0 clamp(18px, 1.2vw, 42px) !important;
        margin-top: clamp(15px, 1vw, 32px) !important;
    }
    body.aam-contact-body .aam-contact-email:before {
        padding: clamp(1.5px, 0.12vw, 4px) !important;
    }
    body.aam-contact-body .aam-contact-email input[type="email"] {
        font-size: clamp(15px, 0.95vw, 34px) !important;
    }
    body.aam-contact-body .aam-contact-email input[type="email"]::placeholder {
        font-size: clamp(15px, 0.95vw, 34px) !important;
    }
    body.aam-contact-body .aam-contact-email input[type="submit"] {
        width: clamp(24px, 1.6vw, 54px) !important;
        height: clamp(24px, 1.6vw, 54px) !important;
    }
	/* CF7 Validation Error Tip Scaling */
    .wpcf7-not-valid-tip {
        font-size: clamp(12px, 0.8vw, 26px) !important;
        line-height: clamp(16px, 1vw, 34px) !important;
        margin-top: clamp(4px, 0.3vw, 10px) !important;
        color: #f51735 !important;
        display: block !important;
    }
	
	/* =========================================================================
       SINGLE AAM WORK HERO BANNER ULTRA-WIDE RESPONSIVE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-case-detail-body .aam-case-detail-hero,
    body.aam-case-detail-body .aam-case-detail-metrics {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: clamp(70px, 9vw, 360px) !important;
        padding-right: clamp(70px, 9vw, 360px) !important;
    }
    /* Hero Banner Layout, Back Arrow, Logo & Typography */
    body.aam-case-detail-body .aam-case-detail-hero {
        gap: clamp(20px, 1.4vw, 50px);
        padding-top: clamp(128px, 8vw, 280px);
        padding-bottom: clamp(42px, 2.8vw, 100px);
    }
    body.aam-case-detail-body .aam-case-detail-back {
        width: clamp(32px, 2vw, 72px);
        height: clamp(32px, 2vw, 72px);
    }
    body.aam-case-detail-body .aam-case-detail-back img {
        width: clamp(32px, 2vw, 72px);
        height: clamp(32px, 2vw, 72px);
    }
    body.aam-case-detail-body .aam-case-detail-logo {
        height: clamp(52px, 3.4vw, 120px);
    }
    body.aam-case-detail-body .aam-case-detail-logo img {
        max-width: clamp(200px, 13vw, 460px);
        max-height: clamp(52px, 3.4vw, 120px);
    }
    body.aam-case-detail-body .aam-case-detail-hero h1 {
        max-width: clamp(1100px, 68vw, 2400px);
        font-size: clamp(28px, 2.2vw, 84px);
        line-height: clamp(36px, 2.6vw, 102px);
        letter-spacing: 0.5px;
    }
    body.aam-case-detail-body .aam-case-detail-hero p,
    body.aam-case-detail-body .aam-case-detail-hero__copy p {
        max-width: clamp(1100px, 68vw, 2400px);
        font-size: clamp(16px, 1.05vw, 40px);
        line-height: clamp(24px, 1.6vw, 62px);
    }
    body.aam-case-detail-body .aam-case-detail-hero__copy {
        gap: clamp(10px, 0.7vw, 26px);
    }
    /* 4-Column Metrics Grid & Number Scaling */
    body.aam-case-detail-body .aam-case-detail-metrics {
        gap: clamp(20px, 1.5vw, 60px);
        padding-bottom: clamp(70px, 4.5vw, 160px);
    }
    body.aam-case-detail-body .aam-case-detail-metric strong {
        font-size: clamp(44px, 3.4vw, 125px);
        padding-bottom: clamp(8px, 0.5vw, 18px);
        gap: clamp(8px, 0.5vw, 18px);
    }
    body.aam-case-detail-body .aam-case-detail-metric .aam-stat__suffix {
        font-size: clamp(32px, 2.4vw, 88px);
        padding-bottom: clamp(5px, 0.35vw, 12px);
    }
    body.aam-case-detail-body .aam-case-detail-metric > span:not(.aam-stat__suffix) {
        font-size: clamp(16px, 1.05vw, 38px);
        line-height: clamp(24px, 1.5vw, 56px);
        margin-top: clamp(2px, 0.15vw, 6px);
    }
    body.aam-case-detail-body .aam-case-detail-metric em {
        font-size: clamp(14px, 0.85vw, 30px);
        line-height: clamp(18px, 1.1vw, 40px);
        margin-top: clamp(4px, 0.25vw, 10px);
    }
	/* Single AAM Work Video Section Scaling */
    body.aam-case-detail-body .aam-case-detail-video {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    body.aam-case-detail-body .aam-case-detail-video video {
        display: block !important;
        width: 100% !important;
/*         height: min(80vh, 1200px) !important; */
		height:auto;
        max-height: 85vh !important;
        object-fit: cover !important;
        aspect-ratio: 16 / 9 !important;
    }
	/* Single AAM Work "Why It Matters" Section & Content Scaling */
    body.aam-case-detail-body .aam-case-detail-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: clamp(70px, 9vw, 360px) !important;
        padding-right: clamp(70px, 9vw, 360px) !important;
        padding-top: clamp(90px, 6vw, 200px) !important;
        padding-bottom: clamp(100px, 7vw, 220px) !important;
        gap: clamp(80px, 5vw, 180px) !important;
    }
    /* 2-Column Build Row Layout */
    body.aam-case-detail-body .aam-case-detail-build-row {
        grid-template-columns: minmax(0, 1fr) clamp(350px, 28vw, 920px) !important;
        gap: clamp(32px, 2.5vw, 90px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-blocks {
        gap: clamp(50px, 3.5vw, 120px);
    }
    body.aam-case-detail-body .aam-case-detail-block {
        gap: clamp(28px, 1.8vw, 64px);
    }
    body.aam-case-detail-body .aam-case-detail-block__content {
        gap: clamp(16px, 1vw, 36px);
    }
    /* Eyebrow / WHY IT MATTERS Header */
    body.aam-case-detail-body .aam-case-detail-eyebrow {
        font-size: clamp(16px, 1.05vw, 38px) !important;
        line-height: clamp(22px, 1.4vw, 50px) !important;
        letter-spacing: clamp(6.5px, 0.4vw, 16px) !important;
        gap: clamp(11px, 0.7vw, 26px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-eyebrow::before {
        font-size: clamp(25px, 1.6vw, 56px) !important;
    }
    /* Section Headings (Our Contribution) */
    body.aam-case-detail-body .aam-case-detail-block__content h2,
    body.aam-case-detail-body .aam-case-detail-block__content h3 {
        font-size: clamp(24px, 1.6vw, 56px) !important;
        line-height: clamp(32px, 2vw, 72px) !important;
    }
    /* Paragraph Copy */
    body.aam-case-detail-body .aam-case-detail-block__content p,
    body.aam-case-detail-body .aam-case-detail-copy {
        font-size: clamp(16px, 1.05vw, 40px) !important;
        line-height: clamp(24px, 1.6vw, 62px) !important;
    }
    /* Bullet Checklist & Arrow Point Icons */
    body.aam-case-detail-body .aam-case-detail-list,
    body.aam-case-detail-body .aam-case-detail-hero ul,
    body.aam-case-detail-body .aam-case-detail-block ul,
    body.aam-case-detail-body .aam-case-detail-list ol,
    body.aam-case-detail-body .aam-case-detail-block ol {
        gap: clamp(20px, 1.3vw, 48px) !important;
/*         padding-left: clamp(34px, 2.5vw, 90px) !important; */
		padding-left: clamp(34px, 2.2vw, 78px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-list li,
    body.aam-case-detail-body .aam-case-detail-hero li,
    body.aam-case-detail-body .aam-case-detail-block li {
        font-size: clamp(16px, 1.05vw, 38px) !important;
        line-height: clamp(24px, 1.5vw, 56px) !important;
        letter-spacing: 0.5px !important;
    }
    body.aam-case-detail-body .aam-case-detail-list ul li::before,
    body.aam-case-detail-body .aam-case-detail-hero ul li::before,
    body.aam-case-detail-body .aam-case-detail-block ul li::before {
        width: clamp(28px, 1.8vw, 64px) !important;
        height: clamp(28px, 1.8vw, 64px) !important;
/*         left: clamp(-98px, -2.5vw, -90px) !important; */
		left: clamp(-86px, -2.4vw, -38px) !important;
        top: clamp(-2px, -0.1vw, -4px) !important;
    }
    /* Right Column Side Panel & Cards */
    body.aam-case-detail-body .aam-case-detail-side {
        gap: clamp(28px, 1.8vw, 64px) !important;
    }
    /* Testimonial Quote Box Scaling */
    body.aam-case-detail-body .aam-case-detail-testimonial {
        min-height: clamp(280px, 18vw, 600px) !important;
        padding: clamp(24px, 1.8vw, 60px) !important;
        border-radius: clamp(20px, 1.3vw, 48px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-testimonial .aam-testimonial-card__quote {
        font-size: clamp(19px, 1.25vw, 44px) !important;
        line-height: clamp(28px, 1.8vw, 64px) !important;
    }
    body.aam-case-detail-body .aam-testimonial-card__profile {
        gap: clamp(16px, 1vw, 36px) !important;
        margin-top: clamp(20px, 1.3vw, 48px) !important;
    }
    body.aam-case-detail-body .aam-testimonial-card__avatar {
        width: clamp(64px, 4.5vw, 150px) !important;
        height: clamp(64px, 4.5vw, 150px) !important;
        flex: 0 0 clamp(64px, 4.5vw, 150px) !important;
        border-radius: 50% !important;
    }
    body.aam-case-detail-body .aam-testimonial-card__profile h3 {
        font-size: clamp(18px, 1.2vw, 42px) !important;
        line-height: clamp(24px, 1.5vw, 54px) !important;
    }
    body.aam-case-detail-body .aam-testimonial-card__profile p {
        font-size: clamp(14px, 0.9vw, 32px) !important;
        line-height: clamp(20px, 1.3vw, 44px) !important;
    }
    /* YouTube Banner Card Scaling */
    body.aam-case-detail-body .aam-case-detail-youtube {
        border-radius: clamp(24px, 1.5vw, 56px) !important;
        padding: clamp(24px, 1.8vw, 60px) !important;
        gap: clamp(16px, 1vw, 36px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-youtube__heading {
        gap: clamp(12px, 0.8vw, 28px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-youtube__heading img {
        width: clamp(28px, 1.8vw, 64px) !important;
        height: clamp(28px, 1.8vw, 64px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-youtube__heading h3 {
        font-size: clamp(20px, 1.3vw, 46px) !important;
        line-height: clamp(26px, 1.7vw, 60px) !important;
    }
    body.aam-case-detail-body .aam-case-detail-youtube__button {
        height: clamp(46px, 3vw, 104px) !important;
        padding: 0 clamp(22px, 1.5vw, 54px) !important;
        border-radius: clamp(12px, 0.8vw, 26px) !important;
        font-size: clamp(15px, 0.95vw, 34px) !important;
    }
	/* Custom Cursor / VIEW CASESTUDY Hover Pill Button Scaling */
	body.aam-case-detail-body .aam-case-detail-video .custom-playtext,
    .custom-cursor {
        height: clamp(50px, 3.4vw, 120px) !important;
        font-size: clamp(16px, 1.1vw, 38px) !important;
        padding: 0 clamp(20px, 1.4vw, 52px) !important;
        border-radius: clamp(12px, 0.8vw, 28px) !important;
    }
    .custom-cursor img,
	body.aam-case-detail-body .aam-case-detail-video .custom-playtext img {
        width: clamp(24px, 1.6vw, 56px) !important;
        height: clamp(24px, 1.6vw, 56px) !important;
        margin-left: clamp(8px, 0.5vw, 18px) !important;
    }
	
	/* =========================================================================
       JOB DETAIL PAGE ULTRA-WIDE RESPONSIVE SCALING (2560px - 3840px+)
       ========================================================================= */
    body.aam-job-detail-page-body .aam-job-detail-hero {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: clamp(70px, 9vw, 360px) !important;
        padding-right: clamp(70px, 9vw, 360px) !important;
        padding-top: clamp(128px, 8vw, 280px) !important;
        padding-bottom: clamp(60px, 4vw, 140px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-back {
        width: clamp(32px, 2vw, 72px) !important;
        height: clamp(32px, 2vw, 72px) !important;
        margin-bottom: clamp(24px, 1.5vw, 60px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-back img {
        width: clamp(32px, 2vw, 72px) !important;
        height: clamp(32px, 2vw, 72px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-title {
        max-width: clamp(1100px, 68vw, 2400px) !important;
        font-size: clamp(28px, 2.2vw, 84px) !important;
        line-height: clamp(36px, 2.6vw, 102px) !important;
        margin-bottom: clamp(16px, 1vw, 40px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-meta {
        font-size: clamp(15px, 0.95vw, 36px) !important;
        gap: clamp(14px, 0.9vw, 36px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-meta__item svg {
        width: clamp(18px, 1.2vw, 44px) !important;
        height: clamp(18px, 1.2vw, 44px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-meta__divider {
        height: clamp(16px, 1vw, 40px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-posted {
        font-size: clamp(14px, 0.85vw, 32px) !important;
        margin-top: clamp(10px, 0.6vw, 24px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-intro {
        max-width: clamp(1100px, 68vw, 2400px) !important;
        margin-bottom: clamp(48px, 3.2vw, 120px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-intro p {
        font-size: clamp(16px, 1.05vw, 40px) !important;
        line-height: clamp(24px, 1.6vw, 62px) !important;
        margin-bottom: clamp(16px, 1vw, 40px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-columns {
        gap: clamp(40px, 2.8vw, 110px) !important;
        margin-bottom: clamp(40px, 2.5vw, 100px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-col--qualifications {
        padding-left: clamp(30px, 2vw, 80px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-col h2 {
        font-size: clamp(20px, 1.4vw, 54px) !important;
        line-height: clamp(28px, 1.8vw, 68px) !important;
        margin-bottom: clamp(18px, 1.2vw, 48px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-col--role p {
        font-size: clamp(14px, 0.95vw, 36px) !important;
        line-height: clamp(22px, 1.5vw, 56px) !important;
        margin-bottom: clamp(16px, 1vw, 40px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-qualifications-list {
        gap: clamp(12px, 0.8vw, 32px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-qualifications-list li {
        font-size: clamp(14px, 0.95vw, 36px) !important;
        line-height: clamp(21px, 1.45vw, 54px) !important;
        gap: clamp(12px, 0.8vw, 32px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-check-icon,
    body.aam-job-detail-page-body .aam-job-detail-check-icon svg {
        width: clamp(20px, 1.3vw, 48px) !important;
        height: clamp(20px, 1.3vw, 48px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-apply {
        margin-top: clamp(30px, 2vw, 80px) !important;
    }

    body.aam-job-detail-page-body .aam-job-detail-apply-btn {
        height: clamp(48px, 3vw, 108px) !important;
        padding: 0 clamp(32px, 2vw, 70px) !important;
        font-size: clamp(16px, 1.05vw, 38px) !important;
        border-radius: clamp(12px, 0.8vw, 28px) !important;
        letter-spacing: clamp(0.3px, 0.02vw, 1px) !important;
    }
}

/* =========================================================================
   MOBILE HERO SOCIAL ICONS (EXCLUSIVELY FOR MOBILE, HIDDEN ON IPAD & WEB)
   ========================================================================= */
.aam-footer__social.in_header {
    display: none !important;
}
@media (max-width: 599px) {
	.aam-footer__social.in_header {
		display: flex !important;
	}
}


/* =========================================================================
   UNIVERSAL VIDEO FALLBACK OVERLAY (ZERO DOM WRAPPER)
   ========================================================================= */
/* .aam-video-overlay-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.aam-video-overlay-fallback.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
} */


/* =========================================================================
   UNIVERSAL VIDEO OVERLAY FALLBACK CONTAINER
   ========================================================================= */
.aam-video-overlay-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
/* 	opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1); */
	background-color: #0E0518;
/*     background: radial-gradient(circle at center, #160c20 0%, #0f0915 70%); */
}

.aam-video-overlay-fallback.is-hidden {
    display: none !important;
/* 	opacity: 0 !important;
    visibility: hidden !important; */
}

.aam-video-overlay-fallback img {
/* 	width: clamp(160px, 16vw, 380px);
    height: clamp(90px, 9vw, 214px); */
    width: clamp(130px, 16vw, 380px);
    height: clamp(60px, 9vw, 214px);
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}



/* =========================================================================
   404 ERROR PAGE STYLES
   ========================================================================= */
.aam-404-page {
    position: relative;
    width: 100%;
/*     min-height: calc(100vh - 80px); */
	min-height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08040d;
    overflow: hidden;
    padding: 140px 24px 80px;
    box-sizing: border-box;
}

.aam-404-page__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.aam-404-page__container {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.aam-404-page__code {
    font-family: inherit;
    font-size: clamp(90px, 11vw, 135px);
    font-weight: 500;
    line-height: 0.9;
    color: #ffffff;
    margin: 0 0 28px;
    letter-spacing: 1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.aam-404-page__code span {
    color: #E31E26;
}

.aam-404-page__heading {
    font-family: inherit;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.aam-404-page__subtext {
    font-family: inherit;
    font-size: clamp(15px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 40px;
    line-height: 1.6;
	    letter-spacing: 0.3px;
}

.aam-404-page__btn {
/*     display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.9) 92.36%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(245, 23, 53, 0.4);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease; */
	position: relative;
    z-index: 1;
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
/*     border: 1px solid var(--aam-hot-red); */
    border-radius: 14px;
    padding: 0 32px;
/*     background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%); */
	background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
    color: var(--aam-white) !important;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}

.aam-404-page__btn:hover {
/*     transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(245, 23, 53, 0.6);
    filter: brightness(1.1);
    color: #ffffff !important; */
	    background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.95) 9.44%, rgba(234, 21, 89, 0.85) 92.36%);
    border-color: #f51735;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .aam-404-page {
        padding: 120px 20px 60px;
        min-height: calc(100vh - 60px);
    }
    
    .aam-404-page__code {
        margin-bottom: 16px;
    }
    
    .aam-404-page__subtext {
        margin-bottom: 30px;
    }
    
    .aam-404-page__btn {
        padding: 14px 32px;
		font-size: 14px;
        height: 48px;
    }
}




/* =========================================================================
   29. JOB DETAIL PAGE STYLES (body.aam-job-detail-page-body)
   ========================================================================= */
body.aam-job-detail-page-body .aam-job-detail-page {
    position: relative;
    overflow: hidden;
    background: var(--aam-bg);
    color: var(--aam-white);
    min-height: 100vh;
}

body.aam-job-detail-page-body .aam-job-detail-page__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

body.aam-job-detail-page-body .aam-job-detail-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--aam-page-pad);
    padding-right: var(--aam-page-pad);
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
}

body.aam-job-detail-page-body .aam-job-detail-back {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: transform 0.35s ease, opacity 0.35s ease;
    margin-bottom: 24px;
}

body.aam-job-detail-page-body .aam-job-detail-back:hover {
    opacity: 1;
    transform: translateX(-3px);
}

body.aam-job-detail-page-body .aam-job-detail-back img {
    width: 32px;
    height: 32px;
}

body.aam-job-detail-page-body .aam-job-detail-header {
    margin-bottom: 18px;
	max-width:93%;
}

body.aam-job-detail-page-body .aam-job-detail-title {
    max-width: 1100px;
    margin: 0 0 16px;
    color: var(--aam-white);
/*     font-size: clamp(28px, 3vw, 42px); */
	font-size:32px;
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: 0.5px;
}

body.aam-job-detail-page-body .aam-job-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
	white-space: nowrap;
}

body.aam-job-detail-page-body .aam-job-detail-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.aam-job-detail-page-body .aam-job-detail-meta__item svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

body.aam-job-detail-page-body .aam-job-detail-meta__divider {
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.22);
}

body.aam-job-detail-page-body .aam-job-detail-posted {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.52);
    margin: 20px 0 0;
}

body.aam-job-detail-page-body .aam-job-detail-intro {
    margin-bottom: 48px;
    max-width: 1100px;
}

body.aam-job-detail-page-body .aam-job-detail-intro p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-detail-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    margin-bottom: 40px;
}

body.aam-job-detail-page-body .aam-job-detail-col--qualifications {
/*     border-left: 1px solid rgba(255, 255, 255, 0.18); */
/*     padding-left: 30px; */
}

body.aam-job-detail-page-body .aam-job-detail-col h2 {
    margin: 0 0 18px;
    color: var(--aam-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.5px;
}

body.aam-job-detail-page-body .aam-job-detail-col--role p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-detail-qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

body.aam-job-detail-page-body .aam-job-detail-qualifications-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-detail-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* body.aam-job-detail-page-body .aam-job-detail-check-icon svg {
    width: 24px;
    height: 24px;
} */

body.aam-job-detail-page-body .aam-job-detail-apply {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

body.aam-job-detail-page-body .aam-job-detail-apply-btn {
	position: relative;
    z-index: 1;
    display: inline-flex;
	height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
/*     border: 1px solid var(--aam-hot-red); */
    border-radius: 14px;
    padding: 0 32px;
    background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.7) 9.44%, rgba(234, 21, 89, 0.5) 92.36%);
    color: var(--aam-white) !important;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}

body.aam-job-detail-page-body .aam-job-detail-apply-btn:hover {
    background: linear-gradient(118.67deg, rgba(245, 23, 53, 0.9) 9.44%, rgba(234, 21, 89, 0.6) 92.36%);
/*     border-color: #f51735; */
    color: #ffffff !important;
}

/* Responsive Breakpoints matching single-aam_work.php */
@media (min-width: 1000px) and (max-width:1280px) {
    body.aam-job-detail-page-body .aam-job-detail-columns {
        gap: 24px;
    }
    
	body.aam-job-detail-page-body .aam-job-detail-hero{
		padding:120px 60px 80px 60px; 
	}
	body.aam-job-detail-page-body .aam-job-detail-header{
		margin-bottom:14px;
	}
	body.aam-job-detail-page-body .aam-job-detail-intro{
		margin-bottom:28px;
	}
	body.aam-job-detail-page-body .aam-job-detail-col--role p {
    	margin: 0 0 10px;
	}
	body.aam-job-detail-page-body .aam-job-detail-columns{
		margin-bottom:20px;
		max-width:95%;
	}
	body.aam-job-detail-page-body .aam-job-detail-intro p{
		max-width:95%;
		    margin: 0 0 12px;
	}
}

@media(min-width: 600px) and (max-width: 1000px){
	.aam-404-page__btn{
		height:48px;
		font-size:15px;
	}
	body.aam-job-detail-page-body .aam-job-detail-hero{
		 padding-top: 110px;
        padding-right: var(--aam-header-x);
        padding-left: var(--aam-header-x);
	}
	body.aam-job-detail-page-body .aam-job-detail-title {
    	font-size: 28px;
		margin:0 0 12px;
	}
	body.aam-job-detail-page-body .aam-job-detail-back{
		margin-bottom:16px;
	}
	body.aam-job-detail-page-body .aam-job-detail-intro p{
		font-size:14px;
		line-height:22px;
	}
	body.aam-job-detail-page-body .aam-job-detail-posted {
		margin: 12px 0 0;
	}
	body.aam-job-detail-page-body .aam-job-detail-header {
    	margin-bottom: 16px;
	}
	body.aam-job-detail-page-body .aam-job-detail-columns {
		grid-template-columns: auto;
		gap: 34px;
		margin-bottom: 40px;
	}
	body.aam-job-detail-page-body .aam-job-detail-columns, body.aam-job-detail-page-body .aam-job-detail-intro {
		margin-bottom:20px;
		max-width: 95%;
	}
	body.aam-job-detail-page-body .aam-job-detail-col h2 {
    	margin: 0 0 12px;
		font-size: 18px;
	}
	body.aam-job-detail-page-body .aam-job-detail-col--role p {
   	 font-size: 15px;
    	line-height: 23px;
		margin:0 0 10px;
	}
	.aam-job-detail-col.aam-job-detail-col--role, .aam-job-detail-col.aam-job-detail-col--qualifications {
		max-width: 93%;
	}
	body.aam-job-detail-page-body .aam-job-detail-qualifications-list li{
		font-size:15px;
	}
	body.aam-job-detail-page-body .aam-job-detail-check-icon svg{
		width:22px;
		height:22px;
	}
	body.aam-job-detail-page-body .aam-job-detail-qualifications-list{
		gap:10px;
	}
	body.aam-job-detail-page-body .aam-job-detail-apply {
		margin-top: 20px;
	}
}

@media (max-width: 600px) {
    body.aam-job-detail-page-body .aam-job-detail-hero {
/*         padding-top: 110px;
        padding-bottom: 36px; */
		padding:100px 16px 64px 16px;
    }
    body.aam-job-detail-page-body .aam-job-detail-title {
		margin: 0 0 12px;
		font-size: 24px;
		line-height: 1.20;
	}
	body.aam-job-detail-page-body .aam-job-detail-meta__item {
		gap: 6px;
	}
    body.aam-job-detail-page-body .aam-job-detail-columns {
        grid-template-columns: 1fr;
        gap: 20px;
		margin-bottom:16px;
    }
	
	body.aam-job-detail-page-body .aam-job-detail-apply {
    	margin-top: 20px;
	}
    body.aam-job-detail-page-body .aam-job-detail-apply {
        justify-content: center;
    }

    body.aam-job-detail-page-body .aam-job-detail-apply-btn {
        width: 100%;
		font-size: 14px;
    }
	body.aam-job-detail-page-body .aam-job-detail-meta{
		font-size:15px;
	}
	body.aam-job-detail-page-body .aam-job-detail-intro p {
		margin: 0 0 6px;
		font-size: 14px;
		line-height: 22px;
	}
	body.aam-job-detail-page-body .aam-job-detail-col h2 {
		margin: 0 0 10px;
		font-size: 18px;
		line-height: 26px;
	}
	body.aam-job-detail-page-body .aam-job-detail-intro {
		margin-bottom: 28px;
		/* max-width: 95%; */
	}
	body.aam-job-detail-page-body .aam-job-detail-col--role p {
		margin: 0 0 6px;
		font-size: 14px;
		line-height: 22px;
		letter-spacing: 0.3px;
	}
	body.aam-job-detail-page-body .aam-job-detail-check-icon {
		width: 22px;
		height: 22px;
	}
	body.aam-job-detail-page-body .aam-job-detail-qualifications-list li{
		font-size:15px;
		line-height:23px;
	}
}


/* =========================================================================
   JOB DETAIL PAGE APPLICATION FORM MODAL (body.aam-job-detail-page-body)
   ========================================================================= */
body.aam-job-detail-page-body .aam-job-application {
    position: fixed;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    top: auto;
    left: auto;
    display: flex;
    width: min(450px, calc(100vw - 40px));
    max-height: calc(100vh - 60px);
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    border: 0;
    border-radius: 24px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 34px rgba(0, 0, 0, 0.75);
    color: #12081c;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.32s var(--aam-ease), transform 0.32s var(--aam-ease);
    backdrop-filter: blur(35px);
}

body.aam-job-detail-page-body .aam-job-application.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

body.aam-job-detail-page-body .aam-job-application__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    pointer-events: none;
    object-fit: cover;
    object-position: center;
}

body.aam-job-detail-page-body .aam-job-application__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

body.aam-job-detail-page-body .aam-job-application h3 {
    margin: 0;
    color: #12081c;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-application .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

body.aam-job-detail-page-body .aam-job-application .wpcf7-form p {
    margin: 0;
    margin-top: -6px;
    margin-bottom: 20px;
}

body.aam-job-detail-page-body .aam-job-application .aam-cf-input {
    display: flex;
    width: 100%;
    height: 46px;
    align-items: center;
    border-radius: 12px;
    padding: 0 16px;
    background: rgba(18, 8, 28, 0.08);
    backdrop-filter: blur(15px);
    color: #12081c;
    font: inherit;
    outline: 0;
    position: relative;
}

body.aam-job-detail-page-body .aam-job-application .aam-cf-input:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(35deg, #F51735 0%, rgba(234, 21, 89, .6) 20%, rgba(234, 21, 89, 0) 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

body.aam-job-detail-page-body .aam-job-application .aam-cf-input::placeholder {
    color: rgba(18, 8, 28, 0.6);
    font-size: 15px;
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-application textarea.aam-cf-textarea {
    height: 120px;
    padding-top: 14px;
    resize: none;
    background: rgba(18, 8, 28, 0.08);
}

body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap.cv {
    position: relative;
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 12px;
    padding: 0 6px 0 16px;
    background: rgba(18, 8, 28, 0.08);
    backdrop-filter: blur(15px);
}

body.aam-job-detail-page-body .aam-job-application .aam-cf-file {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap.cv::before {
    content: "Add your CV";
    position: relative;
    z-index: 1;
    color: rgba(18, 8, 28, 0.6);
    font-size: 15px;
    letter-spacing: 0.3px;
}

body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap.cv::after {
    content: "Browse";
    position: relative;
    z-index: 3;
    display: inline-flex;
    margin-left: auto;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #f51735;
    border-radius: 9px;
    padding: 0 21px;
    background: linear-gradient(109deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    color: var(--aam-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    pointer-events: none;
}

body.aam-job-detail-page-body .aam-job-application .aam-cf-submit {
    display: inline-flex;
    width: 100%;
    height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #f51735;
    border-radius: 12px;
    padding: 0 24px;
    background: linear-gradient(118deg, #f51735 9.44%, rgba(234, 21, 89, 0.7) 92.36%);
    color: var(--aam-white);
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@media (max-width: 599px) {
    body.aam-job-detail-page-body .aam-job-application {
        right: 15px;
        bottom: 35px;
        left: 15px;
        width: calc(100vw - 30px);
        max-height: calc(100vh - 30px);
    }
}


/* Mandatory fields indicators (red star) next to the placeholder text */
.aam-job-application .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/* .aam-job-application .wpcf7-form-control-wrap[data-name="your-name"]:has(input:placeholder-shown)::after {
    content: " *";
    color: #f51735;
    position: absolute;
    left: 88px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* .aam-job-application .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after {
    content: " *";
    color: #f51735;
    position: absolute;
    left: 119px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* .aam-job-application .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 87px;
    top: 16px;
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* .aam-job-application__upload:not(.has-file) .aam-job-application__upload-text::after {
    content: "*";
    color: #f51735;
    margin-left: 4px;
    font-size: 16px;
    font-weight: 500;
} */

@media (min-width: 1920px) {
/*     body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap[data-name="your-name"]:has(input:placeholder-shown)::after,
    body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap[data-name="your-name"]:has(input:placeholder-shown)::after {
        left: clamp(102px, 5.4vw, 220px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
    body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after,
    body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after {
        left: clamp(126px, 7.4vw, 270px);
        font-size: clamp(15px, 0.95vw, 34px);
    } */
/* 	body.aam-jobs-body .aam-job-application .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after,
    body.aam-job-detail-page-body .aam-job-application .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after {
        left: clamp(87px, 5.2vw, 210px);
        top: clamp(16px, 1vw, 36px);
        font-size: clamp(15px, 0.95vw, 34px);
    } */
}


/* Custom Footer Newsletter Success Message Overrides */
.aam-footer-success[hidden] {
    display: none !important;
}

/* Footer Newsletter mandatory star next to placeholder text */
/* .aam-footer__field-wrap .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
} */

/* .aam-footer__field-wrap .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after,
.aam-footer__field-wrap .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 95px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
} */

/* @media (min-width: 1920px) {
	.aam-footer__field-wrap .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after,
    .aam-footer__field-wrap .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after {
        left: clamp(88px, 7vw, 225px);
        font-size: clamp(15px, 1.05vw, 34px);
    }
} */

/* Custom Contact Form Success Message Styling */
.aam-contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    display: none !important;
}

.aam-contact-success-msg {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #21A316;
    align-self: flex-start;
}

.aam-contact-success-msg[hidden] {
    display: none !important;
}

.aam-contact-success-msg .aam-success-icon {
    width: 16.85px;
    height: 16.85px;
    min-width: 16.85px;
    min-height: 16.85px;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
}

.aam-contact-success-msg .aam-success-text {
    font-size: 14px;
    font-weight: 500;
    color: #21A316;
    line-height: 18px;
}

/* Contact Form mandatory star next to placeholder text */
.aam-contact-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}

/* Name Star */
/* .aam-contact-form .wpcf7-form-control-wrap[data-name="your_name"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="your-name"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="name"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 100px;
    top: 60%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* Company Name Star */
/* .aam-contact-form .wpcf7-form-control-wrap[data-name="company_name"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="company-name"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="company"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 138px;
    top: 60%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* Email Star */
/* .aam-contact-form .wpcf7-form-control-wrap[data-name="email_address"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 124px;
    top: 60%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* How Found Star */
/* .aam-contact-form .wpcf7-form-control-wrap[data-name="how_found"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="how-found"]:has(input:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="find-us"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 172px;
    top: 55%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
} */

/* Message Star */
/* .aam-contact-form .wpcf7-form-control-wrap[data-name="your-message"]:has(textarea:placeholder-shown)::after,
.aam-contact-form .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 353px;
    top: 26px;
    pointer-events: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
} */

/* @media (max-width: 480px) {
    .aam-contact-form .wpcf7-form-control-wrap[data-name="your-message"]:has(textarea:placeholder-shown)::after,
    .aam-contact-form .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after {
        left: auto;
        right: 18px;
    }
} */

/* @media (min-width: 1920px) {
	body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="your_name"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="your-name"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="name"]:has(input:placeholder-shown)::after {
        left: clamp(100px, 5.9vw, 240px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
	body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="company_name"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="company-name"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="company"]:has(input:placeholder-shown)::after {
        left: clamp(138px, 7.4vw, 270px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="email_address"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after {
        left: clamp(124	px, 7.8vw, 290px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
	 body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="how_found"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="how-found"]:has(input:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="find-us"]:has(input:placeholder-shown)::after {
        left: clamp(172px, 10.7vw, 410px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="your-message"]:has(textarea:placeholder-shown)::after,
    body.aam-contact-body .aam-contact-form .wpcf7-form-control-wrap[data-name="message"]:has(textarea:placeholder-shown)::after {
        left: clamp(353px, 21.1vw, 810px);
        top: clamp(26px, 1vw, 36px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
} */

/* Custom Media Inquiries Success Message Styling */
/* body.aam-contact-body .aam-contact-email {
    position: relative !important;
} */

.aam-contact-media-success {
/*     position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important; */
	position: relative !important;
    margin-top: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
/*     margin: 0 !important; */
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    color: #21A316 !important;
    white-space: nowrap !important;
    z-index: 10 !important;
}

.aam-contact-media-success[hidden] {
    display: none !important;
}

.aam-contact-media-success .aam-success-icon {
    width: 16.85px !important;
    height: 16.85px !important;
    min-width: 16.85px !important;
    min-height: 16.85px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.aam-contact-media-success .aam-success-text {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #14C206 !important;
    line-height: 18px !important;
}

/* Media Inquiries form mandatory star */
.aam-contact-email .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/* .aam-contact-email .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after,
.aam-contact-email .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after {
    content: "*";
    color: #f51735;
    position: absolute;
    left: 102px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
} */

/* @media (min-width: 1920px) {
    .aam-contact-media-success {
		 margin-top: clamp(12px, 0.8vw, 28px) !important;
    }
    .aam-contact-email .wpcf7-form-control-wrap[data-name="your-email"]:has(input:placeholder-shown)::after,
    .aam-contact-email .wpcf7-form-control-wrap[data-name="email"]:has(input:placeholder-shown)::after {
        left: clamp(102px, 6.2vw, 240px);
        font-size: clamp(15px, 0.95vw, 34px);
    }
} */



/* ═══════════════════════════════════════
   BLOG LISTING STYLES
   ═══════════════════════════════════════ */
section.aam-blog-listing {
    position: relative;
    padding-bottom: 100px;
}
.aam-blog-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-right: 70px;
    padding-left: 70px;
}
.blog_card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.single_card {
    display: flex;
    min-height: 178px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    overflow: hidden;
    border-radius: 24px;
    background: rgb(30 24 41);
    color: inherit;
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.45s var(--aam-ease), border-color 0.45s var(--aam-ease), background 0.45s var(--aam-ease), box-shadow 0.45s var(--aam-ease);
}
.img_frm img {
    position: relative;
    z-index: 1;
    display: block;
    aspect-ratio: 3 / 2;
    text-align: center;
    margin: 0 auto;
    border: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.img_frm {
    width: 100%;
    position: relative;
}
.img_frm:after {
    content: "";
    background: linear-gradient(180deg, rgba(26, 18, 41, 0.10) 24.39%, #1e1829 88.6%);
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog_det {
    display: flex;
    padding: 0 24px 20px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}
.blog_det h4 {
    overflow: hidden;
    color: #fff;
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.2px;
    margin: 0px;
	min-height:70px;
    align-self: stretch;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: break-word;
}
.blog_det a {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
	opacity: 0.7;
    gap: 4px;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.blog_det a:hover,
.single_card:hover .blog_det a {
    color: #f51735;
    opacity: 1;
}
.blog_det a span {
    display: inline-flex;
    align-items: center;
}
.blog_det a span img {
    width: 24px;
    height: 24px;
    margin-left: 6px;
}

.blog_det a span img.ic-hover {
    display: none;
}

.blog_det a:hover span img.ic-default,
.single_card:hover .blog_det a span img.ic-default {
    display: none !important;
}

.blog_det a:hover span img.ic-hover,
.single_card:hover .blog_det a span img.ic-hover {
    display: inline-block !important;
}

.single_card:hover, .single_card:focus-visible {
    border-color: rgba(245, 23, 53, 0.62) !important;
    background: rgb(30 24 41);
    box-shadow: 0 22px 54px rgba(10, 4, 18, 0.28);
    transform: translateY(-5px);
    outline: none;
}
.blog_det a span img {
    width: 22px;
    height: 22px;
    margin-left: 6px;
}
@media(min-width: 1000px) and (max-width: 1280px) {
    .aam-blog-container {
        padding-right: 60px;
        padding-left: 60px;
    }
    .single_card {
        border-radius: 20px;
    }
    .blog_det {
        display: flex;
        padding: 0 20px 20px 20px;
        gap: 14px;
        margin-top: -40px;
    }
    .blog_card {
        gap: 20px;
    }
    .blog_det h4 {
        font-size: 16px;
        line-height: 22px;
        max-height: 72px;
    }
}
@media(min-width: 600px) and (max-width: 1000px) {
    .aam-blog-container {
        padding-right: 42px;
        padding-left: 42px;
    }
    .single_card {
        border-radius: 24px;
    }
    .blog_det {
        display: flex;
        padding: 0 20px 20px 20px;
        gap: 18px;
        margin-top: -50px;
    }
    .blog_card {
        gap: 20px;
    }
    .blog_det h4 {
        font-size: 18px;
        line-height: 25px;
        max-height: 80px;
    }
    .blog_card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}
@media(max-width: 600px) {
    .aam-blog-container {
        padding-right: 16px;
        padding-left: 16px;
    }
    .single_card {
        border-radius: 18px;
    }
    .blog_det {
        display: flex;
        padding: 0 16px 16px 16px;
        gap: 14px;
        margin-top: -30px;
    }
    .blog_card {
        gap: 20px;
    }
    .blog_det h4 {
        font-size: 16px;
        line-height: 23px;
        max-height: 72px;
    }
    .blog_card {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
}


/* ═══════════════════════════════════════
   BLOG DETAIL STYLES
   ═══════════════════════════════════════ */
body.aam-blog-detail-body .aam-blog-detail-page,
body.aam-category-body .aam-blog-detail-page {
    position: relative;
    overflow: hidden;
    background: var(--aam-bg);
    color: var(--aam-white);
}
body.aam-blog-detail-body .aam-blog-detail-page__bg,
body.aam-category-body .aam-blog-detail-page__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}
body.aam-blog-detail-body .aam-blog-detail-hero,
body.aam-category-body .aam-blog-detail-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: var(--aam-page-pad);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 120px;
	padding-bottom: 20px;
}
body.aam-category-body .aam-blog-detail-hero{
	padding-bottom:40px;
}
body.aam-blog-detail-body .aam-blog-detail-back,
body.aam-category-body .aam-blog-detail-back {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
body.aam-blog-detail-body .aam-blog-detail-back:hover,
body.aam-category-body .aam-blog-detail-back:hover {
    opacity: 1;
}
body.aam-blog-detail-body .aam-blog-detail-back img,
body.aam-category-body .aam-blog-detail-back img {
    display: block;
    width: 100%;
    height: 100%;
}
body.aam-blog-detail-body .aam-blog-detail-hero h1,
body.aam-category-body .aam-blog-detail-hero h1 {
    max-width: 800px;
    font-size: 34px;
    line-height: 44px;
    color: #fff;
	font-weight: 600;
    margin: 0;
}

body.aam-category-body .aam-blog-detail-hero h1.aam-category-heading {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

body.aam-category-body .aam-blog-detail-hero h1.aam-category-heading span {
    color: #FFFFFF;
	font-weight: 600;
}

.aam-category-listing {
    padding-bottom: 100px;
}
/* Category Page Pagination Styling */
.aam-category-listing .navigation.pagination,
.aam-blog-listing .navigation.pagination {
    margin-top: 48px;
    text-align: center;
}
.aam-category-listing .nav-links,
.aam-blog-listing .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.aam-category-listing .nav-links a,
.aam-category-listing .nav-links span,
.aam-blog-listing .nav-links a,
.aam-blog-listing .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
    font-family: "Instrument Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease;
}
.aam-category-listing .nav-links a:hover,
.aam-blog-listing .nav-links a:hover {
    background: rgba(245, 23, 53, 0.6);
    color: #FFFFFF !important;
}
.aam-category-listing .nav-links .current,
.aam-blog-listing .nav-links .current {
    background: linear-gradient(98deg, rgba(245, 23, 53, 0.8) 9.44%, rgba(234, 21, 89, 0.8) 92.36%);
    color: #FFFFFF !important;
}
/* 4K Ultra-Wide Screen Scaling */
@media (min-width: 1800px) {
    .aam-blog-container {
        max-width: 1680px;
    }
    body.aam-case-detail-body .aam-case-detail-hero.blog h1.aam-category-heading {
        font-size: 38px;
        line-height: 48px;
    }
    .blog_card {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
/*     margin-bottom: 10px; */
}

/* body.aam-case-detail-body .aam-case-detail-hero a.category,
body.aam-case-detail-body .aam-case-detail-hero .blog-categories a, */
a.category {
    display: inline-flex;
    padding: 9px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: linear-gradient(98deg, rgba(245, 23, 53, 0.40) 9.44%, rgba(234, 21, 89, 0.28) 92.36%);
    color: #ffffff !important;
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    white-space: nowrap;
/*     transition: opacity 0.25s ease, transform 0.25s ease; */
}
body.aam-case-detail-body .aam-case-detail-hero a.category:hover,
body.aam-case-detail-body .aam-case-detail-hero a.category:focus,
body.aam-case-detail-body .aam-case-detail-hero .blog-categories a:hover,
body.aam-case-detail-body .aam-case-detail-hero .blog-categories a:focus,
a.category:hover,
a.category:focus,
.category:hover,
.category:focus {
/*     opacity: 0.85; */
    color: #ffffff;
    color: #FFFFFF !important;
    text-decoration: none !important;
    text-decoration-color: transparent !important;
}

.date {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.54px;
    opacity: 0.9;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 12px;
    align-items: center;
}
.date i {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.22);
}
.date span {
    display: flex;
    align-items: center;
    gap: 5px;
	text-transform: capitalize;
}

.date span.date-time {
    text-transform: none;
}

.date span img {
    opacity: 0.55;
    width: 22px;
    height: 22px;
}
section.aam-case-detail-video.img {
	position: relative;
    z-index: 1;
    width: 100%;
/*     height: auto;
    aspect-ratio: 16 / 9;
    height: min(780px, 52vw);
    overflow: hidden;
	margin:50px 0px; */
	max-width: none;
    height: min(780px, 52vw);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 50px 0;
    padding: 0;
}
section.aam-case-detail-video.img img {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 0;
}
.mid_content p, .mid_content li {
    color: rgba(255, 255, 255, 0.65);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.32px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.mid_content p strong, .mid_content li strong {
/*     color: #fff; */
	color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.mid_content span {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    margin-top: 38px;
    margin-bottom: 12px;
}
.mid_content {
    max-width: 70%;
    margin: 0 auto;
}
section.aam-blog-detail-content {
    padding: 20px 0px 90px 0px;
}
.aam-about-testimonials__header {
    display: grid;
/*     grid-template-columns: minmax(180px, 260px) minmax(0, 620px); */
	grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 54px;
    align-items: start;
    margin-bottom: 50px;
}
.aam-testimonials.blog {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aam-about-testimonials__header h2 {
    margin: 0;
    color: var(--aam-white);
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0.5px;
	max-width: 680px;
}
.aam-about-testimonials__header h2 span {
    color: rgba(255, 255, 255, 0.48);
}
section.aam-about-testimonials.blog {
    padding-bottom: 90px;
}
section.blog_detail {
    padding-bottom: 100px;
}
@media(min-width: 1000px) and (max-width: 1280px) {
    body.aam-case-detail-body .aam-case-detail-hero.blog {
        padding-right: 60px;
        padding-left: 60px;
        padding-bottom: 50px;
    }
    body.aam-case-detail-body .aam-case-detail-hero.blog h1 {
        max-width: 75%;
    }
    section.aam-blog-detail-content {
        padding: 0px 0px 70px 0px;
    }
    section.blog_detail {
        padding-bottom: 80px;
    }
    .date {
        font-size: 17px;
    }
	.aam-about-testimonials__header {
        gap: 32px;
        margin-bottom: 40px;
    }
    .aam-about-testimonials__header h2 {
        font-size: 34px;
        line-height: 38px;
        max-width: 70%;
    }
	body.aam-blog-detail-body .aam-blog-detail-hero, body.aam-category-body .aam-blog-detail-hero{
		padding-right: 60px;
        padding-left: 60px;
	}
	body.aam-category-body .aam-blog-detail-hero{
		padding-bottom: 30px;
	}
	section.aam-case-detail-video.img{
		margin:30px 0px;
	}
	body.aam-blog-detail-body .aam-blog-detail-hero h1, body.aam-category-body .aam-blog-detail-hero h1 {
		max-width: 90%;
		font-size: 30px;
		line-height: 42px;
	}
	.aam-about-testimonials__header .aam-eyebrow span{
		font-size:18px;
	}
}
@media(min-width: 600px) and (max-width: 1000px) {
    body.aam-case-detail-body .aam-case-detail-hero.blog, 
	body.aam-blog-detail-body .aam-blog-detail-hero, 
	body.aam-category-body .aam-blog-detail-hero {
        padding-right: 42px;
        padding-left: 42px;
        padding-bottom: 10px;
        padding-top: 110px;
		gap:14px;
    }
	body.aam-category-body .aam-blog-detail-hero{
		padding-bottom: 24px;
	}
    body.aam-case-detail-body .aam-case-detail-hero.blog h1 {
        max-width: 100%;
        font-size: 30px;
        line-height: 40px;
        color: #fff;
    }
	section.aam-case-detail-video.img {
    	margin: 30px 0;
	}
	body.aam-blog-detail-body .aam-blog-detail-hero h1, body.aam-category-body .aam-blog-detail-hero h1 {
		max-width: 90%;
		font-size: 30px;
		line-height: 40px;
	}
    section.aam-blog-detail-content {
        padding: 10px 0px 60px 0px;
    }
    .mid_content {
        max-width: 100%;
        margin: 0 auto;
    }
    section.blog_detail, section.aam-about-testimonials.blog {
        padding-bottom: 80px;
    }
    .date {
        font-size: 16px;
    }
	.aam-about-testimonials__header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    .aam-about-testimonials__header h2 {
        font-size: 28px;
        line-height: 34px;
    }
}
@media(max-width: 600px) {
    body.aam-case-detail-body .aam-case-detail-hero.blog {
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 40px;
        padding-top: 100px;
        gap: 16px;
    }
	section.aam-case-detail-video.img{
		margin:24px 0px;
	}
	body.aam-blog-detail-body .aam-blog-detail-hero h1, body.aam-category-body .aam-blog-detail-hero h1 {
		max-width: 800px;
		font-size: 24px;
		line-height: 30px;
	}
	body.aam-blog-detail-body .aam-blog-detail-hero, body.aam-category-body .aam-blog-detail-hero{
		padding-top: 100px;
		padding-left:16px;
		padding-right:16px;
        padding-bottom: 8px;
	}
    body.aam-case-detail-body .aam-case-detail-hero.blog h1 {
        max-width: 100%;
        font-size: 24px;
        line-height: 32px;
        color: #fff;
    }
    section.aam-blog-detail-content {
        padding: 10px 0px 60px 0px;
    }
    .mid_content {
        max-width: 100%;
        margin: 0 auto;
    }
    section.blog_detail {
        padding-bottom: 80px;
    }
    .date {
        font-size: 15px;
    }
    .date span img {
        width: 20px;
        height: 20px;
    }
	.aam-about-testimonials__header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .aam-about-testimonials__header h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

.blog-cat-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 3px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: normal;
    text-transform: uppercase;
}

.aam-about-testimonials__header h2 span.grey-hl {
    color: rgba(255, 255, 255, 0.48);
}


/* =========================================================================
   LARGE SCREENS (1920px+ / 4K) — BLOG, BLOG DETAIL & CATEGORY ARCHIVE
   ========================================================================= */
@media (min-width: 1920px) {
    /* Shared Blog Container Alignment (Matched to Jobs Page container: 1440px centered) */
    .aam-blog-container,
	body.aam-blogs-body .aam-services-container,
    body.aam-blog-detail-body .aam-blog-detail-hero,
    body.aam-category-body .aam-blog-detail-hero,
/*     body.aam-blog-detail-body .aam-case-detail-video.img, */
    section.aam-blog-detail-content .aam-blog-container {
        width: 100%;
/*         max-width: clamp(1440px, 92vw, 2400px); */
		max-width: 100%;
        margin-right: auto;
        margin-left: auto;
/* 		padding-right: clamp(60px, 4.5vw, 120px);
        padding-left: clamp(60px, 4.5vw, 120px); */
		padding-left: clamp(70px, 9vw, 360px);
        padding-right: clamp(70px, 9vw, 360px);
    }
    /* ── 1. Main Blog Page (/blog) ── */
    body.aam-blogs-body .aam-services-hero {
        padding-top: clamp(130px, 7vw, 260px);
        padding-bottom: clamp(50px, 3vw, 110px);
    }
    body.aam-blogs-body .aam-services-hero h1 {
        font-size: clamp(50px, 3.2vw, 110px);
        line-height: clamp(58px, 3.6vw, 125px);
        max-width: clamp(800px, 48vw, 1700px);
    }
    body.aam-blogs-body .aam-services-hero__copy > p {
        font-size: clamp(16px, 1.05vw, 36px);
        line-height: clamp(24px, 1.6vw, 54px);
        max-width: clamp(1100px, 64vw, 2200px);
    }
    body.aam-blogs-body .aam-blog-listing {
        padding-bottom: clamp(100px, 6vw, 220px);
    }
    /* Blog Card Grid Scaling */
    .blog_card {
        gap: clamp(24px, 1.8vw, 54px);
    }
    .single_card {
        border-radius: clamp(24px, 1.4vw, 44px);
    }
    .blog_det {
        padding: 0 clamp(24px, 1.5vw, 48px) clamp(20px, 1.3vw, 40px) clamp(24px, 1.5vw, 48px);
        gap: clamp(20px, 1.2vw, 40px);
        margin-top: clamp(-60px, -3vw, -90px);
    }
    .blog_det h4 {
        font-size: clamp(18px, 1.05vw, 34px);
        line-height: clamp(25px, 1.45vw, 46px);
        min-height: clamp(70px, 4vw, 130px);
    }
    .blog_det a {
        font-size: clamp(15px, 0.85vw, 26px);
        letter-spacing: 0.2px;
    }
    .blog_det a span img {
        width: clamp(24px, 1.4vw, 42px);
        height: clamp(24px, 1.4vw, 42px);
        margin-left: clamp(6px, 0.4vw, 14px);
    }
    /* ── 2. Blog Detail Page (single-post.php) ── */
    body.aam-blog-detail-body .aam-blog-detail-hero {
        padding-top: clamp(120px, 6.5vw, 240px);
        padding-bottom: clamp(20px, 1.5vw, 50px);
    }
    body.aam-blog-detail-body .aam-blog-detail-hero h1 {
        max-width: clamp(800px, 50vw, 1700px);
        font-size: clamp(32px, 2.2vw, 70px);
        line-height: clamp(42px, 2.7vw, 84px);
    }
    body.aam-blog-detail-body .aam-blog-detail-back,
    body.aam-category-body .aam-blog-detail-back {
        width: clamp(32px, 2vw, 60px);
        height: clamp(32px, 2vw, 60px);
    }
    body.aam-blog-detail-body .aam-blog-detail-back img,
    body.aam-category-body .aam-blog-detail-back img {
        width: clamp(24px, 1.4vw, 42px);
        height: clamp(24px, 1.4vw, 42px);
    }
    a.category {
        padding: clamp(9px, 0.6vw, 18px) clamp(16px, 1vw, 32px);
        font-size: clamp(14px, 0.8vw, 24px);
        gap: clamp(10px, 0.6vw, 20px);
    }
    .date {
        font-size: clamp(16px, 0.95vw, 28px);
        gap: clamp(12px, 0.8vw, 24px);
    }
    .date span img {
        width: clamp(20px, 1.2vw, 36px);
        height: clamp(20px, 1.2vw, 36px);
    }
    section.aam-case-detail-video.img {
        width: 100%;
        max-width: none;
        height: clamp(550px, 34vw, 1100px);
        margin: clamp(30px, 2.5vw, 80px) 0;
        padding: 0;
    }
    section.aam-blog-detail-content {
        padding: clamp(20px, 1.5vw, 50px) 0 clamp(70px, 4vw, 140px) 0;
    }
    .mid_content {
        max-width: clamp(70%, 62vw, 1500px);
    }
    .mid_content p {
        font-size: clamp(16px, 1.05vw, 32px);
        line-height: clamp(26px, 1.7vw, 52px);
    }
    .mid_content span {
        font-size: clamp(22px, 1.4vw, 44px);
        line-height: clamp(30px, 1.8vw, 58px);
        margin-top: clamp(30px, 2vw, 60px);
    }
    .mid_content strong {
        font-size: clamp(16px, 1.05vw, 32px);
        line-height: clamp(26px, 1.7vw, 52px);
    }
	
	body.aam-blog-detail-body .aam-about-testimonials__header {
        grid-template-columns: clamp(190px, 14vw, 450px) 1fr;
        gap: clamp(54px, 4vw, 120px);
        margin-bottom: clamp(32px, 2vw, 80px);
    }
    body.aam-blog-detail-body .aam-about-testimonials__header h2 {
        font-size: clamp(40px, 2.4vw, 72px);
        line-height: clamp(46px, 2.8vw, 82px);
        max-width: clamp(680px, 40vw, 1200px);
    }
	
    /* ── 3. Category Page (category.php) ── */
    body.aam-category-body .aam-blog-detail-hero h1.aam-category-heading {
        font-size: clamp(32px, 2.2vw, 70px);
        line-height: clamp(42px, 2.7vw, 84px);
    }
    .aam-category-listing .navigation.pagination,
    .aam-blog-listing .navigation.pagination {
        margin-top: clamp(48px, 3vw, 100px);
    }
    .aam-category-listing .nav-links a,
    .aam-category-listing .nav-links span,
    .aam-blog-listing .nav-links a,
    .aam-blog-listing .nav-links span {
        padding: clamp(10px, 0.6vw, 20px) clamp(18px, 1.1vw, 36px);
        font-size: clamp(15px, 0.9vw, 28px);
    }
	
	/* ── 4. Job Application Modal Fluid Scaling (4K) ── */
    body.aam-jobs-body .aam-job-application,
    .aam-job-application {
        width: clamp(450px, 24vw, 750px);
        padding: clamp(28px, 1.5vw, 48px) clamp(24px, 1.3vw, 42px);
        border-radius: clamp(24px, 1.4vw, 44px);
        right: clamp(20px, 1.5vw, 48px);
        bottom: clamp(20px, 1.5vw, 48px);
    }
    body.aam-jobs-body .aam-job-application h3,
    .aam-job-application h3 {
        font-size: clamp(20px, 1.1vw, 36px);
        line-height: clamp(26px, 1.4vw, 44px);
        margin-bottom: clamp(16px, 0.9vw, 30px);
    }
    .aam-jm-apply-form {
        gap: clamp(16px, 0.9vw, 28px);
    }
    .aam-jm-field input[type="text"],
    .aam-jm-field input[type="email"],
    .aam-jm-field textarea {
        padding: clamp(14px, 0.8vw, 26px) clamp(18px, 1vw, 34px);
        border-radius: clamp(12px, 0.7vw, 22px);
        font-size: clamp(15px, 0.85vw, 26px);
    }
    .aam-jm-field input[type="text"],
    .aam-jm-field input[type="email"] {
        height: clamp(46px, 2.6vw, 82px);
    }
    .aam-jm-field textarea {
        height: clamp(120px, 6.5vw, 210px);
    }
    .aam-jm-field input::placeholder,
    .aam-jm-field textarea::placeholder {
        font-size: clamp(15px, 0.85vw, 26px);
    }
    .aam-jm-file-display {
        height: clamp(54px, 3vw, 94px);
        padding: 0 clamp(6px, 0.4vw, 12px) 0 clamp(16px, 0.9vw, 30px);
        border-radius: clamp(12px, 0.7vw, 22px);
    }
    .aam-jm-file-display .aam-job-application__upload-text {
        font-size: clamp(15px, 0.85vw, 26px);
    }
    .aam-jm-browse-btn {
        height: clamp(40px, 2.2vw, 70px);
        padding: 0 clamp(21px, 1.2vw, 38px);
        font-size: clamp(14px, 0.8vw, 24px);
        border-radius: clamp(9px, 0.5vw, 16px);
    }
    .aam-job-application__upload-note {
        font-size: clamp(13px, 0.75vw, 22px);
        margin-top: clamp(8px, 0.4vw, 14px);
    }
    .aam-jm-actions {
        gap: clamp(16px, 0.9vw, 28px);
        margin-top: clamp(10px, 0.6vw, 20px);
    }
    .aam-jm-btn-cancel,
    .aam-jm-btn-submit {
        height: clamp(48px, 2.6vw, 76px);
        padding: 0 clamp(24px, 1.4vw, 44px);
        font-size: clamp(16px, 0.95vw, 24px) !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px;
        border-radius: clamp(12px, 0.7vw, 20px);
    }
	
	.aam-field-error {
        font-size: clamp(13px, 0.75vw, 20px);
        margin-top: clamp(6px, 0.35vw, 10px);
        line-height: clamp(18px, 1vw, 28px);
    }
    .aam-job-application__feedback-msg {
        gap: clamp(8px, 0.5vw, 16px);
        margin-top: clamp(14px, 0.8vw, 26px);
    }
    .aam-job-application__feedback-msg .aam-feedback-icon {
        width: clamp(18px, 1.1vw, 32px);
        height: clamp(18px, 1.1vw, 32px);
    }
    .aam-job-application__feedback-msg .aam-feedback-text {
        font-size: clamp(15px, 0.9vw, 24px);
        line-height: clamp(22px, 1.3vw, 34px);
    }
}