/* =========================================================
   ASSURED V2 — MAIN STYLESHEET
   Design System: "Signal" — dark premium performance agency
   ========================================================= */

/* ─── 1. CUSTOM PROPERTIES ──────────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --am-blue:         #0062ff;
  --am-cyan:         #04befe;
  --am-orange:       #ff5339;
  --am-warm-orange:  #ffb664;
  --am-dark:         #13161c;
  --am-deep:         #16253b;
  --am-white:        #ffffff;
  --am-muted:        rgba(255, 255, 255, 0.72);
  --am-subtle:       rgba(255, 255, 255, 0.45);
  --am-border:       rgba(255, 255, 255, 0.10);
  --am-border-blue:  rgba(0, 98, 255, 0.35);

  /* Gradients */
  --am-grad-blue:    linear-gradient(135deg, #0062ff 0%, #04befe 100%);
  --am-grad-orange:  linear-gradient(135deg, #ff5339 0%, #ffb664 100%);
  --am-grad-dark:    linear-gradient(180deg, #13161c 0%, #16253b 100%);
  --am-grad-card:    linear-gradient(145deg, rgba(22, 37, 59, 0.8) 0%, rgba(19, 22, 28, 0.9) 100%);
  --am-grad-glow:    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 98, 255, 0.18) 0%, transparent 70%);
  --am-grad-orb-1:   radial-gradient(ellipse 70% 70% at 20% 30%, rgba(0, 98, 255, 0.22) 0%, transparent 65%);
  --am-grad-orb-2:   radial-gradient(ellipse 60% 60% at 80% 70%, rgba(4, 190, 254, 0.14) 0%, transparent 60%);
  --am-grad-orb-3:   radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 83, 57, 0.12) 0%, transparent 65%);

  /* Typography */
  --am-font:         'Lexend', system-ui, sans-serif;
  --am-font-serif:   'Playfair Display', Georgia, serif;

  /* Fluid Type Scale */
  --am-text-xs:      clamp(0.70rem,  1.2vw, 0.80rem);
  --am-text-sm:      clamp(0.825rem, 1.6vw, 0.925rem);
  --am-text-base:    clamp(0.975rem, 2.0vw, 1.075rem);
  --am-text-md:      clamp(1.05rem,  2.2vw, 1.2rem);
  --am-text-lg:      clamp(1.2rem,   2.5vw, 1.375rem);
  --am-text-xl:      clamp(1.375rem, 3.0vw, 1.625rem);
  --am-text-2xl:     clamp(1.625rem, 3.5vw, 2.125rem);
  --am-text-3xl:     clamp(2.0rem,   4.5vw, 2.875rem);
  --am-text-4xl:     clamp(2.5rem,   5.5vw, 3.875rem);
  --am-text-5xl:     clamp(3.25rem,  7.0vw, 5.25rem);
  --am-text-hero:    clamp(3.5rem,   9.0vw, 7.5rem);

  /* Spacing */
  --am-s1:   0.25rem;
  --am-s2:   0.5rem;
  --am-s3:   0.75rem;
  --am-s4:   1rem;
  --am-s5:   1.25rem;
  --am-s6:   1.5rem;
  --am-s8:   2rem;
  --am-s10:  2.5rem;
  --am-s12:  3rem;
  --am-s16:  4rem;
  --am-s20:  5rem;
  --am-s24:  6rem;
  --am-s32:  8rem;
  --am-s40:  10rem;
  --am-s48:  12rem;

  /* Border Radius */
  --am-r-sm:   0.5rem;
  --am-r-md:   0.875rem;
  --am-r-lg:   1.25rem;
  --am-r-xl:   1.75rem;
  --am-r-full: 9999px;

  /* Transitions */
  --am-ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --am-ease-out:  cubic-bezier(0.16, 1.00, 0.30, 1.00);
  --am-ease-in:   cubic-bezier(0.55, 0.00, 1.00, 0.45);
  --am-t-fast:    0.18s;
  --am-t-mid:     0.36s;
  --am-t-slow:    0.65s;

  /* Z-Index */
  --am-z-bg:      -1;
  --am-z-base:     1;
  --am-z-card:     10;
  --am-z-nav:      100;
  --am-z-loader:   999;

  /* Layout */
  --am-max:        1280px;
  --am-max-wide:   1440px;
  --am-gutter:     clamp(1.25rem, 4vw, 3rem);
}

/* ─── 2. RESET & BASE ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--am-font);
  font-size: var(--am-text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--am-muted);
  background-color: var(--am-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lenis smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── 3. SKIP LINK ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--am-s4);
  z-index: calc(var(--am-z-loader) + 1);
  padding: var(--am-s3) var(--am-s6);
  background: var(--am-blue);
  color: var(--am-white);
  font-weight: 600;
  font-size: var(--am-text-sm);
  border-radius: var(--am-r-md);
  text-decoration: none;
  transition: top var(--am-t-fast);
}

.skip-link:focus {
  top: var(--am-s4);
}

/* ─── 4. PAGE LOADER ─────────────────────────────────────────────────────── */
.am-loader {
  position: fixed;
  inset: 0;
  z-index: var(--am-z-loader);
  background: var(--am-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--am-s6);
}

.am-loader__logo {
  width: 120px;
  opacity: 0;
}

.am-loader__bar-wrap {
  width: 180px;
  height: 2px;
  background: var(--am-border);
  border-radius: var(--am-r-full);
  overflow: hidden;
}

.am-loader__bar {
  height: 100%;
  width: 0%;
  background: var(--am-grad-blue);
  border-radius: var(--am-r-full);
  transform-origin: left;
}

/* ─── 5. CONTAINER ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--am-max);
  margin-inline: auto;
  padding-inline: var(--am-gutter);
}

.container--wide {
  max-width: var(--am-max-wide);
}

.container--narrow {
  max-width: 800px;
}

/* ─── 6. TYPOGRAPHY ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--am-font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--am-white);
  letter-spacing: -0.02em;
}

.display {
  font-family: var(--am-font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.display--orange {
  background: var(--am-grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--am-s2);
  font-size: var(--am-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--am-cyan);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--am-grad-blue);
  border-radius: var(--am-r-full);
  flex-shrink: 0;
}

.section-heading {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--am-white);
}

.section-heading--serif em {
  font-family: var(--am-font-serif);
  font-style: italic;
  font-weight: 600;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient {
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient--orange {
  background: var(--am-grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ─── 7. NOISE TEXTURE OVERLAY ───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: var(--am-z-loader) - 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
}

/* ─── 8. NAVIGATION ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--am-z-nav);
  padding: var(--am-s5) 0;
  transition:
    padding var(--am-t-mid) var(--am-ease),
    background var(--am-t-mid) var(--am-ease),
    border-color var(--am-t-mid) var(--am-ease),
    backdrop-filter var(--am-t-mid) var(--am-ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: var(--am-s3) 0;
  background: rgba(19, 22, 28, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--am-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--am-s8);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.nav__logo-img {
  /* Logo has large whitespace — we clip it to the visible area */
  height: 36px;
  width: auto;
  /* Adjust these values once you can inspect the exact logo bounds */
  object-fit: contain;
  object-position: center;
  /* If the whitespace is predominantly on sides, use these overrides: */
  max-width: 160px;
}

.nav__logo-text {
  font-size: var(--am-text-lg);
  font-weight: 800;
  color: var(--am-white);
  letter-spacing: -0.03em;
}

.nav__logo-text span {
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--am-s1);
}

.nav__item {
  position: relative;
}

.nav__link,
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--am-s2);
  padding: var(--am-s2) var(--am-s4);
  font-size: var(--am-text-sm);
  font-weight: 500;
  color: var(--am-muted);
  border-radius: var(--am-r-md);
  transition:
    color var(--am-t-fast),
    background var(--am-t-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__toggle:hover,
.nav__link[aria-current="page"] {
  color: var(--am-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav__arrow {
  transition: transform var(--am-t-fast) var(--am-ease);
  flex-shrink: 0;
}

.nav__toggle[aria-expanded="true"] .nav__arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--am-s2));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(19, 22, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-lg);
  padding: var(--am-s3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--am-t-fast) var(--am-ease),
    transform var(--am-t-fast) var(--am-ease);
  z-index: 20;
}

.nav__item--has-children:hover .nav__dropdown,
.nav__item--has-children:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown .nav__item { margin: 0; }

.nav__dropdown .nav__link {
  display: block;
  border-radius: var(--am-r-sm);
  padding: var(--am-s2) var(--am-s4);
}

.nav__end {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--am-s3);
}

/* Mobile toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--am-s2);
  border-radius: var(--am-r-md);
  border: 1px solid var(--am-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--am-white);
  transition: background var(--am-t-fast);
}

.nav__burger:hover { background: rgba(255, 255, 255, 0.08); }

.nav__burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: var(--am-r-full);
  transform-origin: center;
  transition:
    transform var(--am-t-mid) var(--am-ease-out),
    opacity var(--am-t-mid);
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--am-z-nav) - 1);
  background: var(--am-dark);
  padding: var(--am-s24) var(--am-gutter) var(--am-s12);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--am-t-slow) var(--am-ease-out);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--am-s1);
}

.mobile-menu__link {
  display: block;
  padding: var(--am-s4) var(--am-s4);
  font-size: var(--am-text-xl);
  font-weight: 700;
  color: var(--am-white);
  border-radius: var(--am-r-md);
  transition: color var(--am-t-fast);
  letter-spacing: -0.02em;
}

.mobile-menu__link:hover { color: var(--am-cyan); }

.mobile-menu__cta {
  margin-top: var(--am-s8);
  display: flex;
  flex-direction: column;
  gap: var(--am-s3);
}

/* ─── 9. BUTTONS ─────────────────────────────────────────────────────────── */
/* Shared base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--am-s2);
  padding: 0.8em 1.75em;
  font-family: var(--am-font);
  font-size: var(--am-text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--am-r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--am-t-fast) var(--am-ease-out),
    box-shadow var(--am-t-mid) var(--am-ease),
    opacity var(--am-t-fast);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:focus-visible {
  outline: 2px solid var(--am-cyan);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary — gradient fill */
.btn--primary {
  background: var(--am-grad-blue);
  color: var(--am-white);
  box-shadow: 0 4px 24px rgba(0, 98, 255, 0.35);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--am-t-fast);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 98, 255, 0.5);
}

.btn--primary:hover::before {
  opacity: 1;
}

/* Primary orange */
.btn--orange {
  background: var(--am-grad-orange);
  color: var(--am-white);
  box-shadow: 0 4px 24px rgba(255, 83, 57, 0.35);
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255, 83, 57, 0.5);
}

/* Secondary — outline */
.btn--outline {
  background: transparent;
  color: var(--am-white);
  border: 1px solid var(--am-border);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Text/arrow button */
.btn--text {
  background: none;
  padding: 0;
  color: var(--am-cyan);
  border-radius: 0;
  font-weight: 600;
  gap: var(--am-s2);
}

.btn--text svg {
  transition: transform var(--am-t-fast) var(--am-ease-out);
}

.btn--text:hover svg {
  transform: translateX(4px);
}

/* Large variant */
.btn--lg {
  padding: 1em 2.2em;
  font-size: var(--am-text-base);
}

/* ─── 10. CARDS ──────────────────────────────────────────────────────────── */
.card {
  background: var(--am-grad-card);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-xl);
  padding: var(--am-s8);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--am-t-mid) var(--am-ease),
    transform var(--am-t-slow) var(--am-ease-out),
    box-shadow var(--am-t-mid) var(--am-ease);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(0, 98, 255, 0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--am-t-mid);
  pointer-events: none;
  z-index: 0;
}

.card:hover {
  border-color: var(--am-border-blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--am-border-blue);
}

.card:hover::before {
  opacity: 1;
}

.card > * { position: relative; z-index: 1; }

/* ─── 11. SERVICE CARDS ──────────────────────────────────────────────────── */
.service-card {
  background: var(--am-grad-card);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-xl);
  padding: var(--am-s10) var(--am-s8);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--am-t-slow) var(--am-ease-out),
    box-shadow var(--am-t-slow) var(--am-ease-out),
    border-color var(--am-t-mid) var(--am-ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  will-change: transform;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--am-grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--am-t-mid) var(--am-ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 98, 255, 0.12);
  border-color: var(--am-border-blue);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--am-r-md);
  background: var(--am-grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--am-s6);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 98, 255, 0.3);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--am-white);
}

.service-card__title {
  font-size: var(--am-text-xl);
  font-weight: 700;
  color: var(--am-white);
  margin-bottom: var(--am-s3);
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: var(--am-text-sm);
  color: var(--am-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--am-s6);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--am-s2);
  font-size: var(--am-text-sm);
  font-weight: 600;
  color: var(--am-cyan);
  transition: gap var(--am-t-fast);
}

.service-card:hover .service-card__link {
  gap: var(--am-s3);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── 12. CASE STUDY CARDS ───────────────────────────────────────────────── */
.cs-card {
  position: relative;
  border-radius: var(--am-r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  text-decoration: none;
  background: var(--am-deep);
}

.cs-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--am-t-slow) var(--am-ease-out);
}

.cs-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 16, 22, 0.9) 0%, rgba(13, 16, 22, 0.3) 60%, transparent 100%);
  transition: background var(--am-t-mid);
}

.cs-card:hover .cs-card__image {
  transform: scale(1.05);
}

.cs-card:hover .cs-card__overlay {
  background: linear-gradient(0deg, rgba(13, 16, 22, 0.95) 0%, rgba(13, 16, 22, 0.5) 60%, transparent 100%);
}

.cs-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--am-s8);
  transform: translateY(0);
  transition: transform var(--am-t-mid) var(--am-ease-out);
}

.cs-card__service {
  display: inline-block;
  padding: var(--am-s1) var(--am-s4);
  border-radius: var(--am-r-full);
  font-size: var(--am-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 98, 255, 0.2);
  border: 1px solid rgba(0, 98, 255, 0.4);
  color: var(--am-cyan);
  margin-bottom: var(--am-s3);
}

.cs-card__title {
  font-size: var(--am-text-2xl);
  font-weight: 700;
  color: var(--am-white);
  line-height: 1.2;
  margin-bottom: var(--am-s4);
  letter-spacing: -0.02em;
}

.cs-card__metrics {
  display: flex;
  gap: var(--am-s6);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--am-t-mid) var(--am-ease-out),
    transform var(--am-t-mid) var(--am-ease-out);
}

.cs-card:hover .cs-card__metrics {
  opacity: 1;
  transform: translateY(0);
}

.cs-card__metric-number {
  font-size: var(--am-text-xl);
  font-weight: 800;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  letter-spacing: -0.03em;
}

.cs-card__metric-label {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
  margin-top: 2px;
}

.cs-card__arrow {
  position: absolute;
  top: var(--am-s6);
  right: var(--am-s6);
  width: 44px;
  height: 44px;
  border-radius: var(--am-r-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--am-white);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity var(--am-t-fast),
    transform var(--am-t-fast) var(--am-ease-out),
    background var(--am-t-fast);
}

.cs-card:hover .cs-card__arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--am-blue);
  border-color: var(--am-blue);
}

/* ─── 13. HERO SECTION ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--am-s24);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--am-z-bg);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 65vw;
  height: 65vw;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(0, 98, 255, 0.18) 0%, transparent 70%);
  animation: orb-float 12s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 50vw;
  height: 50vw;
  top: 10%;
  right: -15%;
  background: radial-gradient(circle, rgba(4, 190, 254, 0.12) 0%, transparent 70%);
  animation: orb-float 15s ease-in-out infinite alternate-reverse;
}

.hero__orb--3 {
  width: 40vw;
  height: 40vw;
  bottom: -10%;
  right: 20%;
  background: radial-gradient(circle, rgba(255, 83, 57, 0.08) 0%, transparent 70%);
  animation: orb-float 18s ease-in-out infinite alternate;
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(2%, 3%) scale(1.05); }
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--am-s16);
  align-items: center;
}

.hero__content {}

.hero__eyebrow {
  margin-bottom: var(--am-s5);
  opacity: 0;
}

.hero__headline {
  font-size: var(--am-text-hero);
  font-weight: 800;
  line-height: 1.05;
  color: var(--am-white);
  letter-spacing: -0.04em;
  margin-bottom: var(--am-s6);
  overflow: hidden;
}

.hero__headline .word-wrap {
  display: inline-block;
  overflow: hidden;
}

.hero__headline .word {
  display: inline-block;
  transform: translateY(110%);
}

.hero__sub {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--am-s8);
  opacity: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--am-s4);
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: var(--am-s3);
  font-size: var(--am-text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--am-subtle);
  margin-top: var(--am-s10);
  opacity: 0;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--am-grad-blue);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(1.4); transform-origin: left; }
}

/* Floating interface cards */
.hero__visual {
  position: relative;
  height: 520px;
  opacity: 0;
}

.float-card {
  position: absolute;
  background: rgba(19, 22, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-lg);
  padding: var(--am-s5) var(--am-s6);
  animation: card-float 6s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: -2s; animation-duration: 7s; }
.float-card:nth-child(3) { animation-delay: -4s; animation-duration: 8s; }
.float-card:nth-child(4) { animation-delay: -1s; animation-duration: 6.5s; }

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.float-card--main {
  top: 5%;
  left: 0;
  right: 0;
  background: var(--am-grad-card);
  border-color: var(--am-border-blue);
  padding: var(--am-s6) var(--am-s8);
}

.float-card--stat-1 {
  bottom: 20%;
  left: 0;
  width: 200px;
}

.float-card--stat-2 {
  top: 30%;
  right: 0;
  width: 200px;
}

.float-card--stat-3 {
  bottom: 2%;
  right: 5%;
  width: 220px;
}

.float-card__label {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--am-s2);
}

.float-card__value {
  font-size: var(--am-text-2xl);
  font-weight: 800;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.03em;
  display: block;
}

.float-card__sub {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
  margin-top: var(--am-s1);
}

.float-card__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: var(--am-s2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ─── 14. SECTION: MARQUEE ───────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--am-border);
  border-bottom: 1px solid var(--am-border);
  padding: var(--am-s6) 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--am-dark), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--am-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--am-s10);
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track--reverse {
  animation-direction: reverse;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--am-s4);
  flex-shrink: 0;
  padding: var(--am-s3) var(--am-s6);
  font-size: var(--am-text-sm);
  font-weight: 500;
  color: var(--am-subtle);
  white-space: nowrap;
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-full);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-item img {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%) brightness(2);
  transition: opacity var(--am-t-fast), filter var(--am-t-fast);
}

.marquee-item:hover img {
  opacity: 0.9;
  filter: none;
}

/* ─── 15. SECTION: SERVICES ──────────────────────────────────────────────── */
.section {
  padding: var(--am-s24) 0;
}

.section--tight {
  padding: var(--am-s12) 0;
}

.section--dark {
  background: var(--am-dark);
}

.section--deep {
  background: var(--am-deep);
  position: relative;
  overflow: hidden;
}

.section--deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--am-grad-glow);
  pointer-events: none;
}

.section__header {
  margin-bottom: var(--am-s12);
}

.section__header--center {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--am-s12);
}

.section__desc {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  line-height: 1.65;
  margin-top: var(--am-s4);
  max-width: 560px;
}

.section__desc--center {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--am-s5);
}

/* ─── 16. SECTION: ABOUT/STATEMENT ──────────────────────────────────────── */
.statement-section {
  padding: var(--am-s32) 0;
  position: relative;
  overflow: hidden;
}

.statement-section__bg {
  position: absolute;
  inset: 0;
  background: var(--am-grad-orb-1), var(--am-grad-orb-2);
  pointer-events: none;
  z-index: 0;
}

.statement-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--am-s16);
  align-items: center;
}

.statement-section__pull {
  font-family: var(--am-font-serif);
  font-size: var(--am-text-4xl);
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: var(--am-white);
  letter-spacing: -0.01em;
}

.statement-section__pull em {
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
}

.statement-section__body p {
  font-size: var(--am-text-md);
  color: var(--am-muted);
  line-height: 1.75;
  margin-bottom: var(--am-s4);
}

.statement-section__body p:last-child { margin-bottom: 0; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--am-s2);
  margin-top: var(--am-s6);
}

.pill {
  padding: var(--am-s2) var(--am-s4);
  border-radius: var(--am-r-full);
  font-size: var(--am-text-xs);
  font-weight: 600;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.25);
  color: var(--am-cyan);
}

/* ─── 17. SECTION: PROCESS ───────────────────────────────────────────────── */
.process-section {
  padding: var(--am-s32) 0;
  position: relative;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--am-s4);
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(var(--am-s10) + 28px);
  right: calc(var(--am-s10) + 28px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--am-border-blue), var(--am-border-blue), transparent);
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: var(--am-s8) var(--am-s6);
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--am-dark);
  border: 1px solid var(--am-border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--am-text-lg);
  font-weight: 800;
  color: transparent;
  background-clip: padding-box;
  position: relative;
  margin-bottom: var(--am-s6);
  z-index: 1;
}

.process-step__number-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(19, 22, 28, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--am-text-base);
  font-weight: 800;
  color: var(--am-cyan);
  border: 1px solid var(--am-border-blue);
}

.process-step.is-active .process-step__number-inner {
  background: var(--am-grad-blue);
  color: var(--am-white);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(0, 98, 255, 0.5);
}

.process-step__title {
  font-size: var(--am-text-xl);
  font-weight: 700;
  color: var(--am-white);
  margin-bottom: var(--am-s3);
}

.process-step__desc {
  font-size: var(--am-text-sm);
  color: var(--am-muted);
  line-height: 1.7;
}

/* ─── 18. SECTION: STATS ─────────────────────────────────────────────────── */
.stats-section {
  padding: var(--am-s16) 0;
  border-top: 1px solid var(--am-border);
  border-bottom: 1px solid var(--am-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--am-s4);
}

.stat-item {
  text-align: center;
  padding: var(--am-s8) var(--am-s4);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 0;
  width: 1px;
  background: var(--am-border);
}

.stat-item__number {
  font-size: var(--am-text-5xl);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--am-s2);
}

.stat-item__label {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
  font-weight: 400;
}

/* ─── 19. SECTION: WHY ASSURED ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--am-s5);
}

.why-item {
  padding: var(--am-s8);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--am-t-mid), background var(--am-t-mid);
}

.why-item:hover {
  border-color: var(--am-border-blue);
  background: rgba(0, 98, 255, 0.04);
}

.why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--am-r-md);
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--am-s5);
}

.why-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--am-cyan);
}

.why-item__title {
  font-size: var(--am-text-lg);
  font-weight: 700;
  color: var(--am-white);
  margin-bottom: var(--am-s3);
}

.why-item__desc {
  font-size: var(--am-text-sm);
  color: var(--am-muted);
  line-height: 1.7;
}

/* ─── 20. SECTION: BLOG CARDS ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--am-s6);
}

.blog-card {
  display: block;
  text-decoration: none;
  border-radius: var(--am-r-xl);
  overflow: hidden;
  background: var(--am-grad-card);
  border: 1px solid var(--am-border);
  transition:
    transform var(--am-t-mid) var(--am-ease-out),
    border-color var(--am-t-mid),
    box-shadow var(--am-t-mid);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--am-border-blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--am-deep);
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--am-t-slow) var(--am-ease-out);
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--am-s6) var(--am-s6);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--am-s3);
  margin-bottom: var(--am-s3);
}

.blog-card__tag {
  font-size: var(--am-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--am-cyan);
}

.blog-card__date {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
}

.blog-card__date::before {
  content: '·';
  margin-right: var(--am-s3);
  color: var(--am-border);
}

.blog-card__title {
  font-size: var(--am-text-lg);
  font-weight: 700;
  color: var(--am-white);
  line-height: 1.3;
  margin-bottom: var(--am-s3);
  letter-spacing: -0.02em;
}

.blog-card__excerpt {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── 21. CTA SECTION ────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--am-s32) 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0, 98, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255, 83, 57, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.cta-section__heading {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: var(--am-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--am-s5);
}

.cta-section__desc {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  line-height: 1.65;
  margin-bottom: var(--am-s8);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--am-s4);
  flex-wrap: wrap;
}

.cta-section__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--am-s6);
  flex-wrap: wrap;
  margin-top: var(--am-s8);
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
}

.cta-section__detail span {
  display: flex;
  align-items: center;
  gap: var(--am-s2);
}

.cta-section__detail svg {
  width: 16px;
  height: 16px;
  color: var(--am-cyan);
}

/* ─── 22. CONTACT FORM ───────────────────────────────────────────────────── */
.contact-section {
  padding: var(--am-s24) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--am-s16);
  align-items: start;
}

.contact-info__heading {
  font-size: var(--am-text-3xl);
  font-weight: 800;
  color: var(--am-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--am-s5);
}

.contact-info__desc {
  font-size: var(--am-text-md);
  color: var(--am-muted);
  line-height: 1.7;
  margin-bottom: var(--am-s8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--am-s4);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--am-s4);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--am-r-md);
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  color: var(--am-cyan);
}

.contact-detail__label {
  font-size: var(--am-text-xs);
  font-weight: 600;
  color: var(--am-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--am-s1);
}

.contact-detail__value {
  font-size: var(--am-text-md);
  color: var(--am-white);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--am-white);
  transition: color var(--am-t-fast);
}

.contact-detail__value a:hover {
  color: var(--am-cyan);
}

/* Form */
.am-form {
  background: var(--am-grad-card);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-xl);
  padding: var(--am-s10);
}

.am-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--am-s4);
}

.am-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--am-s2);
}

.am-form__group--full {
  grid-column: 1 / -1;
}

.am-form__label {
  font-size: var(--am-text-xs);
  font-weight: 600;
  color: var(--am-muted);
  letter-spacing: 0.04em;
}

.am-form__label abbr {
  color: var(--am-orange);
  text-decoration: none;
  margin-left: 2px;
}

.am-form__input,
.am-form__select,
.am-form__textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-md);
  padding: var(--am-s4) var(--am-s5);
  font-family: var(--am-font);
  font-size: var(--am-text-sm);
  color: var(--am-white);
  transition:
    border-color var(--am-t-fast),
    background var(--am-t-fast),
    box-shadow var(--am-t-fast);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.am-form__input::placeholder,
.am-form__textarea::placeholder {
  color: var(--am-subtle);
}

.am-form__input:focus,
.am-form__select:focus,
.am-form__textarea:focus {
  outline: none;
  border-color: var(--am-blue);
  background: rgba(0, 98, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}

.am-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--am-s4) center;
  padding-right: var(--am-s10);
  cursor: pointer;
  color: var(--am-subtle);
}

.am-form__select option {
  background: var(--am-dark);
  color: var(--am-white);
}

.am-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.am-form__submit {
  margin-top: var(--am-s6);
}

.am-form__message {
  padding: var(--am-s4) var(--am-s5);
  border-radius: var(--am-r-md);
  font-size: var(--am-text-sm);
  font-weight: 500;
  display: none;
  margin-top: var(--am-s4);
}

.am-form__message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.am-form__message--error {
  background: rgba(255, 83, 57, 0.1);
  border: 1px solid rgba(255, 83, 57, 0.3);
  color: var(--am-orange);
}

/* CF7 / Gravity Forms reset */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-textarea {
  all: unset;
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-md);
  padding: var(--am-s4) var(--am-s5);
  font-family: var(--am-font);
  font-size: var(--am-text-sm);
  color: var(--am-white);
  box-sizing: border-box;
}

.wpcf7-form .wpcf7-submit {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 2em;
  font-family: var(--am-font);
  font-size: var(--am-text-sm);
  font-weight: 600;
  color: var(--am-white);
  background: var(--am-grad-blue);
  border-radius: var(--am-r-full);
  box-shadow: 0 4px 24px rgba(0, 98, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ─── 23. FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--am-dark) 0%, #0d0f14 100%);
  border-top: 1px solid var(--am-border);
  padding: var(--am-s24) 0 var(--am-s8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--am-s10);
  padding-bottom: var(--am-s12);
  border-bottom: 1px solid var(--am-border);
}

.footer__brand {}

.footer__logo {
  margin-bottom: var(--am-s5);
  display: inline-block;
}

.footer__tagline {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--am-s6);
}

.footer__socials {
  display: flex;
  gap: var(--am-s3);
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: var(--am-r-md);
  border: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--am-subtle);
  transition: color var(--am-t-fast), border-color var(--am-t-fast), background var(--am-t-fast);
}

.footer__social:hover {
  color: var(--am-white);
  border-color: var(--am-border-blue);
  background: rgba(0, 98, 255, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: var(--am-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--am-white);
  margin-bottom: var(--am-s5);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--am-s3);
}

.footer__nav-link {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
  transition: color var(--am-t-fast);
}

.footer__nav-link:hover {
  color: var(--am-white);
}

.footer-bottom {
  padding-top: var(--am-s8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--am-s4);
}

.footer__copy {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
}

.footer__legal {
  display: flex;
  gap: var(--am-s5);
}

.footer__legal a {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
  transition: color var(--am-t-fast);
}

.footer__legal a:hover {
  color: var(--am-white);
}

/* ─── 24. SINGLE POST / ARTICLE ──────────────────────────────────────────── */
.article-header {
  padding-top: calc(var(--am-s24) + 80px);
  padding-bottom: var(--am-s12);
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: var(--am-s4);
  margin-bottom: var(--am-s5);
  flex-wrap: wrap;
}

.article-header__category {
  display: inline-block;
  padding: var(--am-s1) var(--am-s4);
  border-radius: var(--am-r-full);
  font-size: var(--am-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 98, 255, 0.15);
  border: 1px solid rgba(0, 98, 255, 0.3);
  color: var(--am-cyan);
}

.article-header__date {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
}

.article-header__read-time {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
}

.article-header__title {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: var(--am-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--am-s5);
  max-width: 900px;
}

.article-header__excerpt {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  line-height: 1.7;
  max-width: 680px;
}

.article-thumb {
  border-radius: var(--am-r-xl);
  overflow: hidden;
  margin-bottom: var(--am-s12);
  aspect-ratio: 21 / 9;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 720px;
  margin-inline: auto;
  padding-bottom: var(--am-s24);
}

/* WordPress content styles */
.entry-content h2 {
  font-size: var(--am-text-2xl);
  font-weight: 700;
  color: var(--am-white);
  margin-top: var(--am-s10);
  margin-bottom: var(--am-s4);
  letter-spacing: -0.02em;
}

.entry-content h3 {
  font-size: var(--am-text-xl);
  font-weight: 700;
  color: var(--am-white);
  margin-top: var(--am-s8);
  margin-bottom: var(--am-s3);
}

.entry-content p {
  font-size: var(--am-text-md);
  color: var(--am-muted);
  line-height: 1.8;
  margin-bottom: var(--am-s5);
}

.entry-content ul,
.entry-content ol {
  padding-left: var(--am-s6);
  margin-bottom: var(--am-s5);
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li {
  font-size: var(--am-text-md);
  color: var(--am-muted);
  line-height: 1.7;
  margin-bottom: var(--am-s2);
  padding-left: var(--am-s2);
}

.entry-content a {
  color: var(--am-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  border-left: 3px solid var(--am-blue);
  padding-left: var(--am-s6);
  margin: var(--am-s8) 0;
  font-family: var(--am-font-serif);
  font-style: italic;
  font-size: var(--am-text-xl);
  color: var(--am-white);
  line-height: 1.5;
}

.entry-content img {
  border-radius: var(--am-r-lg);
  margin: var(--am-s6) 0;
  width: 100%;
  height: auto;
}

.entry-content code {
  font-size: 0.875em;
  background: rgba(0, 98, 255, 0.1);
  border: 1px solid rgba(0, 98, 255, 0.2);
  border-radius: var(--am-r-sm);
  padding: 2px 6px;
  color: var(--am-cyan);
}

.entry-content pre {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-md);
  padding: var(--am-s6);
  overflow-x: auto;
  margin-bottom: var(--am-s5);
}

.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
}

/* ─── 25. SERVICE PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--am-s24) + 80px);
  padding-bottom: var(--am-s24);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--am-grad-orb-1), var(--am-grad-orb-2);
  z-index: 0;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero__heading {
  font-size: var(--am-text-5xl);
  font-weight: 800;
  color: var(--am-white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: var(--am-s5);
}

.page-hero__sub {
  font-size: var(--am-text-xl);
  color: var(--am-muted);
  line-height: 1.6;
  margin-bottom: var(--am-s8);
  max-width: 600px;
}

/* ─── 26. SERVICE PAGE SECTIONS ──────────────────────────────────────────── */
.problem-section {
  padding: var(--am-s24) 0;
  border-top: 1px solid var(--am-border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--am-s16);
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--am-s4);
}

.problem-item {
  display: flex;
  gap: var(--am-s4);
  align-items: flex-start;
  padding: var(--am-s5) var(--am-s6);
  border-radius: var(--am-r-lg);
  background: rgba(255, 83, 57, 0.05);
  border: 1px solid rgba(255, 83, 57, 0.15);
}

.problem-item__icon {
  width: 20px;
  height: 20px;
  color: var(--am-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item__text {
  font-size: var(--am-text-sm);
  color: var(--am-muted);
  line-height: 1.65;
}

.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--am-s3);
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: var(--am-s3);
  padding: var(--am-s3) var(--am-s4);
  font-size: var(--am-text-sm);
  color: var(--am-muted);
}

.deliverable-item svg {
  width: 18px;
  height: 18px;
  color: var(--am-cyan);
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  padding: var(--am-s24) 0;
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--am-s3);
}

.faq-item {
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--am-t-fast);
}

.faq-item.is-open {
  border-color: var(--am-border-blue);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--am-s5) var(--am-s6);
  font-family: var(--am-font);
  font-size: var(--am-text-md);
  font-weight: 600;
  color: var(--am-white);
  text-align: left;
  gap: var(--am-s4);
  transition: color var(--am-t-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-item__btn:focus-visible {
  outline: 2px solid var(--am-cyan);
  outline-offset: -2px;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--am-t-mid) var(--am-ease-out),
    background var(--am-t-fast),
    border-color var(--am-t-fast);
  color: var(--am-muted);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--am-blue);
  border-color: var(--am-blue);
  color: var(--am-white);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--am-t-mid) var(--am-ease-out);
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__body-inner {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 var(--am-s6) var(--am-s5);
  font-size: var(--am-text-sm);
  color: var(--am-muted);
  line-height: 1.75;
}

/* ─── 27. 404 PAGE ───────────────────────────────────────────────────────── */
.error-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--am-s24) var(--am-gutter);
  position: relative;
  overflow: hidden;
}

.error-404__number {
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.06em;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.error-404__inner {
  position: relative;
  z-index: 1;
}

.error-404__heading {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: var(--am-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--am-s4);
}

.error-404__desc {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  max-width: 480px;
  margin: 0 auto var(--am-s8);
}

/* ─── 28. BREADCRUMB ─────────────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--am-s4) 0 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--am-s2);
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--am-s2);
}

.breadcrumb__link {
  font-size: var(--am-text-xs);
  color: var(--am-subtle);
  transition: color var(--am-t-fast);
}

.breadcrumb__link:hover {
  color: var(--am-white);
}

.breadcrumb__sep {
  color: var(--am-border);
  font-size: var(--am-text-xs);
}

.breadcrumb__current {
  font-size: var(--am-text-xs);
  color: var(--am-muted);
}

/* ─── 29. PAGINATION ─────────────────────────────────────────────────────── */
.pagination {
  padding: var(--am-s12) 0;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-flex;
}

.page-numbers li {
  margin: 0;
}

.page-numbers li a,
.page-numbers li span {
  display: flex;
  align-items: center;
  gap: var(--am-s2);
  padding: var(--am-s3) var(--am-s4);
  font-size: var(--am-text-sm);
  font-weight: 500;
  color: var(--am-muted);
  border-radius: var(--am-r-md);
  transition: color var(--am-t-fast), background var(--am-t-fast);
}

.page-numbers li a:hover {
  color: var(--am-white);
  background: rgba(255, 255, 255, 0.06);
}

.page-numbers li .current {
  color: var(--am-white);
  background: var(--am-blue);
  font-weight: 700;
}

/* ─── 30. ARCHIVE PAGE ───────────────────────────────────────────────────── */
.archive-header {
  padding-top: calc(var(--am-s16) + 80px);
  padding-bottom: var(--am-s12);
}

.archive-header__title {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: var(--am-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--am-s4);
}

.archive-header__desc {
  font-size: var(--am-text-lg);
  color: var(--am-muted);
  max-width: 600px;
}

/* ─── 31. CASE STUDY SINGLE ──────────────────────────────────────────────── */
.cs-hero {
  padding-top: calc(var(--am-s24) + 80px);
  padding-bottom: var(--am-s20);
  position: relative;
  overflow: hidden;
}

.cs-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--am-s4);
  margin-top: var(--am-s12);
}

.cs-metric {
  padding: var(--am-s6) var(--am-s6);
  background: var(--am-grad-card);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-lg);
  text-align: center;
}

.cs-metric__number {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: transparent;
  background: var(--am-grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--am-s2);
}

.cs-metric__label {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
}

.cs-testimonial {
  padding: var(--am-s12) var(--am-s12);
  background: var(--am-grad-card);
  border: 1px solid var(--am-border-blue);
  border-radius: var(--am-r-xl);
  margin: var(--am-s12) 0;
  position: relative;
}

.cs-testimonial::before {
  content: '"';
  font-family: var(--am-font-serif);
  font-size: 120px;
  color: rgba(0, 98, 255, 0.15);
  position: absolute;
  top: -20px;
  left: var(--am-s8);
  line-height: 1;
  pointer-events: none;
}

.cs-testimonial__quote {
  font-family: var(--am-font-serif);
  font-style: italic;
  font-size: var(--am-text-2xl);
  color: var(--am-white);
  line-height: 1.5;
  margin-bottom: var(--am-s6);
  position: relative;
  z-index: 1;
}

.cs-testimonial__author {
  font-size: var(--am-text-sm);
  font-weight: 600;
  color: var(--am-muted);
  position: relative;
  z-index: 1;
}

.cs-testimonial__author strong {
  color: var(--am-white);
}

/* ─── 32. PRIVACY / STANDARD PAGE ───────────────────────────────────────── */
.standard-page {
  padding-top: calc(var(--am-s16) + 80px);
  padding-bottom: var(--am-s24);
}

.standard-page__heading {
  font-size: var(--am-text-4xl);
  font-weight: 800;
  color: var(--am-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--am-s5);
}

.standard-page__updated {
  font-size: var(--am-text-sm);
  color: var(--am-subtle);
  margin-bottom: var(--am-s12);
  padding-bottom: var(--am-s8);
  border-bottom: 1px solid var(--am-border);
}

/* ─── 33. REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.am-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.am-reveal--left {
  transform: translateX(-40px);
}

.am-reveal--right {
  transform: translateX(40px);
}

.am-reveal--scale {
  transform: scale(0.92);
}

/* ─── 34. FOCUS STYLES ───────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--am-cyan);
  outline-offset: 3px;
}

/* ─── 35. SELECTION ──────────────────────────────────────────────────────── */
::selection {
  background: rgba(0, 98, 255, 0.35);
  color: var(--am-white);
}

/* ─── 36. SCROLLBAR ──────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--am-dark); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.22); }

/* ─── 37. UTILITY CLASSES ────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-white  { color: var(--am-white); }
.text-muted  { color: var(--am-muted); }
.text-subtle { color: var(--am-subtle); }
.text-cyan   { color: var(--am-cyan); }
.text-orange { color: var(--am-orange); }

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }

/* ─── 38. REDUCED MOTION ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .am-loader { display: none; }

  .am-reveal {
    opacity: 1;
    transform: none;
  }

  .hero__headline .word {
    transform: none;
  }
}

/* ─── 39. RESPONSIVE ─────────────────────────────────────────────────────── */

/* ── Large screens (≤ 1280px) ─── */
@media (max-width: 1280px) {
  .hero__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: var(--am-s12);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-top .footer__col:last-child {
    grid-column: 1 / -1;
  }
}

/* ── Medium (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .statement-section__inner {
    grid-template-columns: 1fr;
    gap: var(--am-s8);
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track::before { display: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item + .stat-item::before { display: none; }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--am-s12);
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--am-s8);
  }

  .cs-metrics-bar {
    grid-template-columns: 1fr;
  }

  .nav__center,
  .nav__end .btn {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

/* ── Small (≤ 768px) ─── */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .am-form__grid {
    grid-template-columns: 1fr;
  }

  .am-form__group--full {
    grid-column: 1;
  }

  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--am-s8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--am-s3);
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cs-card__metrics {
    flex-direction: column;
    gap: var(--am-s3);
  }

  .contact-info__heading {
    font-size: var(--am-text-2xl);
  }

  .am-form {
    padding: var(--am-s6);
  }
}

/* ── Extra small (≤ 480px) ─── */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }
}

/* ─── 40. DIVI BUILDER COMPATIBILITY ────────────────────────────────────── */

/* Divi sections sit inside <main> — let them go edge-to-edge */
.et_pb_section {
  padding-left: 0;
  padding-right: 0;
}

/* Divi modules inherit the theme's primary font */
.et_pb_module,
.et_pb_module p,
.et_pb_module h1,
.et_pb_module h2,
.et_pb_module h3,
.et_pb_module h4,
.et_pb_module h5,
.et_pb_module h6,
.et_pb_text_inner,
.et_pb_module_header {
  font-family: var(--am-font-body);
}

/* Divi text colours default to the theme's dark palette */
.et_pb_text_inner p,
.et_pb_text_inner li {
  color: var(--am-muted);
  line-height: 1.8;
}

.et_pb_text_inner h1,
.et_pb_text_inner h2,
.et_pb_text_inner h3,
.et_pb_text_inner h4 {
  color: var(--am-white);
  letter-spacing: -0.03em;
}

/* Divi row max-width matches the theme's container */
.et_pb_row {
  max-width: 1200px;
}

/* Divi buttons pick up a base style — user can override per-module */
.et_pb_button {
  font-family: var(--am-font-body) !important;
  font-weight: 600 !important;
  border-radius: var(--am-r-full) !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

/* Divi full-width sections break out of any wrapper */
.et_full_width_page .et_pb_section {
  margin-left: 0;
  margin-right: 0;
}

/* Divi blurb/icon modules */
.et_pb_blurb_content {
  font-family: var(--am-font-body);
}

/* Fix Divi's default white background in dark theme */
.et_pb_section.et_pb_section_first {
  padding-top: calc(var(--am-s16) + 80px);
}

/* Divi contact form fields inherit the theme's input style */
.et_pb_contact_field input[type="text"],
.et_pb_contact_field input[type="email"],
.et_pb_contact_field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--am-border);
  border-radius: var(--am-r-md);
  color: var(--am-white);
  font-family: var(--am-font-body);
  padding: var(--am-s4) var(--am-s5);
}

.et_pb_contact_field input[type="text"]:focus,
.et_pb_contact_field input[type="email"]:focus,
.et_pb_contact_field textarea:focus {
  outline: none;
  border-color: var(--am-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}
