/* ═══════════════════════════════════════════════════════════════
   Avid Web Solutions — Professional Agency Design System
   ═══════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,400&family=Syne:wght@500..800&display=swap");

:root {
  --aws-bg: #060b18;
  --aws-surface: #0c1424;
  --aws-surface-2: #111d33;
  --aws-border: rgba(255, 255, 255, 0.07);
  --aws-border-light: rgba(255, 255, 255, 0.12);
  --aws-text: #94a3b8;
  --aws-text-bright: #e2e8f0;
  --aws-white: #ffffff;
  --aws-blue: #3b82f6;
  --aws-blue-glow: rgba(59, 130, 246, 0.35);
  --aws-cyan: #06b6d4;
  --aws-amber: #f59e0b;
  --aws-green: #10b981;
  --aws-radius: 14px;
  --aws-radius-lg: 22px;
  --aws-radius-xl: 32px;
  --aws-font: "DM Sans", system-ui, sans-serif;
  --aws-display: "Syne", system-ui, sans-serif;
  --aws-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aws-header-h: 96px;
  --aws-fluid-max: 1680px;
  --aws-fluid-gutter: clamp(32px, 5.5vw, 100px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.aws-site {
  margin: 0;
  font-family: var(--aws-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--aws-text);
  background: var(--aws-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.aws-site img { max-width: 100%; height: auto; display: block; }
.aws-site a { text-decoration: none; color: inherit; }
.aws-site ul { list-style: none; margin: 0; padding: 0; }

.aws-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.aws-container--wide {
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}

.aws-container--full {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 4vw, 80px);
  margin-inline: auto;
}

/* Fluid layout — full width with generous left/right space */
.aws-site .container-fluid {
  width: min(100%, var(--aws-fluid-max));
  max-width: var(--aws-fluid-max);
  padding-inline: var(--aws-fluid-gutter);
  margin-inline: auto;
  box-sizing: border-box;
}

/* ── Typography ── */
.aws-display {
  font-family: var(--aws-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--aws-white);
}

.aws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aws-cyan);
  margin-bottom: 16px;
}

.aws-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--aws-blue), var(--aws-cyan));
  border-radius: 2px;
}

.aws-section-title {
  font-family: var(--aws-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
  margin: 0 0 16px;
}

.aws-section-title--light { color: var(--aws-white); }

.aws-section-lead {
  font-size: 1.05rem;
  color: var(--aws-text);
  max-width: 560px;
  margin: 0;
  line-height: 1.75;
}

.aws-section-lead--light { color: rgba(255,255,255,0.62); }

.aws-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 45%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.aws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--aws-font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--aws-ease), box-shadow 0.3s var(--aws-ease), background 0.3s;
}

.aws-btn--primary {
  background: linear-gradient(135deg, var(--aws-blue) 0%, #2563eb 100%);
  color: var(--aws-white) !important;
  box-shadow: 0 4px 24px var(--aws-blue-glow);
}

.aws-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--aws-blue-glow);
  color: var(--aws-white) !important;
}

.aws-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--aws-white) !important;
  border: 1px solid var(--aws-border-light);
}

.aws-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--aws-white) !important;
}

.aws-btn--dark {
  background: #0f172a;
  color: var(--aws-white) !important;
}

.aws-btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.25);
  color: var(--aws-white) !important;
}

.aws-btn--outline {
  background: transparent;
  color: #0f172a !important;
  border: 1.5px solid #e2e8f0;
}

.aws-btn--outline:hover {
  border-color: var(--aws-blue);
  color: var(--aws-blue) !important;
}

/* ── Header ── */
.aws-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--aws-header-h);
  transition: background 0.4s var(--aws-ease), box-shadow 0.4s, backdrop-filter 0.4s;
}

.aws-header.is-scrolled {
  background: rgba(6, 11, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--aws-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.aws-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--aws-header-h);
}

.aws-header__logo {
  flex-shrink: 0;
}

.aws-header__logo {
  background: transparent;
}

.aws-header__logo img {
  height: 76px;
  width: auto;
  max-width: min(220px, 38vw);
  object-fit: contain;
  background: transparent;
}

@media (max-width: 991px) {
  .aws-header__logo img {
    height: 60px;
    max-width: 174px;
  }
}

.aws-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aws-nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.aws-nav a:hover,
.aws-nav a.is-active {
  color: var(--aws-white);
  background: rgba(255,255,255,0.06);
}

.aws-nav__dropdown {
  position: relative;
}

.aws-nav__dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  opacity: 0.6;
}

.aws-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--aws-surface-2);
  border: 1px solid var(--aws-border-light);
  border-radius: var(--aws-radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.aws-nav__dropdown:hover .aws-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aws-nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
}

.aws-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aws-header__phone {
  display: none;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.aws-header__phone span {
  color: var(--aws-white);
  font-weight: 600;
}

@media (min-width: 1100px) {
  .aws-header__phone { display: block; }
}

.aws-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--aws-border-light);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--aws-white);
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .aws-nav { display: none; }
  .aws-header .aws-btn--primary { display: none; }
  .aws-menu-toggle { display: flex; align-items: center; justify-content: center; }
}

/* Mobile drawer */
.aws-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.aws-drawer.is-open { pointer-events: auto; }

.aws-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.35s;
}

.aws-drawer.is-open .aws-drawer__backdrop { opacity: 1; }

.aws-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--aws-surface);
  border-left: 1px solid var(--aws-border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--aws-ease);
  overflow-y: auto;
}

.aws-drawer.is-open .aws-drawer__panel { transform: translateX(0); }

.aws-drawer__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--aws-white);
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 24px;
}

.aws-drawer__nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--aws-text-bright);
  border-bottom: 1px solid var(--aws-border);
}

.aws-drawer__nav .aws-drawer__sub a {
  padding-left: 16px;
  font-size: 14px;
  color: var(--aws-text);
  border-bottom: none;
}

/* ── Hero ── */
.aws-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--aws-header-h) + 60px) 0 80px;
  background: var(--aws-bg);
  overflow: hidden;
}

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

.aws-hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: rgba(59, 130, 246, 0.18);
  animation: aws-float 12s ease-in-out infinite;
}

.aws-hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: rgba(6, 182, 212, 0.12);
  animation: aws-float 10s ease-in-out infinite reverse;
}

@keyframes aws-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.aws-hero__grid {
  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: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.aws-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.aws-hero__title {
  font-family: var(--aws-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--aws-white);
  margin: 0 0 24px;
}

.aws-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 520px;
}

.aws-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.aws-hero__metrics {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.aws-metric strong {
  display: block;
  font-family: var(--aws-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--aws-white);
  line-height: 1;
}

.aws-metric span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* Hero bento preview */
.aws-hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.aws-hero-bento__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--aws-border-light);
  border-radius: var(--aws-radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--aws-ease), border-color 0.4s;
}

.aws-hero-bento__card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.35);
}

.aws-hero-bento__card--wide {
  grid-column: span 2;
}

.aws-hero-bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.aws-hero-bento__icon--blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.aws-hero-bento__icon--cyan { background: rgba(6,182,212,0.15); color: #22d3ee; }
.aws-hero-bento__icon--green { background: rgba(16,185,129,0.15); color: #34d399; }
.aws-hero-bento__icon--amber { background: rgba(245,158,11,0.15); color: #fbbf24; }

.aws-hero-bento__card h3 {
  font-family: var(--aws-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--aws-white);
  margin: 0 0 6px;
}

.aws-hero-bento__card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ── Logo marquee ── */
.aws-marquee {
  padding: 48px 0;
  background: #f8fafc;
  border-block: 1px solid #e2e8f0;
  overflow: hidden;
}

.aws-marquee__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 28px;
}

.aws-marquee__track {
  display: flex;
  width: max-content;
  animation: aws-marquee 40s linear infinite;
}

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

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

.aws-marquee__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  min-width: 180px;
}

.aws-marquee__item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}

.aws-marquee__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.aws-marquee__item span {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  max-width: 160px;
  line-height: 1.35;
}

/* ── Sections ── */
.aws-section {
  padding: 100px 0;
}

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

.aws-section--muted {
  background: #f8fafc;
}

.aws-section__head {
  margin-bottom: 56px;
}

.aws-section__head--center {
  text-align: center;
}

.aws-section__head--center .aws-section-lead {
  margin-inline: auto;
}

/* ── Product cards ── */
.aws-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.aws-product {
  position: relative;
  border-radius: var(--aws-radius-xl);
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--aws-border);
  transition: transform 0.4s var(--aws-ease);
}

.aws-product:hover { transform: translateY(-6px); }

.aws-product::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.aws-product--lms::before {
  background: radial-gradient(ellipse at top right, rgba(59,130,246,0.2), transparent 60%);
}

.aws-product--osm::before {
  background: radial-gradient(ellipse at top right, rgba(16,185,129,0.18), transparent 60%);
}

.aws-product--lms { background: linear-gradient(160deg, #0f1d3a 0%, #060b18 100%); }
.aws-product--osm { background: linear-gradient(160deg, #0d1f1a 0%, #060b18 100%); }

.aws-product__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.aws-product--lms .aws-product__tag { background: rgba(59,130,246,0.15); color: #60a5fa; }
.aws-product--osm .aws-product__tag { background: rgba(16,185,129,0.15); color: #34d399; }

.aws-product h3 {
  font-family: var(--aws-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--aws-white);
  margin: 0 0 12px;
  position: relative;
}

.aws-product > p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  position: relative;
}

.aws-product__features {
  position: relative;
  margin-bottom: 28px;
}

.aws-product__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.aws-product__features i {
  color: var(--aws-green);
  margin-top: 4px;
  font-size: 12px;
}

.aws-product__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--aws-cyan) !important;
  transition: gap 0.3s;
}

.aws-product__link:hover { gap: 14px; color: var(--aws-white) !important; }

/* ── Bento services ── */
.aws-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px;
}

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

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

.aws-bento__cell {
  background: var(--aws-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--aws-radius-lg);
  padding: 28px;
  transition: transform 0.35s var(--aws-ease), box-shadow 0.35s, border-color 0.35s;
}

.aws-bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.08);
  border-color: #cbd5e1;
}

.aws-bento__cell--large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-color: transparent;
  color: var(--aws-white);
}

.aws-bento__cell--large:hover {
  box-shadow: 0 24px 56px rgba(15,23,42,0.25);
}

.aws-bento__cell--large h3 { color: var(--aws-white); }
.aws-bento__cell--large p { color: rgba(255,255,255,0.65); }

.aws-bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

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

.aws-bento__cell p {
  font-size: 14px;
  color: var(--aws-text);
  margin: 0;
  line-height: 1.6;
}

/* ── Process ── */
.aws-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

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

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

.aws-process__step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--aws-border);
  border-radius: var(--aws-radius-lg);
  counter-increment: step;
}

.aws-process__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--aws-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(59,130,246,0.25);
  display: block;
  margin-bottom: 12px;
}

.aws-process__step h4 {
  font-family: var(--aws-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aws-white);
  margin: 0 0 8px;
}

.aws-process__step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

/* ── About ── */
.aws-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

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

.aws-about__visual {
  position: relative;
  border-radius: var(--aws-radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15,23,42,0.12);
}

.aws-about__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.aws-about__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--aws-white);
  padding: 16px 20px;
  border-radius: var(--aws-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.aws-about__badge strong {
  display: block;
  font-family: var(--aws-display);
  font-size: 1.5rem;
  color: var(--aws-blue);
}

.aws-about__badge span {
  font-size: 12px;
  color: var(--aws-text);
}

.aws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.aws-tag {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: #eff6ff;
  color: var(--aws-blue);
}

/* ── Testimonials ── */
.aws-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.aws-testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--aws-border);
  border-radius: var(--aws-radius-lg);
  padding: 32px;
  transition: border-color 0.3s;
}

.aws-testimonial:hover {
  border-color: rgba(59,130,246,0.25);
}

.aws-testimonial__stars {
  color: var(--aws-amber);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.aws-testimonial blockquote {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-style: normal;
}

.aws-testimonial__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--aws-white);
}

.aws-testimonial__author span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── CTA ── */
.aws-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #0e7490 50%, #060b18 100%);
  position: relative;
  overflow: hidden;
}

.aws-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}

.aws-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.aws-cta h2 {
  font-family: var(--aws-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--aws-white);
  margin: 0 0 16px;
}

.aws-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 0 0 32px;
}

/* ── Blog cards ── */
.aws-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.aws-blog-card {
  border-radius: var(--aws-radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: var(--aws-white);
  transition: transform 0.35s, box-shadow 0.35s;
}

.aws-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.08);
}

.aws-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.aws-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.aws-blog-card__body {
  padding: 24px;
}

.aws-blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aws-blue);
  margin-bottom: 10px;
}

.aws-blog-card h3 {
  font-family: var(--aws-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.aws-blog-card h3 a:hover { color: var(--aws-blue); }

.aws-blog-card p {
  font-size: 14px;
  color: var(--aws-text);
  margin: 0;
  line-height: 1.65;
}

/* ── Footer ── */
.aws-footer {
  background: var(--aws-bg);
  color: rgba(255,255,255,0.6);
  padding-top: 80px;
}

.aws-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--aws-border);
}

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

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

.aws-footer__brand img {
  height: 48px;
  width: auto;
  max-width: 139px;
  margin-bottom: 16px;
}

.aws-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

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

.aws-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--aws-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}

.aws-footer__social a:hover {
  background: var(--aws-blue);
  color: var(--aws-white);
  border-color: var(--aws-blue);
}

.aws-footer h4 {
  font-family: var(--aws-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--aws-white);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.aws-footer ul li {
  margin-bottom: 10px;
}

.aws-footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.aws-footer ul a:hover { color: var(--aws-cyan); }

.aws-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 13px;
}

.aws-footer__bottom a {
  color: rgba(255,255,255,0.5);
}

.aws-footer__bottom a:hover { color: var(--aws-white); }

.aws-back-top {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--aws-border);
  background: rgba(255,255,255,0.05);
  color: var(--aws-white);
  cursor: pointer;
  transition: background 0.2s;
}

.aws-back-top:hover { background: var(--aws-blue); }

/* ── Inner pages ── */
.aws-page-hero {
  padding: calc(var(--aws-header-h) + 80px) 0 80px;
  background: var(--aws-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aws-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59,130,246,0.15), transparent 70%);
}

.aws-page-hero .aws-container { position: relative; z-index: 1; }

.aws-page-hero h1 {
  font-family: var(--aws-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--aws-white);
  margin: 0 0 16px;
}

/* Legacy page wrapper */
.aws-legacy-content {
  padding: 60px 0 100px;
}

.aws-legacy-content .tp-about-area,
.aws-legacy-content .tp-ab-paragraph {
  padding: 0 !important;
}

/* Reveal */
.aws-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--aws-ease), transform 0.7s var(--aws-ease);
}

.aws-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Above-the-fold: always visible (fixes blank hero when JS is delayed) */
.aws-hero-v2__copy,
.aws-hero-v2__visual,
.aws-header {
  opacity: 1 !important;
  transform: none !important;
}

/* Hide old template chrome when new site is active */
body.aws-site .tp-header-area,
body.aws-site .tp-offcanvas-area,
body.aws-site > header:has(.tp-header-area) { display: none !important; }

body.aws-site .tp-footer-area,
body.aws-site .tp-copyright-area { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & ENHANCED CREATIVITY
   ═══════════════════════════════════════════════════════════════ */

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

@keyframes aws-float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(6px) rotate(-1deg); }
}

@keyframes aws-pulse-ring {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

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

.aws-reveal[data-delay="1"] { transition-delay: 0.1s; }
.aws-reveal[data-delay="2"] { transition-delay: 0.2s; }
.aws-reveal[data-delay="3"] { transition-delay: 0.3s; }
.aws-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Demo CTA button */
.aws-btn--demo {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
  background-size: 200% auto;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
  animation: aws-gradient-shift 4s ease infinite;
  border: 1px solid rgba(255,255,255,0.15);
}

.aws-btn--demo:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
  color: #fff !important;
}

.aws-btn--demo-lg {
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
}

/* Product screenshot frame */
.aws-shot {
  position: relative;
  border-radius: var(--aws-radius-lg);
  overflow: hidden;
  border: 1px solid var(--aws-border-light);
  background: var(--aws-surface);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.aws-shot--hero {
  animation: none;
}

.aws-shot__chrome {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #111827;
  border-bottom: 1px solid var(--aws-border);
}

.aws-shot__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #374151;
}

.aws-shot__chrome span:nth-child(1) { background: #ef4444; }
.aws-shot__chrome span:nth-child(2) { background: #f59e0b; }
.aws-shot__chrome span:nth-child(3) { background: #22c55e; }

.aws-shot__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, var(--aws-blue-glow), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
  animation: aws-pulse-ring 4s ease infinite;
}

.aws-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 720;
  display: block;
  position: relative;
  z-index: 1;
  background: #0a1020;
}

/* Product showcase (tabbed) */
.aws-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

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

.aws-showcase__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aws-showcase__tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--aws-radius-lg);
  border: 1px solid var(--aws-border);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all 0.4s var(--aws-ease);
  text-align: left;
  width: 100%;
  color: inherit;
  font-family: inherit;
}

.aws-showcase__tab:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.06);
}

.aws-showcase__tab.is-active {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.1);
  box-shadow: 0 0 40px rgba(59,130,246,0.12);
}

.aws-showcase__tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.aws-showcase__tab.is-active .aws-showcase__tab-icon--lms { background: rgba(59,130,246,0.2); color: #60a5fa; }
.aws-showcase__tab.is-active .aws-showcase__tab-icon--osm { background: rgba(16,185,129,0.2); color: #34d399; }
.aws-showcase__tab.is-active .aws-showcase__tab-icon--erp { background: rgba(139,92,246,0.2); color: #a78bfa; }

.aws-showcase__tab h3 {
  font-family: var(--aws-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--aws-white);
  margin: 0 0 4px;
}

.aws-showcase__tab p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.aws-showcase__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(139,92,246,0.25);
  color: #c4b5fd;
  margin-left: 8px;
  vertical-align: middle;
}

.aws-showcase__panel {
  position: relative;
  min-height: 380px;
}

.aws-showcase__screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.5s var(--aws-ease), transform 0.5s var(--aws-ease);
  pointer-events: none;
}

.aws-showcase__screen.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

/* 3-column products on homepage */
.aws-products-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.aws-product--erp {
  background: linear-gradient(160deg, #1a1033 0%, #060b18 100%);
}

.aws-product--erp::before {
  background: radial-gradient(ellipse at top right, rgba(139,92,246,0.2), transparent 60%);
}

.aws-product--erp .aws-product__tag {
  background: rgba(139,92,246,0.2);
  color: #a78bfa;
}

.aws-product__coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(139,92,246,0.15);
  color: #c4b5fd;
  border: 1px dashed rgba(167,139,250,0.4);
  margin-bottom: 16px;
}

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

.aws-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.5);
  animation: aws-particle-rise 12s linear infinite;
}

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

/* Demo booking page */
.aws-demo-page { background: var(--aws-bg); }

.aws-demo-hero {
  position: relative;
  padding: calc(var(--aws-header-h) + 60px) 0 100px;
  overflow: hidden;
}

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

.aws-demo-hero__orb--1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: rgba(245, 158, 11, 0.12);
}

.aws-demo-hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: rgba(59, 130, 246, 0.15);
}

.aws-demo-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.aws-demo-hero__title {
  font-family: var(--aws-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--aws-white);
  line-height: 1.08;
  margin: 0 0 20px;
}

.aws-demo-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 28px;
}

.aws-demo-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.aws-demo-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.aws-demo-perks i {
  color: var(--aws-green);
  font-size: 14px;
}

.aws-demo-trust {
  display: flex;
  gap: 32px;
}

.aws-demo-trust strong {
  display: block;
  font-family: var(--aws-display);
  font-size: 1.75rem;
  color: var(--aws-white);
}

.aws-demo-trust span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.aws-demo-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--aws-border-light);
  border-radius: var(--aws-radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.aws-demo-form h2 {
  font-family: var(--aws-display);
  font-size: 1.5rem;
  color: var(--aws-white);
  margin: 0 0 6px;
}

.aws-demo-form__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
}

.aws-demo-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.aws-demo-product-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: var(--aws-radius);
  border: 1.5px solid var(--aws-border);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.aws-demo-product-opt input { position: absolute; opacity: 0; }

.aws-demo-product-opt i {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
}

.aws-demo-product-opt span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.aws-demo-product-opt em {
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(139,92,246,0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.aws-demo-product-opt.is-selected,
.aws-demo-product-opt:hover {
  border-color: var(--aws-blue);
  background: rgba(59,130,246,0.1);
}

.aws-demo-product-opt.is-selected i,
.aws-demo-product-opt.is-selected span { color: var(--aws-white); }

.aws-demo-field { margin-bottom: 16px; }

.aws-demo-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.aws-demo-field input,
.aws-demo-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--aws-border-light);
  background: rgba(0,0,0,0.25);
  color: var(--aws-white);
  font-family: var(--aws-font);
  font-size: 14px;
  transition: border-color 0.2s;
}

.aws-demo-field input:focus,
.aws-demo-field textarea:focus {
  outline: none;
  border-color: var(--aws-blue);
}

.aws-demo-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.aws-demo-form__note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 14px 0 0;
}

.aws-demo-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aws-demo-alert--success {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
}

.aws-demo-alert--error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

/* Product detail with screenshot */
.aws-product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

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

.aws-product-detail--reverse { direction: rtl; }
.aws-product-detail--reverse > * { direction: ltr; }

/* Sticky demo bar */
.aws-demo-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(15,23,42,0.95);
  border: 1px solid var(--aws-border-light);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--aws-ease);
}

.aws-demo-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

.aws-demo-bar span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

@media (max-width: 575px) {
  .aws-demo-bar span { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO V2 — First fold redesign
   ═══════════════════════════════════════════════════════════════ */
.aws-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--aws-header-h) + 40px) 0 72px;
  overflow: hidden;
  background: #070d1a;
}

.aws-hero-v2__bg {
  position: absolute;
  inset: 0;
  background: url("../img/slider/slider-bg-3.jpg") center / cover no-repeat;
  transform: scale(1.05);
}

.aws-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 11, 24, 0.94) 0%, rgba(6, 11, 24, 0.78) 45%, rgba(6, 11, 24, 0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(6, 11, 24, 0.9) 100%);
}

.aws-hero-v2__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

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

.aws-hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 12px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.32);
  color: #bfdbfe;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}

.aws-hero-v2__badge i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--aws-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.aws-hero-v2__title {
  font-family: var(--aws-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 22px;
}

.aws-hero-v2__title-line {
  display: block;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  color: #fff;
  margin-bottom: 6px;
}

.aws-hero-v2__title-accent {
  display: block;
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  background: linear-gradient(135deg, #93c5fd 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aws-hero-v2__desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 30px;
  max-width: 540px;
}

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

.aws-hero-v2__products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aws-hero-v2__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.aws-hero-v2__pill:hover,
.aws-hero-v2__pill.is-active {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.aws-hero-v2__pill i {
  font-size: 14px;
  color: var(--aws-cyan);
}

.aws-hero-v2__pill em {
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}

.aws-hero-v2__visual {
  position: relative;
}

.aws-hero-v2__visual .aws-shot {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.aws-hero-v2__float {
  position: absolute;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: aws-float-slow 6s ease-in-out infinite;
}

.aws-hero-v2__float--1 {
  top: -12px;
  right: -8px;
  color: #6ee7b7;
}

.aws-hero-v2__float--2 {
  bottom: 24px;
  left: -16px;
  animation-delay: -3s;
  color: #93c5fd;
}

.aws-hero-v2__stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aws-hero-v2__stats strong {
  display: block;
  font-family: var(--aws-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

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

/* Hide particle noise */
.aws-particles { display: none !important; }

/* Header always readable on hero */
.aws-header:not(.is-scrolled) {
  background: rgba(6, 11, 24, 0.75);
  backdrop-filter: blur(12px);
}
