:root {
  --color-primary: #e14d4d;
  --color-primary-light: #f07c7e;
  --color-secondary: #f08b84;
  --color-background: #f5fbff;
  --color-surface: #ffffff;
  --color-text: #1f2a44;
  --color-text-muted: #5a6a85;
  --color-border: #d5e5f7;
  --shadow-soft: 0 12px 32px rgba(225, 77, 77, 0.18);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-base: 0.3s ease-in-out;
  --font-heading: "Be Vietnam Pro", "Segoe UI", sans-serif;
  --font-body: "Be Vietnam Pro", "Segoe UI", sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}

svg {
  display: inline-block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    filter var(--transition-base);
}

.button:focus-visible {
  outline: 3px solid rgba(225, 77, 77, 0.25);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 16px 42px rgba(225, 77, 77, 0.25);
}

.button:active {
  transform: scale(0.99);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  filter: none;
  box-shadow: 0 12px 30px rgba(135, 42, 44, 0.12);
}

.button svg {
  width: 18px;
  height: 18px;
}

.variantSecondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(225, 77, 77, 0.3);
  box-shadow: none;
}

.variantSecondary:hover {
  background: rgba(225, 77, 77, 0.08);
}

.variantGhost {
  background: transparent;
  color: var(--color-text);
  box-shadow: none;
}

.variantGhost:hover {
  color: var(--color-primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(225, 77, 77, 0.08);
  contain: layout style;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.navLink {
  position: relative;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.navLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width var(--transition-base);
  transform-origin: left;
}

.navLink:hover {
  color: var(--color-primary);
}

.navLink:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeSlideDown 0.5s ease forwards 0.1s;
}

.headerCta {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

.mobileMenuButton {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobileMenuButton svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.mobileMenu {
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(225, 77, 77, 0.12);
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobileMenu.is-open {
  padding: 1.2rem 1.5rem 1.5rem;
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.mobileLink {
  font-weight: 500;
  color: var(--color-text);
}

.mobileLink:hover {
  color: var(--color-primary);
}

.mobileButton {
  width: 100%;
  justify-content: center;
}

.landingWrapper {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(240, 139, 132, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(225, 77, 77, 0.14),
      transparent 48%
    ),
    radial-gradient(
      circle at 30% 75%,
      rgba(255, 230, 210, 0.5),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #fff7f2 45%, #ffffff 100%);
}

.parallaxSection {
  position: relative;
  z-index: 1;
}

.parallaxScene {
  display: none;
}

.parallaxBlob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  contain: strict;
}

.parallaxBlobPrimary {
  top: -140px;
  left: -160px;
  background: rgba(225, 77, 77, 0.36);
}

.parallaxBlobSecondary {
  top: 220px;
  right: -120px;
  background: rgba(240, 139, 132, 0.32);
}

.parallaxBlobAccent {
  bottom: -180px;
  left: 20%;
  width: 380px;
  height: 380px;
  background: rgba(255, 153, 120, 0.28);
}

.parallaxBackdrop {
  position: absolute;
  inset: -10% -5% -5%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.65;
  filter: saturate(95%) contrast(108%) blur(1px);
  mix-blend-mode: normal;
  transform-origin: center;
  pointer-events: none;
}

.parallaxGrid {
  position: absolute;
  inset: 10% 8%;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 45%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 36px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 36px
    );
}

.parallaxGlow {
  position: absolute;
  width: 640px;
  height: 640px;
  top: 30%;
  left: 35%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  filter: blur(30px);
  opacity: 0.5;
  contain: strict;
}

.mainContent {
  flex: 1;
  display: grid;
  gap: 7rem;
  padding-bottom: 6rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.heroSection {
  padding: clamp(5rem, 9vw, 7rem) 0 4rem;
  position: relative;
  isolation: isolate;
}

.heroContainer {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
  gap: clamp(2rem, 3vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(225, 77, 77, 0.12);
  box-shadow: 0 24px 60px rgba(135, 42, 44, 0.16);
  overflow: hidden;
}

.heroContainer::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(225, 77, 77, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(240, 139, 132, 0.2),
      transparent 45%
    );
}

.heroContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.heroContent {
  display: grid;
  gap: 1.6rem;
  max-width: 560px;
}

.heroContent > * {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.heroContent > *:nth-child(1) {
  animation-delay: 0.05s;
}

.heroContent > *:nth-child(2) {
  animation-delay: 0.15s;
}

.heroContent > *:nth-child(3) {
  animation-delay: 0.25s;
}

.heroContent > *:nth-child(4) {
  animation-delay: 0.35s;
}

.heroContent > *:nth-child(5) {
  animation-delay: 0.45s;
}

.heroContent > *:nth-child(6) {
  animation-delay: 0.55s;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(225, 77, 77, 0.16);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 100%;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(225, 77, 77, 0.2);
}

.accent {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heroTitle {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
  color: var(--color-text);
}

.heroSubtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.heroTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(225, 77, 77, 0.16);
}

.heroFootnote {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.heroFootnote a {
  color: var(--color-primary);
  font-weight: 600;
}

.heroTag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(225, 77, 77, 0.08);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(135, 42, 44, 0.12);
}

.heroTag svg {
  width: 18px;
  height: 18px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(225, 77, 77, 0.16);
  box-shadow: 0 6px 16px rgba(135, 42, 44, 0.16);
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.heroStat {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(135, 42, 44, 0.12);
  border: 1px solid rgba(225, 77, 77, 0.12);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.heroStat:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(135, 42, 44, 0.18);
}

.heroStatValue {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  background: linear-gradient(
    120deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  color: transparent;
}

.heroStatLabel {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.heroVisual {
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroImageWrapper {
  position: relative;
  width: min(520px, 100%);
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  padding: 0.45rem;
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.28),
    rgba(240, 139, 132, 0.28)
  );
  box-shadow: 0 32px 90px rgba(135, 42, 44, 0.28);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s ease;
}

.heroImageWrapper img {
  border-radius: 28px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heroImageWrapper::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.heroImageWrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      150deg,
      rgba(225, 77, 77, 0.12),
      rgba(240, 139, 132, 0.18)
    ),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.heroImageWrapper:hover {
  transform: rotateX(6deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 38px 110px rgba(135, 42, 44, 0.35);
}

.heroImageWrapper:hover .heroFloatingCard {
  box-shadow: 0 24px 60px rgba(225, 77, 77, 0.3);
}

.heroPlayButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(135, 42, 44, 0.3);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.heroPlayButton svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-left: 3px;
}

.heroPlayButton:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 18px 48px rgba(135, 42, 44, 0.4);
  background: #fff;
}

.heroPlayButton::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.videoModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.videoModal.is-open {
  opacity: 1;
  visibility: visible;
}

.videoModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.videoModalContent {
  position: relative;
  width: min(960px, 92vw);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.videoModal.is-open .videoModalContent {
  transform: scale(1);
}

.videoModalContent video {
  display: block;
  width: 100%;
  background: #000;
}

.videoModalClose {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}

.videoModalClose:hover {
  background: rgba(0, 0, 0, 0.75);
}

.videoModalClose svg {
  width: 20px;
  height: 20px;
}

.heroFloatingCard {
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: auto;
  width: min(320px, calc(100% - 64px));
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(225, 77, 77, 0.24);
  transform: translateY(0);
  animation: floatCard 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.floatingTitle {
  margin: 0;
  font-weight: 600;
}

.floatingDescription {
  margin: 0.4rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.sectionHeader {
  text-align: center;
  width: min(720px, 94%);
  margin: 0 auto 3rem;
  display: grid;
  gap: 0.8rem;
}

.sectionBadge {
  display: inline-flex;
  justify-content: center;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  background: rgba(240, 139, 132, 0.18);
  color: #c24a33;
  font-weight: 600;
  box-shadow: 0 14px 36px rgba(240, 139, 132, 0.25);
}

.sectionTitle {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-text);
}

.sectionSubtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.featuresSection {
  position: relative;
  padding: 2rem 0 6rem;
  z-index: 5;
  isolation: isolate;
}

.rotatingCardsWrapper {
  width: min(1140px, 94%);
  margin: 0 auto;
  position: relative;
  padding: 2.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  pointer-events: auto;
}

.rotatingCardsScene {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1500px;
  min-height: 420px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.rotatingCardsTrack {
  position: relative;
  width: 100%;
  height: 460px;
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: auto;
}

.rotatingCard {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(220px, 26vw, 260px);
  height: clamp(320px, 34vw, 380px);
  transform-style: preserve-3d;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(135, 42, 44, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backface-visibility: visible;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: transform 0.45s ease, opacity 0.3s ease;
  cursor: pointer;
  user-select: text;
}

.rotatingCard.is-hovered {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.rotatingCardInner,
.rotatingCardInner * {
  cursor: pointer;
}

.rotatingCardInner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  user-select: text;
}

.rotatingCard.is-selected {
  box-shadow: 0 35px 90px rgba(6, 22, 56, 0.25);
}

.rotatingCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rotatingCardImage {
  width: 100%;
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(135, 42, 44, 0.18);
}

.rotatingCardIcon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 77, 77, 0.12);
}

.rotatingCardIcon svg {
  width: 28px;
  height: 28px;
}

.rotatingCardChip {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(225, 77, 77, 0.12);
  color: var(--color-primary);
}

.rotatingCard h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.3;
  padding-bottom: 0.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rotatingCardDescription {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.45;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.workflowGrid {
  width: min(1140px, 94%);
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.workflowCard {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(225, 77, 77, 0.12);
  box-shadow: 0 16px 40px rgba(135, 42, 44, 0.12);
  display: grid;
  gap: 0.65rem;
}

.contactSection {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.contactOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 244, 0.92),
    rgba(255, 255, 255, 0.94)
  );
  z-index: 0;
}

.contactContainer {
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.contactSection .workflowCard,
.contactSection .infoCard {
  background: rgba(255, 255, 255, 0.92);
}

.workflowCard h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.workflowCard p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.workflowIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    140deg,
    rgba(225, 77, 77, 0.18),
    rgba(240, 139, 132, 0.2)
  );
  color: #b53b3d;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(135, 42, 44, 0.18);
}

.contentSection {
  padding: 3.5rem 0;
}

.casesSection {
  position: relative;
}

.casesMedia {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(225, 77, 77, 0.18);
  box-shadow: 0 24px 60px rgba(135, 42, 44, 0.18);
}

.casesMedia img {
  display: block;
  width: 100%;
  height: auto;
}

.casesAudienceGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.audienceCard {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 1.6rem;
  border: 1px solid rgba(225, 77, 77, 0.16);
  box-shadow: 0 22px 60px rgba(135, 42, 44, 0.16);
  display: grid;
  gap: 1.1rem;
}

.audienceCard.is-accent {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 245, 245, 0.9)
  );
  border-color: rgba(225, 77, 77, 0.22);
}

.audienceImage {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(225, 77, 77, 0.14);
  box-shadow: 0 16px 36px rgba(135, 42, 44, 0.16);
}

.audienceImage img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.audienceContent h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.audienceContent p {
  margin: 0;
  color: var(--color-text-muted);
}

.audienceList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--color-text);
}

.audienceList li {
  position: relative;
  padding-left: 1.6rem;
}

.audienceList li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.casesBanner {
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  border-radius: 32px;
  background: linear-gradient(
      135deg,
      rgba(225, 77, 77, 0.32),
      rgba(240, 139, 132, 0.32)
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    );
  border: 1px solid rgba(225, 77, 77, 0.4);
  color: #1b2238;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 30px 70px rgba(135, 42, 44, 0.28);
  position: relative;
  overflow: hidden;
}

.casesBanner::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 77, 77, 0.35), transparent 70%);
  opacity: 0.6;
}

.casesBanner p {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .casesAudienceGrid {
    grid-template-columns: 1fr;
  }

  .audienceImage img {
    height: 200px;
  }
}
.audiogramSection {
  position: relative;
}

.audiogramSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 10%,
      rgba(225, 77, 77, 0.18),
      transparent 55%
    ),
    radial-gradient(circle at 90% 0%, rgba(240, 139, 132, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.audiogramSection .contentContainer {
  position: relative;
  z-index: 1;
}

.audiogramCard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 248, 248, 0.92)
  );
  border: 1px solid rgba(225, 77, 77, 0.18);
  box-shadow: 0 22px 60px rgba(135, 42, 44, 0.18);
  transform: translateZ(0);
}

.audiogramCard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.audiogramCard h3 {
  font-size: 1.35rem;
}

.audiogramCard .checkList li {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(225, 77, 77, 0.16);
  box-shadow: 0 14px 32px rgba(135, 42, 44, 0.08);
}

.audiogramCard .checkIcon {
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.2),
    rgba(240, 139, 132, 0.25)
  );
}
.contentContainer {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.sectionHead h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sectionHead p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 70ch;
}

.splitGrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.infoCard {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(225, 77, 77, 0.12);
  box-shadow: 0 18px 48px rgba(135, 42, 44, 0.12);
  display: grid;
  gap: 0.8rem;
}

.infoCard h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.mutedText {
  margin: 0;
  color: var(--color-text-muted);
}

.checkList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checkList li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(225, 77, 77, 0.12);
}

.checkList b {
  display: block;
  margin-bottom: 0.2rem;
}

.checkList span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.checkIcon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(
    140deg,
    rgba(225, 77, 77, 0.2),
    rgba(240, 139, 132, 0.22)
  );
  display: grid;
  place-items: center;
  color: #a12f30;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(135, 42, 44, 0.16);
}

.ctaInline {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.12),
    rgba(240, 139, 132, 0.14)
  );
  border: 1px solid rgba(225, 77, 77, 0.2);
  display: grid;
  gap: 0.85rem;
}

.ctaInline h4 {
  margin: 0;
  font-size: 1rem;
}

.smallNote {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.ctaActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.screensCard {
  gap: 1rem;
}

.screensTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tabButton {
  border: 1px solid rgba(225, 77, 77, 0.2);
  background: rgba(225, 77, 77, 0.08);
  color: var(--color-primary);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.tabButton.is-active {
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.22),
    rgba(240, 139, 132, 0.18)
  );
  border-color: rgba(225, 77, 77, 0.35);
}

.screensShot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(225, 77, 77, 0.12);
  box-shadow: 0 18px 40px rgba(135, 42, 44, 0.18);
  background: #fff;
}

.screensShot img {
  display: block;
  width: 100%;
  height: auto;
}

.ctaRow {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.12),
    rgba(240, 139, 132, 0.14)
  );
  border: 1px solid rgba(225, 77, 77, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ctaRow h3 {
  margin: 0 0 0.4rem;
}

.faqList {
  display: grid;
  gap: 0.75rem;
}

.faqList details {
  border: 1px solid rgba(225, 77, 77, 0.12);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height;
}

.faqList summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
}

.faqList details p {
  margin: 0.6rem 0 0;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.faqList details[open] p {
  opacity: 1;
  transform: translateY(0);
}

body.is-resizing .faqList details {
  transition: none;
}

.contactGrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contactForm {
  display: grid;
  gap: 0.75rem;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(225, 77, 77, 0.2);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
}

.contactForm input:focus,
.contactForm textarea:focus {
  outline: none;
  border-color: rgba(225, 77, 77, 0.5);
  box-shadow: 0 0 0 4px rgba(225, 77, 77, 0.12);
}


.teamSection {
  position: relative;
  padding-bottom: 3.5rem;
}

.teamSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}

.teamSectionHeader {
  width: min(720px, 94%);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.teamSectionPanel {
  position: relative;
  width: min(1140px, 94%);
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 32px 90px rgba(6, 22, 56, 0.18);
  backdrop-filter: blur(12px);
}

.teamSectionPanel.storySection {
  width: min(1200px, 92%);
  padding: clamp(1rem, 2.4vw, 1.8rem);
  border-radius: 36px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.storySection {
  display: grid;
  gap: 2rem;
}

.storyRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.storyRowReverse {
  direction: rtl;
}

.storyRowReverse > * {
  direction: ltr;
}

.storyMedia {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(225, 77, 77, 0.16);
  box-shadow: 0 24px 60px rgba(135, 42, 44, 0.18);
}

.storyMedia img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.storyContent {
  display: grid;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(135, 42, 44, 0.12);
}

.storyContent h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
}

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

.storyKicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 600;
}

.storyContent h3 {
  position: relative;
  display: inline-flex;
}

.storyContent h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(225, 77, 77, 0.9),
    rgba(240, 139, 132, 0.9)
  );
  box-shadow: 0 8px 20px rgba(135, 42, 44, 0.2);
}

@media (max-width: 900px) {
  .storyRow {
    grid-template-columns: 1fr;
  }

  .storyMedia img {
    height: 240px;
  }
}

.teamGrid {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.teamCard {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  border: 1px solid rgba(225, 77, 77, 0.1);
  box-shadow: 0 20px 55px rgba(225, 77, 77, 0.16);
  overflow: hidden;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.teamCard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.teamImageWrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.teamLinkedIn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f2ff, #d6e9ff);
  color: #0a66c2;
  box-shadow: 0 12px 24px rgba(225, 77, 77, 0.25);
}

.teamLinkedIn svg {
  width: 18px;
  height: 18px;
}

.teamContent {
  padding: 1.6rem;
  display: grid;
  gap: 0.5rem;
}

.teamContent h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.teamRole {
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}

.teamExpertise {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer {
  position: relative;
  margin-top: 4rem;
  padding: 3.5rem 0 2.5rem;
  color: #fff;
  background: #1a0b0d;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(225, 77, 77, 0.35), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(240, 139, 132, 0.22), transparent 60%),
    linear-gradient(140deg, rgba(26, 11, 13, 0.92), rgba(62, 18, 24, 0.92));
  opacity: 1;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12, 6, 7, 0.55),
    rgba(62, 18, 24, 0.35)
  );
  z-index: 0;
}

.footer .container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.topRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.footer .brand {
  display: grid;
  gap: 1rem;
  color: #fff;
}

.brandName {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.brandName svg {
  width: 28px;
  height: 28px;
}

.brandDescription {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer .sectionTitle {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.link {
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.link svg {
  width: 18px;
  height: 18px;
}

.link:hover {
  color: #fff;
}

.footerContactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.footerContactItem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footerContactItem:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(225, 77, 77, 0.4);
  color: #fff;
}

.footerContactIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(225, 77, 77, 0.2);
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.footerContactIcon svg {
  width: 18px;
  height: 18px;
}

.footerContactInfo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.footerContactLabel {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.footerContactValue {
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottomRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.8rem;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .parallaxScene {
    display: none;
  }

  .heroContent > *,
  .heroTags,
  .heroStats,
  .teamGrid {
    opacity: 1;
    animation: none;
  }

  .heroFloatingCard {
    animation: none;
  }

  .heroImageWrapper {
    transition: none;
  }

  .heroImageWrapper:hover {
    transform: none;
    box-shadow: 0 28px 70px rgba(135, 42, 44, 0.25);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .headerCta {
    display: none;
  }

  .mobileMenuButton {
    display: inline-flex;
  }

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

@media (max-width: 900px) {
  .footerContactGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .heroContainer {
    gap: 2.5rem;
    padding: 2rem;
  }

  .heroStatValue {
    font-size: 1.5rem;
  }

  .heroImageWrapper {
    min-height: 360px;
  }

  .heroFloatingCard {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .rotatingCardsWrapper {
    padding: 1rem 0 2rem;
  }

  .rotatingCardsTrack {
    height: 360px;
  }

  .rotatingCard {
    width: clamp(200px, 60vw, 230px);
    height: clamp(240px, 65vw, 280px);
  }
}

@media (max-width: 640px) {
  .rotatingCardsScene {
    min-height: 340px;
  }
}
