/* Homepage — dark colorful hero + animated product slider */
.aws-home {
  --aws-header-h: 96px;
  --aws-fluid-gutter: clamp(32px, 5.5vw, 100px);
}

.aws-home .aws-header__inner {
  gap: clamp(16px, 2vw, 32px);
}

.aws-home .aws-header__logo {
  flex-shrink: 0;
  background: transparent;
  line-height: 0;
}

.aws-home .aws-header__logo img {
  height: 76px;
  width: auto;
  max-width: min(220px, 40vw);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.25));
}

.aws-home .aws-footer__brand img {
  height: 60px;
  width: auto;
  max-width: 174px;
  object-fit: contain;
  background: transparent;
}

@media (max-width: 991px) {
  .aws-home {
    --aws-header-h: 84px;
    --aws-fluid-gutter: clamp(20px, 5vw, 40px);
  }

  .aws-home .aws-header__logo img {
    height: 60px;
    max-width: 174px;
  }
}

.aws-home .aws-header:not(.is-scrolled) {
  background: rgba(6, 11, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-home .aws-header:not(.is-scrolled) .aws-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.aws-home .aws-header:not(.is-scrolled) .aws-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.aws-home .aws-header:not(.is-scrolled) .aws-header__phone span {
  color: #fff;
}

/* ── Dark hero ── */
.aws-hero-dark {
  position: relative;
  box-sizing: border-box;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--aws-header-h) + clamp(40px, 6vh, 64px)) 0 clamp(24px, 3vh, 36px);
  overflow: hidden;
  background: #040810;
}

.aws-hero-dark > .container-fluid {
  width: 100%;
}

.aws-hero-dark__bg {
  position: absolute;
  inset: 0;
  background: url("../img/slider/slider-bg-3.jpg") center / cover no-repeat;
  opacity: 0.4;
  animation: aws-hero-kenburns 20s ease-in-out infinite alternate;
}

@keyframes aws-hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Animated color orbs */
.aws-hero-dark__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.aws-hero-dark__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: aws-orb-drift 14s ease-in-out infinite;
}

.aws-hero-dark__orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: 5%;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  animation-delay: 0s;
}

.aws-hero-dark__orb--2 {
  width: 360px;
  height: 360px;
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  animation-delay: -5s;
}

.aws-hero-dark__orb--3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  animation-delay: -9s;
  opacity: 0.35;
}

@keyframes aws-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* Floating particles */
.aws-hero-dark__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.aws-hero-dark__particle {
  position: absolute;
  border-radius: 50%;
  animation: aws-particle-float 10s linear infinite;
  opacity: 0;
}

@keyframes aws-particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.aws-hero-dark__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4, 8, 16, 0.9) 0%, rgba(4, 8, 16, 0.74) 40%, rgba(4, 8, 16, 0.4) 68%, rgba(4, 8, 16, 0.22) 100%),
    linear-gradient(180deg, transparent 65%, #040810 100%);
}

.aws-hero-dark__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.aws-hero-dark__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 560px;
}

.aws-hero-dark__visual {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

@media (min-width: 992px) {
  .aws-hero-dark__copy {
    max-width: none;
  }

  /* Title lines up with slider — badge below CTAs */
  .aws-hero-dark__copy .aws-hero-dark__title { order: 1; }
  .aws-hero-dark__copy .aws-hero-dark__desc { order: 2; }
  .aws-hero-dark__copy .aws-hero-dark__pills { order: 3; }
  .aws-hero-dark__copy .aws-hero-dark__cta { order: 4; }
  .aws-hero-dark__copy .aws-hero-dark__badge {
    order: 5;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .aws-hero-dark__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(48px, 5.5vw, 80px);
  }
}

@media (max-width: 991px) {
  .aws-hero-dark__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aws-hero-dark__copy {
    max-width: none;
  }

  .aws-hero-dark__visual {
    padding: 12px 0;
  }
}

/* Staggered entrance */
.aws-hero-fx {
  opacity: 0;
  transform: translateY(28px);
  animation: aws-hero-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.aws-hero-fx--1 { animation-delay: 0.1s; }
.aws-hero-fx--2 { animation-delay: 0.22s; }
.aws-hero-fx--3 { animation-delay: 0.34s; }
.aws-hero-fx--4 { animation-delay: 0.46s; }
.aws-hero-fx--5 { animation-delay: 0.58s; }

@keyframes aws-hero-enter {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .aws-hero-fx,
  .aws-hero-dark__bg,
  .aws-hero-dark__orb,
  .aws-hero-dark__particle,
  .aws-eval-mock__pen,
  .aws-ai-guru-panel::before,
  .aws-ai-guru-panel__icon,
  .aws-ai-guru-panel__orbit,
  .aws-ai-guru-panel__btn-fill,
  .aws-ai-guru-panel__sparkles,
  .aws-hero-dark__explore i {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .aws-hero-fx,
  .aws-hero-dark__bg,
  .aws-hero-dark__orb,
  .aws-hero-dark__particle {
    opacity: 1;
    transform: none;
  }
}

.aws-hero-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  margin-bottom: 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
  border: 1px solid rgba(96, 165, 250, 0.4);
  font-size: 15px;
  font-weight: 600;
  color: #bfdbfe;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.2);
  animation: aws-badge-pulse 3s ease-in-out infinite;
}

@keyframes aws-badge-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(59, 130, 246, 0.2); }
  50% { box-shadow: 0 0 32px rgba(16, 185, 129, 0.35); }
}

.aws-hero-dark__badge i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.aws-hero-dark__title {
  margin: 0 0 24px;
  font-family: var(--aws-display);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.aws-hero-dark__gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 35%, #34d399 65%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aws-gradient-flow 5s ease infinite;
}

@keyframes aws-gradient-flow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.aws-hero-dark__desc {
  margin: 0 0 28px;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}

/* Colorful product pills */
.aws-hero-dark__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.aws-hero-dark__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  animation: aws-pill-glow 2.5s ease-in-out infinite;
}

.aws-hero-dark__pill--lms {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  animation-delay: 0s;
}

.aws-hero-dark__pill--osm {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
  animation-delay: 0.4s;
}

.aws-hero-dark__pill--erp {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.35);
  color: #c4b5fd;
  animation-delay: 0.8s;
}

@keyframes aws-pill-glow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.aws-hero-dark__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.aws-home .aws-btn--glow {
  position: relative;
  animation: aws-gradient-shift 4s ease infinite, aws-btn-pulse 2s ease-in-out infinite;
}

@keyframes aws-btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(245, 158, 11, 0.45); }
  50% { box-shadow: 0 8px 40px rgba(249, 115, 22, 0.65), 0 0 60px rgba(245, 158, 11, 0.25); }
}

.aws-hero-dark__stats-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-hero-dark__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
}

.aws-hero-dark__explore {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.aws-hero-dark__explore i {
  font-size: 14px;
  color: #60a5fa;
  animation: aws-explore-bounce 2s ease-in-out infinite;
}

.aws-hero-dark__explore:hover {
  color: #fff;
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.1);
}

@keyframes aws-explore-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 575px) {
  .aws-hero-dark__stats-row {
    flex-direction: column;
    align-items: stretch;
  }

  .aws-hero-dark__stats {
    justify-content: center;
  }

  .aws-hero-dark__explore {
    align-self: center;
    flex-direction: row;
  }
}

.aws-hero-dark__stats strong {
  display: block;
  font-family: var(--aws-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aws-hero-dark__stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Product slider — aligned with hero copy ── */
.aws-product-slider {
  position: relative;
}

.aws-hero-dark__visual .aws-product-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.aws-hero-dark__visual .aws-product-slider__glow {
  inset: 0 -20px -20px;
}

@media (max-width: 991px) {
  .aws-hero-dark__visual .aws-product-slider {
    margin-inline: auto;
    max-width: 640px;
  }
}

.aws-product-slider__glow {
  position: absolute;
  inset: -12px -20px -20px;
  border-radius: 24px;
  background: var(--slider-glow, #3b82f6);
  opacity: 0.35;
  filter: blur(40px);
  z-index: 0;
  transition: background 0.6s ease, opacity 0.6s ease;
  animation: aws-glow-pulse 3s ease-in-out infinite;
}

@keyframes aws-glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

.aws-product-slider__frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0c1424;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.aws-product-slider__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1e293b, #111827);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-product-slider__chrome span:nth-child(1) { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.aws-product-slider__chrome span:nth-child(2) { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.aws-product-slider__chrome span:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }

.aws-product-slider__label {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--slider-glow, #60a5fa);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.4s;
}

.aws-product-slider__viewport {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: clamp(240px, 34vh, 440px);
  max-height: 480px;
  background: linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
}

@media (min-width: 1200px) {
  .aws-product-slider__viewport {
    min-height: clamp(280px, 36vh, 460px);
    max-height: 500px;
  }
}

.aws-product-slider__track {
  display: flex;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aws-product-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}

.aws-product-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* OSES-style evaluation mock + AI Professor (hero slide 1) */
.aws-product-slider__slide--eval {
  background: #f1f5f9;
}

.aws-eval-mock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(148px, 34%);
  height: 100%;
  min-height: 100%;
}

.aws-eval-mock__script {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #525659;
}

.aws-eval-mock__toolbar {
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  color: #e2e8f0;
  background: #334155;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.aws-eval-mock__page {
  position: relative;
  flex: 1;
  margin: 10px;
  border-radius: 4px;
  background: #fff;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aws-eval-mock__line {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #cbd5e1 0%, #e2e8f0 100%);
}

.aws-eval-mock__line--short { width: 62%; }
.aws-eval-mock__line--med { width: 78%; }

.aws-eval-mock__pen {
  position: absolute;
  right: 18%;
  top: 42%;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: #ef4444;
  transform: rotate(-18deg);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.45);
  animation: aws-eval-pen 2.8s ease-in-out infinite;
}

@keyframes aws-eval-pen {
  0%, 100% { transform: rotate(-18deg) translate(0, 0); }
  50% { transform: rotate(-12deg) translate(12px, 6px); }
}

.aws-eval-mock__sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: #fafbfc;
  border-left: 1px solid #e2e8f0;
  min-height: 0;
}

.aws-eval-mock__marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  color: #475569;
}

.aws-eval-mock__marks span {
  padding: 4px 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.aws-eval-mock__marks strong { color: #1d4ed8; }

.aws-eval-mock__total {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #eff6ff, #f0f9ff) !important;
  border-color: #bfdbfe !important;
  color: #1e3a8a !important;
}

/* AI Professor panel — ported from OSES evaluate.php */
.aws-ai-guru-panel {
  position: relative;
  margin-top: auto;
  padding: 10px 10px 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 55%, #fdf4ff 100%);
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.08);
  overflow: hidden;
}

.aws-ai-guru-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(120deg, #6366f1, #a855f7, #38bdf8, #6366f1);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
  animation: aws-ai-guru-border 6s ease infinite;
}

.aws-ai-guru-panel.is-demo-busy::before {
  opacity: 0.85;
  animation-duration: 2.5s;
}

@keyframes aws-ai-guru-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.aws-ai-guru-panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.aws-ai-guru-panel__icon-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.aws-ai-guru-panel__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.aws-ai-guru-panel.is-demo-busy .aws-ai-guru-panel__icon {
  animation: aws-ai-guru-pulse 1.6s ease-in-out infinite;
}

@keyframes aws-ai-guru-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35); }
  50% { transform: scale(1.06); box-shadow: 0 6px 22px rgba(124, 58, 237, 0.45); }
}

.aws-ai-guru-panel__orbit {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(99, 102, 241, 0.35);
  opacity: 0;
  pointer-events: none;
}

.aws-ai-guru-panel.is-demo-busy .aws-ai-guru-panel__orbit {
  opacity: 1;
  animation: aws-ai-guru-spin 3s linear infinite;
}

@keyframes aws-ai-guru-spin {
  to { transform: rotate(360deg); }
}

.aws-ai-guru-panel__title {
  font-size: 12px;
  font-weight: 800;
  color: #312e81;
  line-height: 1.2;
}

.aws-ai-guru-panel__title small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: #6366f1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.aws-ai-guru-panel__btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  background: linear-gradient(95deg, #4338ca, #6d28d9 45%, #2563eb);
  color: #fff;
  box-shadow: 0 4px 16px rgba(67, 56, 202, 0.32);
  z-index: 1;
}

.aws-ai-guru-panel__btn-text {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1.35;
}

.aws-ai-guru-panel__btn-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  background-size: 200% 100%;
  pointer-events: none;
  animation: aws-ai-guru-shimmer 1.1s linear infinite;
  z-index: 1;
}

@keyframes aws-ai-guru-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.aws-ai-guru-panel__sparkles {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  animation: aws-ai-guru-spark 1.2s ease-in-out infinite;
}

@keyframes aws-ai-guru-spark {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.15); }
}

.aws-ai-guru-panel__hint {
  position: relative;
  z-index: 1;
  margin: 6px 2px 0;
  font-size: 9px;
  line-height: 1.35;
  color: #64748b;
}

.aws-ai-guru-panel__hint strong { color: #4338ca; }

@media (max-width: 575px) {
  .aws-eval-mock {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .aws-eval-mock__sidebar {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }
}

.aws-product-slider__nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.aws-product-slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.aws-product-slider__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--slider-glow, #3b82f6);
  transform: scale(1.08);
}

.aws-product-slider__dots {
  display: flex;
  gap: 10px;
}

.aws-product-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.aws-product-slider__dot.is-active {
  background: var(--slider-glow, #3b82f6);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--slider-glow, #3b82f6);
}

.aws-product-slider__caption {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.aws-product-slider__caption a {
  color: var(--slider-glow, #60a5fa);
  margin-left: 6px;
  transition: color 0.3s;
}

/* AI Professor slide highlight */
.aws-product-slider__frame--ai {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(168, 85, 247, 0.2);
}

.aws-product-slider__slide--ai img {
  background: #f8fafc;
}

/* ── AI spotlight section ── */
.aws-ai-spotlight {
  position: relative;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #040810 0%, #0a1020 50%, #0f172a 100%);
  overflow: hidden;
}

.aws-ai-spotlight__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(168, 85, 247, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.aws-ai-spotlight__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.aws-eyebrow--ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #d8b4fe;
  font-weight: 600;
}

.aws-ai-spotlight__title {
  margin: 20px 0 16px;
  font-family: var(--aws-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.aws-ai-spotlight__title span {
  background: linear-gradient(135deg, #c084fc 0%, #60a5fa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aws-ai-spotlight__lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.aws-ai-spotlight__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  width: 100%;
}

@media (min-width: 1400px) {
  .aws-ai-spotlight__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(48px, 6vw, 88px);
  }
}

@media (max-width: 991px) {
  .aws-ai-spotlight__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.aws-ai-professor__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
  animation: aws-ai-badge-pulse 3s ease-in-out infinite;
}

@keyframes aws-ai-badge-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35); }
  50% { box-shadow: 0 12px 48px rgba(124, 58, 237, 0.55), 0 0 24px rgba(168, 85, 247, 0.3); }
}

.aws-ai-professor__shot {
  margin: 0;
  border: 3px solid #a855f7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(168, 85, 247, 0.25);
  animation: aws-ai-shot-glow 4s ease-in-out infinite;
}

@keyframes aws-ai-shot-glow {
  0%, 100% { border-color: #a855f7; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(168, 85, 247, 0.2); }
  50% { border-color: #c084fc; box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5), 0 0 72px rgba(168, 85, 247, 0.4); }
}

.aws-ai-professor__shot img {
  display: block;
  width: 100%;
  height: auto;
}

.aws-ai-professor__shot figcaption {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
  background: linear-gradient(180deg, #faf5ff, #f5f3ff);
  border-top: 1px solid #ddd6fe;
}

.aws-ai-professor__features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.aws-ai-professor__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.aws-ai-professor__features i {
  color: #a78bfa;
  margin-top: 3px;
}

.aws-ai-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aws-ai-product-card {
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.aws-ai-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.aws-ai-product-card--lms:hover { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15); }
.aws-ai-product-card--osm:hover { border-color: rgba(16, 185, 129, 0.5); box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15); }
.aws-ai-product-card--erp:hover { border-color: rgba(167, 139, 250, 0.5); box-shadow: 0 16px 40px rgba(167, 139, 250, 0.15); }

.aws-ai-product-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.aws-ai-product-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.aws-ai-product-card--lms .aws-ai-product-card__icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.aws-ai-product-card--osm .aws-ai-product-card__icon { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.aws-ai-product-card--erp .aws-ai-product-card__icon { background: rgba(167, 139, 250, 0.2); color: #c4b5fd; }

.aws-ai-product-card__head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.aws-ai-product-card__tag {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34d399;
}

.aws-ai-product-card__tag--soon {
  color: #c4b5fd;
}

.aws-ai-product-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.aws-ai-product-card a {
  font-size: 13px;
  font-weight: 700;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aws-ai-product-card--osm a { color: #6ee7b7; }
.aws-ai-product-card--erp a { color: #c4b5fd; }

.aws-home .aws-section {
  padding-block: clamp(64px, 7vw, 96px);
}

.aws-home .aws-section__head--center {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 4vw, 52px);
}

/* ── Fold 2: Services & Products (premium dark) ── */
.aws-offer {
  position: relative;
  padding: clamp(48px, 5vw, 72px) 0;
  background: #060b18;
  overflow: hidden;
}

.aws-offer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.aws-eyebrow--light {
  color: #60a5fa;
}

.aws-eyebrow--light::before {
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.aws-offer__panels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
}

@media (max-width: 991px) {
  .aws-offer__panels { grid-template-columns: 1fr; }
}

.aws-offer-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.aws-offer-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-offer-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.15));
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.aws-offer-panel__icon--products {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.15));
  color: #34d399;
}

.aws-offer-panel__head h3 {
  margin: 0 0 4px;
  font-family: var(--aws-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.aws-offer-panel__head p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.aws-service-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
  align-content: stretch;
}

@media (max-width: 575px) {
  .aws-service-tiles { grid-template-columns: 1fr; }
}

.aws-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  min-height: 132px;
  padding: 20px 14px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.aws-service-tile i {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(6, 182, 212, 0.12));
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.18);
}

.aws-service-tile:nth-child(2) i {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(59, 130, 246, 0.12));
  color: #22d3ee;
}

.aws-service-tile:nth-child(3) i {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(6, 182, 212, 0.12));
  color: #34d399;
}

.aws-service-tile:nth-child(4) i {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(59, 130, 246, 0.12));
  color: #a78bfa;
}

.aws-service-tile:nth-child(5) i {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(139, 92, 246, 0.12));
  color: #f472b6;
}

.aws-service-tile:nth-child(6) i {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(244, 114, 182, 0.12));
  color: #fbbf24;
}

.aws-service-tile span {
  display: block;
  width: 100%;
  text-align: center;
}

.aws-service-tile:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}

.aws-offer-panel__link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aws-product-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.aws-product-strip__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.aws-product-strip__item > i {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aws-product-strip__item--lms > i { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.aws-product-strip__item--osm > i { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.aws-product-strip__item--erp > i { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.aws-product-strip__item--mds > i { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.aws-product-strip__item--news > i { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
.aws-product-strip__item--ecom > i { background: rgba(244, 114, 182, 0.2); color: #f472b6; }

.aws-product-strip__item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.aws-product-strip__item--lms:hover { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.35); }
.aws-product-strip__item--osm:hover { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.35); }
.aws-product-strip__item--erp:hover { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.35); }
.aws-product-strip__item--mds:hover { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.35); }
.aws-product-strip__item--news:hover { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.35); }
.aws-product-strip__item--ecom:hover { background: rgba(244, 114, 182, 0.1); border-color: rgba(244, 114, 182, 0.35); }

.aws-product-strip__badge {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
}

.aws-product-strip__badge--live { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.aws-product-strip__badge--soon { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }
.aws-product-strip__badge--new { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }

.aws-product-strip__item strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding-right: 48px;
}

.aws-product-strip__item small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  grid-column: 2;
}

.aws-offer-panel__cta {
  margin-top: auto;
  padding-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ── Fold 3: Scrolling university logos (balanced + soft glow discs) ── */
.aws-partners-marquee {
  position: relative;
  padding: clamp(48px, 5vw, 72px) 0 clamp(56px, 6vw, 80px);
  background: linear-gradient(180deg, #060b18 0%, #0a1020 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.aws-partners-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(224, 231, 255, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 40% 45% at 80% 55%, rgba(186, 230, 253, 0.07) 0%, transparent 58%);
}

.aws-partners-marquee .aws-section__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.aws-partners-marquee__wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 8px 0;
  width: 100%;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.aws-partners-marquee__fade {
  display: none;
}

.aws-partners-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: aws-partners-scroll 40s linear infinite;
  will-change: transform;
}

.aws-partners-marquee__track:hover {
  animation-play-state: paused;
}

.aws-partners-marquee__group {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}

@keyframes aws-partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .aws-partners-marquee__logo::before {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .aws-partners-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .aws-partners-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .aws-partners-marquee__group {
    width: 100%;
    max-width: var(--aws-fluid-max);
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 20px;
  }
}

.aws-partners-marquee__item {
  flex: 0 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 8px;
  text-align: center;
}

.aws-partners-marquee__logo {
  position: relative;
  isolation: isolate;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.3s;
}

/* Soft cloud glow only — no white disc or frame */
.aws-partners-marquee__logo::before {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(224, 231, 255, 0.5) 25%,
    rgba(199, 210, 254, 0.32) 45%,
    rgba(186, 230, 253, 0.15) 60%,
    transparent 72%
  );
  filter: blur(16px);
  opacity: 0.85;
  animation: aws-partners-cloud-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.aws-partners-marquee__item:nth-child(5n+2) .aws-partners-marquee__logo::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(204, 251, 241, 0.45) 28%,
    rgba(167, 243, 208, 0.28) 48%,
    transparent 70%
  );
}

.aws-partners-marquee__item:nth-child(5n+3) .aws-partners-marquee__logo::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(237, 233, 254, 0.48) 28%,
    rgba(216, 180, 254, 0.28) 48%,
    transparent 70%
  );
}

.aws-partners-marquee__item:nth-child(5n+4) .aws-partners-marquee__logo::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(254, 243, 199, 0.42) 28%,
    rgba(253, 230, 138, 0.22) 48%,
    transparent 70%
  );
}

.aws-partners-marquee__item:nth-child(5n+5) .aws-partners-marquee__logo::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(219, 234, 254, 0.45) 28%,
    rgba(147, 197, 253, 0.25) 48%,
    transparent 70%
  );
}

@keyframes aws-partners-cloud-glow {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.aws-partners-marquee__item:hover .aws-partners-marquee__logo {
  transform: scale(1.06);
}

.aws-partners-marquee__item:hover .aws-partners-marquee__logo::before {
  opacity: 1;
  filter: blur(22px);
  transform: scale(1.12);
}

.aws-partners-marquee__logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}


.aws-partners-marquee__item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  max-width: 160px;
}

/* ── Utilities ── */
.aws-utilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .aws-utilities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .aws-utilities__grid { grid-template-columns: 1fr; }
}

.aws-utility-card {
  padding: 28px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.aws-utility-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.aws-utility-card i {
  font-size: 28px;
  color: #60a5fa;
  margin-bottom: 12px;
}

.aws-utility-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff;
}

.aws-utility-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Academy & Book spotlight ── */
.aws-spotlight-cards {
  padding: clamp(56px, 6vw, 80px) 0;
  background: linear-gradient(180deg, #0a1020 0%, #0f172a 100%);
}

.aws-spotlight-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

@media (max-width: 767px) {
  .aws-spotlight-cards__grid { grid-template-columns: 1fr; }
}

.aws-spotlight-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.aws-spotlight-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.aws-spotlight-card__thumb {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.4);
}

.aws-spotlight-card__thumb img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.aws-spotlight-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60a5fa;
  margin-bottom: 6px;
}

.aws-spotlight-card--book .aws-spotlight-card__label { color: #fbbf24; }

.aws-spotlight-card h3 {
  margin: 0 0 8px;
  font-family: var(--aws-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.aws-spotlight-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.aws-spotlight-card a {
  font-size: 13px;
  font-weight: 700;
  color: #93c5fd;
}

.aws-spotlight-card--book a { color: #fbbf24; }

/* ── Blog / resources news strip ── */
.aws-news-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aws-news-strip__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  color: inherit;
  text-decoration: none;
}

.aws-news-strip__item:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateX(4px);
}

.aws-news-strip__thumb {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-news-strip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aws-news-strip__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.aws-news-strip__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #60a5fa;
}

.aws-news-strip__body strong {
  font-family: var(--aws-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.aws-news-strip__body small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aws-news-strip__arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  transition: color 0.25s, transform 0.25s;
}

.aws-news-strip__item:hover .aws-news-strip__arrow {
  color: #60a5fa;
  transform: translateX(3px);
}

@media (max-width: 575px) {
  .aws-news-strip__body small {
    white-space: normal;
  }
}

/* ── Contact home ── */
.aws-contact-home {
  padding: clamp(64px, 7vw, 96px) 0;
  background: #060b18;
}

.aws-contact-home__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .aws-contact-home__grid { grid-template-columns: 1fr; }
}

.aws-contact-home__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 575px) {
  .aws-contact-home__cards { grid-template-columns: 1fr; }
}

.aws-contact-home__card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.aws-contact-home__card i {
  color: #60a5fa;
  font-size: 18px;
  margin-bottom: 10px;
}

.aws-contact-home__card strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.aws-contact-home__card a,
.aws-contact-home__card span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.aws-contact-home__card a:hover { color: #93c5fd; }

.aws-contact-home__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
