/* ============================================
   AWARDS & RECOGNITION — Papyrus Software
   ============================================ */

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

:root {
  --aw-primary: #6bb8be;
  --aw-primary-dark: #5aa8ae;
  --aw-gold: #c8a44e;
  --aw-gold-rich: #d4a84b;
  --aw-gold-soft: rgba(200, 164, 78, 0.10);
  --aw-gold-glow: rgba(200, 164, 78, 0.18);
  --aw-navy: #0a0f1a;
  --aw-navy-mid: #141c2e;
  --aw-navy-end: #0f172a;
  --aw-text: #1e293b;
  --aw-text-2: #475569;
  --aw-text-3: #64748b;
  --aw-white: #ffffff;
  --aw-off: #f7f8f9;
  --aw-line: #e2e5e9;
  --aw-line-2: #edf0f2;
  --aw-r: 12px;
  --aw-r-lg: 16px;
  --aw-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kill template extras */
.contactus, .oh24btn, #go_up, .icon-chevron-up { display: none !important; }


/* =============================================
   HERO
   ============================================= */
.aw-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.aw-hero__bg {
  position: absolute;
  inset: 0;
}

.aw-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,15,26,0.93) 0%,
    rgba(10,15,26,0.82) 35%,
    rgba(10,15,26,0.58) 68%,
    rgba(10,15,26,0.42) 100%
  );
}

.aw-hero__inner {
  position: relative;
  z-index: 1;
  padding: 76px 0 72px;
  width: 100%;
}

.aw-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* Text col */
.aw-hero__text h1 {
  font-family: "Montserrat", sans-serif !important;
  color: var(--aw-white) !important;
  font-weight: 800 !important;
  font-size: 2.8rem !important;
  margin: 0 0 20px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
}

.aw-hero__text > p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0 0 30px;
  max-width: 480px;
}

.aw-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Award photo collage showcase */
.aw-hero__showcase {
  position: relative;
  height: 340px;
  perspective: 800px;
}

.aw-hero__photo {
  position: absolute;
  border-radius: var(--aw-r);
  overflow: hidden;
  border: 2px solid rgba(200,164,78,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: all 0.5s var(--aw-ease);
}

.aw-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aw-hero__photo--1 {
  width: 280px;
  height: 200px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 3;
}

.aw-hero__photo--2 {
  width: 260px;
  height: 185px;
  top: 50px;
  right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
}

.aw-hero__photo--3 {
  width: 130px;
  height: 170px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 4;
  border-color: rgba(200,164,78,0.5);
  background: linear-gradient(135deg, #111827, #1e293b);
}

.aw-hero__photo--3 img {
  object-fit: contain;
  padding: 12px;
}

.aw-hero__photo:hover {
  z-index: 5;
  transform: rotate(0deg) scale(1.04);
  border-color: var(--aw-gold);
  box-shadow: 0 16px 52px rgba(200,164,78,0.25);
}

.aw-hero__photo--3:hover {
  transform: translateX(-50%) rotate(0deg) scale(1.06);
}

.aw-hero__photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}


/* =============================================
   SHARED
   ============================================= */

/* Buttons */
.aw-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--aw-r);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--aw-ease);
  border: 2px solid transparent;
}

.aw-btn--primary {
  background: var(--aw-primary);
  color: var(--aw-white);
  border-color: var(--aw-primary);
  box-shadow: 0 4px 16px rgba(107,184,190,0.3);
}
.aw-btn--primary:hover {
  background: var(--aw-primary-dark);
  border-color: var(--aw-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,184,190,0.4);
  color: var(--aw-white);
  text-decoration: none;
}

.aw-btn--glass {
  background: rgba(255,255,255,0.06);
  color: var(--aw-white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.aw-btn--glass:hover {
  border-color: var(--aw-gold);
  background: rgba(200,164,78,0.08);
  color: var(--aw-gold);
  transform: translateY(-2px);
  text-decoration: none;
}

.aw-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.aw-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--aw-white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Arrow links */
.aw-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aw-primary-dark);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--aw-ease);
  margin-top: 16px;
}
.aw-arrow-link:hover { color: var(--aw-primary); gap: 12px; text-decoration: none; }
.aw-arrow-link--light { color: var(--aw-primary); }
.aw-arrow-link--light:hover { color: var(--aw-white); }

/* Year badge overlay */
.aw-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 14px;
  background: rgba(10,15,26,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,164,78,0.4);
  border-radius: 6px;
  color: var(--aw-gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Org badge */
.aw-org {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.aw-org__logo {
  height: 28px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}
.aw-org span {
  color: var(--aw-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}


/* =============================================
   SECTIONS
   ============================================= */
.aw-section {
  padding: 80px 0;
  background: var(--aw-white);
  position: relative;
}
.aw-section--alt { background: var(--aw-off); }
.aw-section--dark {
  background: linear-gradient(160deg, var(--aw-navy) 0%, var(--aw-navy-mid) 40%, var(--aw-navy-end) 100%);
  overflow: hidden;
}

.aw-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.aw-section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--aw-text);
  margin: 0 0 12px;
}
.aw-section-header p {
  color: var(--aw-text-2);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.aw-section-header--light h2 { color: var(--aw-white); }
.aw-section-header--light p { color: rgba(255,255,255,0.6); }

/* Glow helper */
.aw-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
}
.aw-glow--tr {
  top: -30%;
  right: -10%;
  background: radial-gradient(circle, rgba(200,164,78,0.04) 0%, transparent 60%);
}


/* =============================================
   FEATURED — Hero card + row of 2
   ============================================= */
.aw-feat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--aw-white);
  border: 1.5px solid var(--aw-line);
  border-radius: var(--aw-r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.4s var(--aw-ease);
}
.aw-feat-hero:hover {
  border-color: var(--aw-gold);
  box-shadow: 0 12px 44px var(--aw-gold-glow);
}

.aw-feat-hero__img {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}
.aw-feat-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--aw-ease);
}
.aw-feat-hero:hover .aw-feat-hero__img img { transform: scale(1.04); }

.aw-feat-hero__img--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-feat-hero__img--fallback::after {
  content: '\f559';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 4rem;
  color: rgba(200,164,78,0.2);
}

.aw-feat-hero__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aw-feat-hero__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--aw-text);
  margin: 0 0 14px;
  line-height: 1.3;
}
.aw-feat-hero__body p {
  color: var(--aw-text-2);
  line-height: 1.75;
  margin: 0;
}

/* Row */
.aw-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.aw-feat-card {
  background: var(--aw-white);
  border: 1.5px solid var(--aw-line);
  border-radius: var(--aw-r-lg);
  overflow: hidden;
  transition: all 0.4s var(--aw-ease);
}
.aw-feat-card:hover {
  border-color: var(--aw-gold);
  box-shadow: 0 10px 36px var(--aw-gold-glow);
  transform: translateY(-4px);
}

.aw-feat-card__img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  position: relative;
}
.aw-feat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--aw-ease);
}
.aw-feat-card:hover .aw-feat-card__img img { transform: scale(1.05); }

.aw-feat-card__body {
  padding: 24px;
}
.aw-feat-card__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--aw-text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.aw-feat-card__body p {
  color: var(--aw-text-2);
  line-height: 1.7;
  margin: 0;
}


/* =============================================
   ANALYSTS
   ============================================= */
.aw-analyst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.aw-analyst {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--aw-r-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--aw-ease);
}
.aw-analyst:hover {
  border-color: rgba(200,164,78,0.25);
  background: rgba(255,255,255,0.06);
}

.aw-analyst__logo-box {
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.aw-analyst__logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.4s;
}
.aw-analyst:hover .aw-analyst__logo { opacity: 1; }

.aw-analyst h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--aw-white);
  margin: 0 0 12px;
}
.aw-analyst p {
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin: 0;
}


/* =============================================
   TIMELINE
   ============================================= */
.aw-tl-section {
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Scroll-responsive warm glow */
.aw-tl-warmth {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    rgba(200,164,78,0.06) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.aw-tl-warmth.is-warm { opacity: 1; }

/* Container */
.aw-tl {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 0 0;
}

/* Central spine */
.aw-tl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    var(--aw-gold) 0%,
    rgba(200,164,78,0.25) 12%,
    rgba(200,164,78,0.12) 50%,
    rgba(200,164,78,0.25) 88%,
    var(--aw-gold) 100%
  );
  border-radius: 3px;
}

/* Spine glow */
.aw-tl::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 32px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(200,164,78,0.06) 0%,
    rgba(200,164,78,0.015) 40%,
    rgba(200,164,78,0.015) 60%,
    rgba(200,164,78,0.06) 100%
  );
  filter: blur(6px);
  pointer-events: none;
}


/* ---- Year separator ---- */
.aw-tl__year-sep {
  position: relative;
  z-index: 4;
  text-align: center;
  margin: 0 0 32px;
  padding-top: 8px;
}

/* Extra top space for all except the first */
.aw-tl__year-sep ~ .aw-tl__year-sep {
  margin-top: 16px;
}

.aw-tl__year-sep span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 42px;
  padding: 0 22px;
  background: linear-gradient(135deg, #b8913e 0%, var(--aw-gold-rich) 50%, var(--aw-gold) 100%);
  color: var(--aw-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  border-radius: 22px;
  box-shadow:
    0 4px 20px rgba(200,164,78,0.3),
    0 0 0 5px var(--aw-white),
    0 0 0 7px var(--aw-gold-soft);
}


/* ---- Timeline item ---- */
.aw-tl__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  width: 50%;
}
.aw-tl__item:last-child { margin-bottom: 0; }

/* Right */
.aw-tl__item--r {
  margin-left: 50%;
  padding-left: 48px;
}

/* Left */
.aw-tl__item--l {
  margin-left: 0;
  padding-right: 48px;
  flex-direction: row-reverse;
  text-align: right;
}


/* ---- Node (dot + rings) ---- */
.aw-tl__node {
  position: absolute;
  top: 22px;
  z-index: 3;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-tl__item--r .aw-tl__node { left: -10px; }
.aw-tl__item--l .aw-tl__node { right: -10px; }

.aw-tl__ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--aw-white);
  border: 3px solid var(--aw-gold);
  box-shadow:
    0 0 0 4px var(--aw-gold-soft),
    0 0 12px rgba(200,164,78,0.15);
  transition: all 0.5s var(--aw-ease);
}

.aw-tl__item:hover .aw-tl__ring,
.aw-tl__item.is-visible .aw-tl__ring {
  background: var(--aw-gold);
  box-shadow:
    0 0 0 6px var(--aw-gold-soft),
    0 0 20px rgba(200,164,78,0.25);
  transform: scale(1.15);
}


/* ---- Card ---- */
.aw-tl__card {
  flex: 1;
  background: var(--aw-white);
  border: 1.5px solid var(--aw-line);
  border-radius: var(--aw-r-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s var(--aw-ease);
}

.aw-tl__card:hover {
  border-color: var(--aw-gold);
  box-shadow: 0 8px 32px var(--aw-gold-glow);
  transform: translateY(-3px);
}

/* Category tags */
.aw-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.aw-tag--tech { background: rgba(99,102,241,0.1); color: #6366f1; }
.aw-tag--bpm  { background: rgba(16,185,129,0.1); color: #059669; }
.aw-tag--dm   { background: var(--aw-gold-soft); color: #a08235; }
.aw-tag--ccm  { background: rgba(107,184,190,0.12); color: #4a9da3; }

.aw-tl__card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--aw-text);
  margin: 0 0 8px;
  line-height: 1.35;
}

.aw-tl__org {
  display: block;
  color: var(--aw-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.aw-tl__card p {
  color: var(--aw-text-2);
  line-height: 1.7;
  margin: 0;
}

/* Resource / file links — larger */
.aw-tl__files {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--aw-line-2);
}

.aw-tl__item--l .aw-tl__files { justify-content: flex-end; }

.aw-tl__files a,
.aw-tl__files button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aw-primary-dark);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--aw-ease);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.aw-tl__files a:hover,
.aw-tl__files button:hover { color: var(--aw-primary); text-decoration: none; }

/* Video trigger play icon */
.aw-video-trigger i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--aw-primary-dark);
  transition: all 0.3s var(--aw-ease);
}
.aw-video-trigger:hover i { color: var(--aw-primary); transform: scale(1.1); }


/* =============================================
   AWARD BODY LOGOS
   ============================================= */
.aw-bodies {
  text-align: center;
  padding: 16px 0;
}
.aw-bodies__label {
  color: var(--aw-text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin: 0 0 28px;
}
.aw-bodies__strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.aw-bodies__strip img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.3;
  transition: all 0.4s var(--aw-ease);
}
.aw-bodies__strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* =============================================
   CTA
   ============================================= */
.aw-cta {
  background: linear-gradient(135deg, var(--aw-navy) 0%, var(--aw-navy-mid) 50%, var(--aw-navy-end) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aw-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,78,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.aw-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--aw-white);
  margin: 0 0 14px;
  position: relative;
}
.aw-cta > .container > p {
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
}
.aw-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}


/* =============================================
   VIDEO MODAL
   ============================================= */
.aw-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.aw-modal[hidden] { display: none; }

.aw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.aw-modal__wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
}

.aw-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  transition: color 0.3s;
}
.aw-modal__close:hover { color: var(--aw-white); }

.aw-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: var(--aw-r-lg);
  overflow: hidden;
}
.aw-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* =============================================
   ANIMATIONS
   ============================================= */
.aw-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aw-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.aw-anim--d1 { transition-delay: 0.12s; }
.aw-anim--d2 { transition-delay: 0.24s; }


/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .aw-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .aw-hero__showcase { height: 280px; }
  .aw-hero__photo--1 { width: 240px; height: 170px; }
  .aw-hero__photo--2 { width: 220px; height: 160px; }
  .aw-hero__photo--3 { width: 110px; height: 145px; }
  .aw-feat-hero { grid-template-columns: 1fr; }
  .aw-feat-hero__img { min-height: 220px; }
  .aw-feat-hero__body { padding: 28px; }
  .aw-analyst-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .aw-hero { min-height: auto; }
  .aw-hero__inner { padding: 52px 0 48px; }
  .aw-hero__text h1 { font-size: 2.1rem !important; }
  .aw-hero__overlay {
    background: linear-gradient(to bottom, rgba(10,15,26,0.9) 0%, rgba(10,15,26,0.65) 60%, rgba(10,15,26,0.45) 100%);
  }
  .aw-hero__showcase { height: 240px; }
  .aw-hero__photo--1 { width: 52%; height: 155px; }
  .aw-hero__photo--2 { width: 48%; height: 140px; top: 40px; }
  .aw-hero__photo--3 { width: 100px; height: 130px; }
  .aw-hero__actions { flex-direction: column; }
  .aw-hero__actions .aw-btn { justify-content: center; }

  .aw-section { padding: 56px 0; }
  .aw-tl-section { padding: 56px 0 72px; }

  .aw-section-header h2,
  .aw-cta h2 { font-size: 1.8rem; }

  .aw-feat-row { grid-template-columns: 1fr; }

  /* --- TIMELINE MOBILE --- */
  .aw-tl::before { left: 18px; }
  .aw-tl::after { left: 18px; width: 24px; }

  .aw-tl__year-sep { text-align: left; padding-left: 42px; }
  .aw-tl__year-sep span { font-size: 0.9rem; min-width: 72px; height: 38px; padding: 0 18px; }

  .aw-tl__item,
  .aw-tl__item--r,
  .aw-tl__item--l {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
    flex-direction: row;
    text-align: left;
  }

  .aw-tl__node,
  .aw-tl__item--r .aw-tl__node,
  .aw-tl__item--l .aw-tl__node {
    left: 10px;
    right: auto;
  }

  .aw-tl__item--l .aw-tl__files { justify-content: flex-start; }

  .aw-tl__card { padding: 22px 20px; }
  .aw-tl__files { font-size: 0.95rem; }

  .aw-cta__actions { flex-direction: column; align-items: center; }

  .aw-bodies__strip { gap: 24px; }
  .aw-bodies__strip img { height: 36px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .aw-hero__text h1 { font-size: 1.75rem !important; }
  .aw-hero__showcase { height: 200px; }
  .aw-hero__photo--1 { width: 55%; height: 130px; }
  .aw-hero__photo--2 { width: 50%; height: 120px; top: 30px; }
  .aw-hero__photo--3 { width: 85px; height: 110px; }

  .aw-section-header h2,
  .aw-cta h2 { font-size: 1.5rem; }

  .aw-feat-hero__body { padding: 22px 20px; }

  .aw-tl__card { padding: 18px 16px; }
  .aw-tl__item--r,
  .aw-tl__item--l { padding-left: 44px; }
  .aw-tl__node,
  .aw-tl__item--r .aw-tl__node,
  .aw-tl__item--l .aw-tl__node { left: 8px; }
  .aw-tl::before { left: 16px; }
  .aw-tl::after { left: 16px; }
  .aw-tl__year-sep { padding-left: 38px; }

  .aw-bodies__strip { gap: 18px; }
  .aw-bodies__strip img { height: 28px; }
}

/* Focus for accessibility */
.aw-btn:focus-visible,
.aw-arrow-link:focus-visible,
.aw-tl__files a:focus-visible,
.aw-video-trigger:focus-visible,
.aw-modal__close:focus-visible {
  outline: 2px solid var(--aw-primary);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aw-anim { opacity: 1; transform: none; transition: none; }
  .aw-tl-warmth { opacity: 1; transition: none; }
  .aw-tl__ring { transition: none; }
  .aw-hero__photo,
  .aw-feat-hero,
  .aw-feat-card,
  .aw-analyst,
  .aw-tl__card { transition: none; }
}