/* ============================================
   PAGES - Hero, home sections, product pages
   ============================================ */

/* === Home Hero — Editorial === */
.home-hero {
  position: relative;
  padding: var(--space-lg) 0 var(--space-xl);
  overflow: hidden;
  background: var(--gradient-hero);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--glow-blue);
  pointer-events: none;
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--glow-cyan);
  pointer-events: none;
  z-index: 0;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero__content {
  max-width: 720px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
}

.home-hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-orange);
  animation: pulse 2s ease-in-out infinite;
}

.home-hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: var(--fw-extrabold);
  line-height: 0.92;
  white-space: nowrap;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-md);
}

.home-hero__title-accent {
  color: var(--color-accent);
  font-style: italic;
  font-weight: var(--fw-bold);
  background: linear-gradient(
    100deg,
    var(--color-accent) 0%,
    var(--color-accent) 35%,
    #7fb3ff 50%,
    var(--color-accent) 65%,
    var(--color-accent) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer-wave 6s ease-in-out infinite;
}

@keyframes shimmer-wave {
  0% { background-position: 100% 0; }
  17% { background-position: -100% 0; }
  33% { background-position: 100% 0; }
  100% { background-position: 100% 0; }
}

.home-hero__rotating-line {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
  min-height: 1.5em;
  color: var(--color-text-muted);
}

.home-hero__rotating-line .rotating-word__text.is-active {
  color: var(--color-accent);
}

.home-hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-hero__metrics[hidden] {
  display: none !important;
}

.home-hero__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero__metric-number {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.home-hero__metric-label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
}

.home-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}

.home-hero__visual-layer {
  position: absolute;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.home-hero__visual-layer--1 {
  inset: -8% -8% -8% 8%;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent-cyan-soft));
  z-index: 0;
}

.home-hero__visual-layer--2 {
  inset: 12% 12% 12% -12%;
  border: 2px solid var(--color-accent);
  opacity: 0.12;
  z-index: 0;
}

.home-hero__visual img {
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .home-hero__title {
    white-space: normal;
  }

  .home-hero__visual {
    max-width: 340px;
    margin: 0 auto;
    order: -1;
  }

  .home-hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-lg);
  }
}

/* === Kinetic marquee band === */
.kinetic-band {
  background: var(--color-dark);
  color: var(--color-text-inverse);
  padding: var(--space-md) 0;
  overflow: hidden;
  position: relative;
}

.kinetic-band__track {
  display: flex;
  gap: var(--space-lg);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.kinetic-band__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-text-inverse);
  opacity: 0.85;
}

.kinetic-band__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  flex-shrink: 0;
}

.kinetic-band__item:nth-child(even) .kinetic-band__item-dot {
  background: var(--color-brand-orange);
}

/* === Validation strip === */
.validation-strip {
  padding: var(--space-lg) 0;
  background: var(--color-surface);
  background-image: var(--pattern-grid);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* === Products section === */
.products-section {
  background: var(--color-surface-warm);
}

/* === Capabilities section === */
.capabilities-section {
  padding: 0;
  background: var(--color-surface);
}

.capabilities-section .section-header {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 3vw, 48px) clamp(32px, 4vw, 64px);
  max-width: var(--container-content);
  margin: 0 auto;
}

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

/* === How we work === */
.how-section {
  background: var(--color-surface-warm);
}

.how-section .container {
  padding-top: clamp(72px, 9vw, 144px);
  padding-bottom: clamp(24px, 3vw, 48px);
}

/* === About preview — Editorial dark === */
.about-preview {
  padding: clamp(24px, 3vw, 48px) 0;
  background: var(--gradient-dark);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--glow-blue);
  pointer-events: none;
}

.about-preview::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: var(--glow-purple);
  pointer-events: none;
}

.about-preview__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-preview__text h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: var(--space-lg);
}

.about-preview__text p {
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

.about-preview .brand-name__neg {
  color: var(--color-text-inverse-muted);
}

.about-preview__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: 0;
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.about-preview__highlight {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--duration-normal) var(--ease-out);
}

.about-preview__highlight:hover {
  background: rgba(255, 255, 255, 0.07);
}

.about-preview__highlight-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-accent-cyan);
  margin-bottom: var(--space-xs);
}

.about-preview__highlight-text {
  font-size: var(--fs-sm);
  color: var(--color-text-inverse-muted);
  line-height: var(--lh-relaxed);
}

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

  .about-preview__highlights {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

/* === Product page === */
.product-hero {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: var(--glow-blue);
  pointer-events: none;
  z-index: 0;
}

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

.product-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.product-hero__title {
  font-size: clamp(2rem, 5vw, var(--fs-4xl));
  margin-bottom: var(--space-sm);
}

.product-hero__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  line-height: var(--lh-relaxed);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.product-hero__platform {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding: 6px 14px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
}

.product-hero__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .product-hero__inner {
    grid-template-columns: 1fr;
  }

  .product-hero__visual {
    order: -1;
  }
}

/* === Product features === */
.product-features {
  padding: var(--space-2xl) 0;
}

.product-feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-feature__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.product-feature__text {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

@media (max-width: 640px) {
  .product-feature {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* === Product sectors === */
.product-sectors {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  background-image: var(--pattern-grid);
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

/* === Cases — Asymmetric grid === */
.case-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-card:nth-child(odd) {
  margin-top: 0;
}

.case-card:nth-child(even) {
  margin-top: var(--space-2xl);
}

.case-card__visual {
  aspect-ratio: 16 / 10;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card__body {
  padding: var(--space-xl);
}

.case-card__sector {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.case-card__text {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .case-card:nth-child(even) {
    margin-top: 0;
  }
}

/* === Solutions in action — Asymmetric editorial grid === */
.solutions-section {
  padding: clamp(72px, 9vw, 144px) 0;
  background: var(--color-surface-warm);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}

.solution-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-card--large {
  grid-row: span 2;
}

.solution-card__visual {
  aspect-ratio: 16 / 10;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-card--large .solution-card__visual {
  aspect-ratio: 16 / 9;
}

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

.solution-card__body {
  padding: clamp(24px, 3vw, 40px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-card__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.solution-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.solution-card__text {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.solution-card__link {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.solution-card__link:hover {
  color: var(--color-accent-hover);
}

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

  .solution-card--large {
    grid-row: span 1;
  }
}

/* === Privacy page === */
.privacy-content {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.privacy-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.privacy-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.privacy-content li {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

/* === Services page — Numbered index + chapters === */
.service-index {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-index__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  height: 72px;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--color-text);
  transition: padding-left var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-index__item:hover {
  padding-left: var(--space-md);
  color: var(--color-accent);
}

/* === Marquee menu hover === */
.service-index__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-surface-dark, #1a2332);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 250ms var(--ease-out), opacity 200ms var(--ease-out);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
}

.service-index__item:hover .service-index__marquee,
.service-index__item:focus-visible .service-index__marquee {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.service-index__item:hover .service-index__num,
.service-index__item:hover .service-index__name,
.service-index__item:hover .service-index__arrow,
.service-index__item:focus-visible .service-index__num,
.service-index__item:focus-visible .service-index__name,
.service-index__item:focus-visible .service-index__arrow {
  opacity: 0;
  transition: opacity 120ms var(--ease-out);
}

.service-index__marquee-track {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-shrink: 0;
  padding-left: 42px;
  animation: marquee-scroll-left 16s linear infinite;
  will-change: transform;
}

.service-index__item:nth-child(even) .service-index__marquee-track {
  animation-name: marquee-scroll-right;
}

.service-index__marquee-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.service-index__marquee-img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .service-index__marquee {
    display: none;
  }

  .service-index__item {
    height: auto;
    padding: var(--space-md) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-index__marquee-track {
    animation: none;
  }
}

.service-index__num {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  font-family: var(--font-mono);
}

.service-index__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}

.service-index__arrow {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  transition: transform var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.service-index__item:hover .service-index__arrow {
  transform: translateX(4px);
  color: var(--color-accent);
}

.service-chapters {
  margin-top: var(--space-2xl);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block--reverse .service-block__visual {
  order: -1;
}

.service-block--full {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.service-block--full .service-block__visual {
  display: none;
}

.service-blocks-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.service-blocks-pair .service-block {
  border-bottom: none;
  padding-bottom: 0;
}

.service-blocks-pair .service-block--full {
  max-width: none;
}

@media (max-width: 768px) {
  .service-blocks-pair {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .service-blocks-pair .service-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: var(--space-2xl);
  }

  .service-blocks-pair .service-block:last-child {
    border-bottom: none;
  }
}

.service-block__number {
  font-size: clamp(5.4rem, 10.8vw, 10.8rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-brand-orange);
  font-family: var(--font-mono);
  line-height: 1;
  margin-top: -0.2em;
  margin-bottom: var(--space-md);
  margin-left: 0;
  padding-left: 0;
  letter-spacing: -0.04em;
  opacity: 0.15;
}

.service-block__title {
  font-size: clamp(1.5rem, 3vw, var(--fs-3xl));
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
  margin-top: calc(-1 * var(--space-2xl));
}

.service-block__text {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.service-block__tag {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding: 6px 14px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-block__tag .tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-block__visual {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .service-block--reverse .service-block__visual {
    order: 0;
  }

  .service-block__title {
    margin-top: 0;
  }

  .service-index__item {
    grid-template-columns: 40px 1fr auto;
    gap: var(--space-sm);
  }
}

/* === About page === */
.about-hero {
  padding: var(--space-2xl) 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--glow-cyan);
  pointer-events: none;
}

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

.about-story {
  padding: var(--space-2xl) 0;
  background-image: var(--pattern-dots);
}

.about-story__text {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.about-story__text p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.about-values {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  background-image: var(--pattern-grid);
}

.about-locations {
  padding: var(--space-2xl) 0;
  background-image: var(--pattern-grid);
}

/* === Product steps (how it works) === */
.product-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: var(--space-xl);
}

.product-step {
  text-align: center;
}

.product-step__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.product-step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.product-step__text {
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .product-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* === Dual experience panels === */
.dual-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: var(--space-xl);
}

.dual-experience__panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dual-experience__header {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.dual-experience__tag {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
}

.dual-experience__list {
  list-style: none;
  padding: var(--space-lg);
  margin: 0;
}

.dual-experience__list li {
  position: relative;
  padding-left: var(--space-lg);
  padding-bottom: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

.dual-experience__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-fidelify);
  font-weight: var(--fw-bold);
}

@media (max-width: 768px) {
  .dual-experience {
    grid-template-columns: 1fr;
  }
}

/* === Sectors grid with icons === */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sector-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.sector-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

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