.overview {
  background: radial-gradient(circle at top left, rgba(0, 179, 166, 0.12), transparent 50%), var(--white);
  border-radius: 42px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.overview__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 2fr);
  gap: 32px;
  align-items: center;
}

.overview__content h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.overview__content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.overview__content ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.overview__content ul li {
  position: relative;
  padding-left: 20px;
}

.overview__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 179, 166, 0.5);
}

.overview__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--teal);
}

.overview__badge::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 999px;
}

.overview__highlights {
  display: grid;
  gap: 16px;
}

.overview__card {
  border: 1px solid rgba(0, 179, 166, 0.2);
  border-radius: 20px;
  padding: 18px;
  background: rgba(0, 179, 166, 0.06);
  backdrop-filter: blur(6px);
}

.overview__stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}

.overview__label {
  font-weight: 600;
  margin: 4px 0;
}

.overview__note {
  font-size: 0.9rem;
  color: var(--gray);
}

.narrative {
  background: var(--surface-alt);
  border-radius: 40px;
  border: 1px solid var(--border);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: 36px;
}

.narrative--enhanced {
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.08) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(0, 179, 166, 0.05) 100%);
  border: none;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 !important;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.narrative--enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 179, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.narrative__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
}

.narrative__header {
  text-align: center;
}

.narrative__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.08));
  border: 1px solid rgba(0, 179, 166, 0.3);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 179, 166, 0.15);
}

.narrative__badge-icon {
  font-size: 1.2rem;
}

.narrative__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.narrative__problem {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.narrative__problem-label {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.narrative__content h2 {
  margin-bottom: 12px;
}

.narrative__tag {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.15);
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.narrative__lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.narrative__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.narrative__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid;
}

.narrative__chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.narrative__chip--red {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  border-color: rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.narrative__chip--orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
  border-color: rgba(249, 115, 22, 0.3);
  color: #ea580c;
}

.narrative__chip--yellow {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
  border-color: rgba(234, 179, 8, 0.3);
  color: #ca8a04;
}

.narrative__chip--purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
  border-color: rgba(168, 85, 247, 0.3);
  color: #9333ea;
}

.narrative__chip-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.narrative__solution {
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.12), rgba(255, 255, 255, 0.95));
  border-radius: 28px;
  padding: 40px;
  border: 2px solid rgba(0, 179, 166, 0.2);
  box-shadow: 0 15px 35px rgba(0, 179, 166, 0.1);
  position: relative;
  overflow: hidden;
}

.narrative__solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.5));
}

.narrative__solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 179, 166, 0.3);
}

.narrative__solution-icon {
  font-size: 1.2rem;
}

.narrative__quote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.narrative__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, var(--teal), rgba(0, 179, 166, 0.5));
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(0, 179, 166, 0.5);
}

.narrative__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}

.narrative__highlight {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.narrative__cards {
  display: grid;
  gap: 16px;
}

.narrative-card {
  border: 1px solid rgba(0, 179, 166, 0.25);
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.narrative-card__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 10px;
  color: var(--gray);
}

.narrative-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.narrative-card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
}

.narrative-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

.hero-highlight {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 96px);
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.12), rgba(255, 255, 255, 0.9));
  border-radius: 48px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  margin: clamp(24px, 4vw, 48px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.hero-highlight__content {
  max-width: 960px;
  color: var(--text);
}

.hero-highlight__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
}

.hero-highlight__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 999px;
}

.hero-highlight h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text);
}

.hero-highlight__lead {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.hero-highlight__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-highlight__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--text);
}

.hero-highlight__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 179, 166, 0.5);
}

.hero-highlight__note {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 8px;
}

.benefits {
  background: linear-gradient(145deg, rgba(0, 179, 166, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(0, 179, 166, 0.25);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 32px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 179, 166, 0.15);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card__body h3 {
  margin-bottom: 8px;
}

.benefit-card__body p {
  color: var(--gray);
}

.benefits__note {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  font-size: 1rem;
  color: var(--gray);
}

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

.feature-tile {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 179, 166, 0.15);
}

.feature-tile__icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-tile h3 {
  margin-bottom: 8px;
}

.feature-tile p {
  color: var(--gray);
}

.hiw {
  background: var(--white);
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  gap: 32px;
}

.hiw__timeline {
  display: grid;
  gap: 18px;
}

.hiw-step {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.hiw-step::after {
  content: '';
  position: absolute;
  left: 32px;
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: rgba(0, 179, 166, 0.35);
}

.hiw-step:last-child::after {
  display: none;
}

.hiw-step__marker {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 179, 166, 0.12);
  border: 1px solid rgba(0, 179, 166, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.hiw-step h3 {
  margin-bottom: 6px;
}

.hiw-step p {
  color: var(--gray);
}

.hiw__summary {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  padding-top: 16px;
  color: var(--gray);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.use-case-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 179, 166, 0.15);
}

.use-case-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.use-case-card h3 {
  margin-bottom: 8px;
}

.use-case-card p {
  color: var(--gray);
}

.use-cases-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 28px;
  background: var(--surface);
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: clamp(24px, 4vw, 40px);
}

.use-cases-highlight {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(0, 179, 166, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-cases-highlight__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
}

.use-cases-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.use-cases-highlight ul li {
  position: relative;
  padding-left: 18px;
}

.use-cases-highlight ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

@media (max-width: 960px) {
  .use-cases-board {
    grid-template-columns: 1fr;
  }
}

.before-after-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border-radius: 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.before-after-card {
  border-radius: 30px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.before-after-card.before-card {
  background: linear-gradient(135deg, rgba(238, 72, 82, 0.08), rgba(255, 255, 255, 0.95));
}

.before-after-card.after-card {
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.12), rgba(255, 255, 255, 0.95));
}

.before-after-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.before-after-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.before-after-card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--gray);
}

.before-after-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: currentColor;
}

.before-after-arrow {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.before-after-arrow__line {
  width: 2px;
  height: 80px;
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 700px) {
  .before-after-board {
    grid-template-columns: 1fr;
  }
  .before-after-arrow__line {
    width: 80px;
    height: 2px;
  }
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.geo-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.geo-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.seo-card {
  border-radius: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
}

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

  .narrative--enhanced {
    padding: 0 !important;
    min-height: 100vh;
  }

  .narrative__wrapper {
    gap: 32px;
    padding: 40px 24px;
  }

  .narrative__chips {
    grid-template-columns: 1fr;
  }

  .narrative__problem,
  .narrative__solution {
    padding: 28px 24px;
  }

  .narrative__title {
    font-size: 1.8rem;
  }
}

.value-prop {
  background: var(--white);
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  gap: 32px;
}

.value-prop--enhanced {
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.12) 0%, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.98) 70%, rgba(0, 179, 166, 0.08) 100%);
  border: 1px solid rgba(0, 179, 166, 0.2);
  box-shadow: 0 30px 60px rgba(0, 179, 166, 0.12);
  padding: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.value-prop--enhanced::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 179, 166, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.value-prop--enhanced::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 179, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.value-prop__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.value-prop__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.value-prop__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), rgba(0, 179, 166, 0.8));
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(0, 179, 166, 0.3);
}

.value-prop__badge span:not(.value-prop__badge-icon) {
  color: var(--white);
}

.value-prop__badge-icon {
  font-size: 1.3rem;
}

.value-prop__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  margin: 0 0 20px 0;
  color: var(--text);
  font-weight: 700;
}

.value-prop__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

.value-prop__intro h2 {
  margin: 12px 0;
}

.value-prop__intro p {
  color: var(--gray);
  font-size: 1.05rem;
}

.value-prop__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--teal);
}

.value-prop__badge::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 999px;
}

.value-prop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.value-prop__card {
  border: 2px solid rgba(0, 179, 166, 0.2);
  border-radius: 28px;
  padding: 32px 24px;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-prop__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.5));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-prop__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 179, 166, 0.2);
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(0, 179, 166, 0.03));
}

.value-prop__card:hover::before {
  transform: scaleX(1);
}

.value-prop__card--featured {
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.1), rgba(255, 255, 255, 0.95));
  border-color: var(--teal);
  border-width: 2px;
  box-shadow: 0 12px 35px rgba(0, 179, 166, 0.15);
}

.value-prop__card--featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.8));
}

.value-prop__card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 179, 166, 0.2);
}

.value-prop__card:hover .value-prop__card-icon-wrapper {
  background: linear-gradient(135deg, var(--teal), rgba(0, 179, 166, 0.8));
  transform: scale(1.1) rotate(5deg);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(0, 179, 166, 0.3);
}

.value-prop__card-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  transition: transform 0.3s ease;
}

.value-prop__card:hover .value-prop__card-icon-wrapper svg {
  transform: scale(1.15);
  color: var(--white);
}

.value-prop__card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.value-prop__card-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.value-prop__footer {
  text-align: center;
  margin-top: 16px;
}

.value-prop__tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.08), rgba(0, 179, 166, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  display: inline-block;
}

.before-after {
  background: var(--white);
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.before-after__card {
  border: 1px solid rgba(0, 179, 166, 0.2);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
}

.before-after__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.before-after__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.before-after__media span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.before-after__card h3 {
  font-size: 1.2rem;
}

.before-after__card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.before-after__card ul li {
  position: relative;
  padding-left: 20px;
  color: var(--gray);
}

.before-after__card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

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

.contact-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 179, 166, 0.15);
  border-color: var(--teal);
}

.contact-card__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card__email {
  font-size: 1.1rem;
  margin: 12px 0;
}

.contact-card__email a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card__email a:hover {
  color: #00a396;
  text-decoration: underline;
}

.contact-card__note {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-card__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-card__address p {
  margin: 0;
}

.contact-card__address strong {
  color: var(--text);
  font-weight: 600;
}

.shipping-policy__content {
  max-width: 800px;
  margin: 0 auto;
}

.shipping-policy__section {
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shipping-policy__section:last-child {
  margin-bottom: 0;
}

.shipping-policy__section h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.shipping-policy__section h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  color: var(--text);
}

.shipping-policy__section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.shipping-policy__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.shipping-policy__icon {
  font-size: 2rem;
  line-height: 1;
}

.shipping-policy__subsection {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.shipping-policy__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 0;
}

.shipping-policy__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
}

.shipping-policy__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.shipping-policy__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.shipping-policy__contact a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.shipping-policy__contact a:hover {
  color: #00a396;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shipping-policy__section {
    padding: 24px;
  }

  .shipping-policy__section h2 {
    font-size: 1.5rem;
  }

  .shipping-policy__section h3 {
    font-size: 1.2rem;
  }
}

.terms__content {
  max-width: 900px;
  margin: 0 auto;
}

.terms__section {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms__section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.terms__section:last-child {
  margin-bottom: 0;
}

.terms__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 179, 166, 0.3);
}

.terms__text {
  flex: 1;
}

.terms__text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.terms__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.terms__text p:last-child {
  margin-bottom: 0;
}

.terms__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 0;
}

.terms__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
}

.terms__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 1.2rem;
}

.terms__list--restricted li::before {
  content: '✗';
  color: #d32f2f;
}

.terms__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.terms__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.terms__contact a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms__contact a:hover {
  color: #00a396;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms__section {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .terms__number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .terms__text h2 {
    font-size: 1.3rem;
  }
}

.refund-policy__content {
  max-width: 900px;
  margin: 0 auto;
}

.refund-policy__section {
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refund-policy__section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.refund-policy__section:last-child {
  margin-bottom: 0;
}

.refund-policy__section h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.refund-policy__section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.refund-policy__section p:last-child {
  margin-bottom: 0;
}

.refund-policy__subsection {
  margin-top: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.refund-policy__subsection--eligible {
  background: rgba(0, 179, 166, 0.06);
  border-color: rgba(0, 179, 166, 0.3);
}

.refund-policy__subsection--non-eligible {
  background: rgba(211, 47, 47, 0.06);
  border-color: rgba(211, 47, 47, 0.3);
}

.refund-policy__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.refund-policy__header h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text);
}

.refund-policy__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.refund-policy__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 0;
}

.refund-policy__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
}

.refund-policy__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 1.2rem;
}

.refund-policy__list--restricted li::before {
  content: '✗';
  color: #d32f2f;
}

.refund-policy__note {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(0, 179, 166, 0.1);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.refund-policy__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.refund-policy__contact a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.refund-policy__contact a:hover {
  color: #00a396;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .refund-policy__section {
    padding: 24px;
  }

  .refund-policy__section h2 {
    font-size: 1.5rem;
  }

  .refund-policy__header h3 {
    font-size: 1.2rem;
  }

  .refund-policy__subsection {
    padding: 20px;
  }
}

.privacy-policy__content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy__section {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-policy__section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.privacy-policy__section:last-child {
  margin-bottom: 0;
}

.privacy-policy__section:first-child {
  flex-direction: column;
}

.privacy-policy__section:first-child h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.privacy-policy__section:first-child p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.privacy-policy__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 179, 166, 0.3);
}

.privacy-policy__text {
  flex: 1;
}

.privacy-policy__text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-policy__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.privacy-policy__text p:last-child {
  margin-bottom: 0;
}

.privacy-policy__text a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-policy__text a:hover {
  color: #00a396;
  text-decoration: underline;
}

.privacy-policy__subsection {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.privacy-policy__subsection:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-policy__subsection h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-policy__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 0;
}

.privacy-policy__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
}

.privacy-policy__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .privacy-policy__section {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .privacy-policy__number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .privacy-policy__text h2 {
    font-size: 1.3rem;
  }

  .privacy-policy__subsection h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .overview__layout {
    grid-template-columns: 1fr;
  }
}
:root {
  --text: #0b0b0b;
  --teal: #00b3a6;
  --white: #ffffff;
  --gray: #0b0b0b;
  --surface: #f5faf9;
  --surface-alt: #edf6f5;
  --border: #dbe7e5;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 90px;
}

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

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

main {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.section {
  padding: 80px clamp(24px, 6vw, 120px);
  border-top: 1px solid var(--border);
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body.animations-enabled [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for common groups */
.values__grid [data-animate]:nth-child(1) {
  transition-delay: 100ms;
}

.values__grid [data-animate]:nth-child(2) {
  transition-delay: 200ms;
}

.values__grid [data-animate]:nth-child(3) {
  transition-delay: 300ms;
}

.feature-showcase [data-animate]:nth-child(odd) {
  transition-delay: 100ms;
}

.feature-showcase [data-animate]:nth-child(even) {
  transition-delay: 200ms;
}

.section__header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__lead {
  color: var(--gray);
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.feature-tabs__controls {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

body.animations-enabled .feature-tabs[data-animate] .section__header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 100ms, transform 0.6s ease 100ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .section__header {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .feature-tabs[data-animate] .feature-tabs__controls {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 200ms, transform 0.6s ease 200ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-tabs__controls {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .feature-tabs[data-animate] .feature-tabs__content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 300ms, transform 0.6s ease 300ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-tabs__content {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .feature-tabs[data-animate] .feature-stage__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-stage__card:nth-child(1) {
  transition-delay: 400ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-stage__card:nth-child(2) {
  transition-delay: 500ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-stage__card:nth-child(3) {
  transition-delay: 600ms;
}

body.animations-enabled .feature-tabs[data-animate].visible .feature-stage__card {
  opacity: 1;
  transform: translateY(0);
}

.feature-tab {
  border: none;
  background: transparent;
  color: var(--gray);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

.feature-tab:hover {
  color: var(--text);
}

.feature-tab.active {
  color: var(--text);
  border-bottom: 2px solid var(--teal);
}

.feature-tabs__content {
  background: var(--white);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 4vw, 40px);
}

.feature-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-stage__card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-stage__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.feature-stage__card img {
  border-radius: 18px;
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-stage__card.is-swapping img {
  opacity: 0;
  transform: scale(0.97);
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 24px clamp(24px, 6vw, 120px) 100px;
  padding-top: 35px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.hero__bg-media {
  position: absolute;
  inset: 0;
  background-image: url('lovpics.gif');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  filter: none;
  z-index: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 179, 166, 0.3);
  pointer-events: none;
}

.hero__banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00b3a6 0%, #008b82 50%, #006b63 100%);
  padding: 120px clamp(24px, 6vw, 120px) 80px;
  margin-top: 0;
}

.hero__banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__banner-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__banner-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__content,
.hero__content h1,
.hero__content p {
  color: var(--text);
}

.hero__subtext {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero__metrics p {
  color: var(--gray);
}

.hero__content {
  position: relative;
  z-index: 2;
  margin: 140px auto 0;
  padding: 0 clamp(16px, 4vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 68px;
  min-height: clamp(420px, 60vh, 540px);
}

.hero__eyebrow {
  color: var(--teal);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 16px 0;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero__subtext {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero--white {
  background: var(--white);
  min-height: auto;
  padding-bottom: 80px;
}

.hero--white .hero__content {
  margin-top: 100px;
  min-height: auto;
  justify-content: center;
  color: var(--text);
}

.hero--white .hero__content--white {
  color: var(--text);
}

.hero--white .hero__eyebrow--dark {
  color: var(--teal);
}

.hero--white .hero__title--dark {
  color: var(--text);
}

.hero--white .hero__subtext--dark {
  color: var(--gray);
}

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

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

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: center;
}

.btn--hero {
  font-size: 1.15rem;
  padding: 18px 42px;
}

/* Responsive hero GIF background */
@media (max-width: 1024px) {
  .hero__bg-media {
    background-size: contain;
    background-position: center center;
  }
  
  .hero {
    min-height: 100vh;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .hero__bg-media {
    background-size: contain;
    background-position: center center;
  }
  
  .hero {
    min-height: 100vh;
    padding: 24px 20px 60px;
    padding-top: 35px;
  }
  
  .hero__content {
    min-height: clamp(300px, 50vh, 400px);
  }
}

@media (max-width: 480px) {
  .hero__bg-media {
    background-size: contain;
    background-position: center center;
  }
  
  .hero {
    min-height: 100vh;
    padding: 20px 16px 50px;
    padding-top: 30px;
  }
  
  .hero__content {
    min-height: clamp(250px, 45vh, 350px);
    margin-top: 60px;
  }
}

@media (min-width: 1920px) {
  .hero__bg-media {
    background-size: contain;
    background-position: center center;
  }
}

.btn {
  border: 1px solid transparent;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--primary {
  background: var(--teal);
  color: var(--text);
  box-shadow: 0 0 30px rgba(0, 179, 166, 0.25);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 179, 166, 0.3);
}

.btn--teal:hover {
  background: #00a396;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 179, 166, 0.4);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn--outline {
  border-color: rgba(0, 179, 166, 0.6);
  color: var(--teal);
}

.btn--large {
  font-size: 1.2rem;
  padding: 16px 48px;
  font-weight: 600;
}

.btn--white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__metrics {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.hero__metrics span {
  font-size: 2rem;
  color: var(--teal);
  font-weight: 700;
}

.hero__metrics p {
  color: var(--gray);
}

.media-marquee {
  margin-top: 48px;
  border: 1px solid rgba(0, 179, 166, 0.25);
  border-radius: 24px;
  padding: 16px 0;
  overflow: hidden;
  background: rgba(0, 179, 166, 0.08);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.media-track {
  display: flex;
  gap: 20px;
  animation: marquee-slide 40s linear infinite;
}

.media-thumb {
  flex: 0 0 180px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  animation: floaty 6s ease-in-out infinite;
  animation-delay: var(--animate-delay, 0ms);
}

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

.media-strip {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.media-strip .media-thumb {
  flex: 0 0 160px;
  height: 110px;
  border-radius: 16px;
}

.media-showcase--signature {
  background: 
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(0, 179, 166, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 20% 50%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 80% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 10, 25, 0.95) 0%, rgba(6, 10, 25, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.media-showcase--signature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 179, 166, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 40%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.media-showcase--signature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(0, 179, 166, 0.05) 100%);
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.media-showcase__shell {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 24px;
}

.media-showcase__intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.media-showcase__badge {
  align-self: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 179, 166, 0.2) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 
    0 4px 20px rgba(0, 179, 166, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.media-showcase__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-showcase__badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 8px 30px rgba(0, 179, 166, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.media-showcase__badge:hover::before {
  opacity: 1;
}

.badge-icon {
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes sparkle {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.media-showcase__intro h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.media-showcase__intro p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.media-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 16px 48px rgba(0, 179, 166, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 179, 166, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.stat-card:hover .stat-card__glow {
  opacity: 1;
  animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 179, 166, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.media-showcase__marquee {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.media-showcase__marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.media-showcase__marquee--glow {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 179, 166, 0.2);
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.06) 0%, 
    rgba(0, 179, 166, 0.18) 50%, 
    rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(0, 179, 166, 0.3);
}

.media-showcase__marquee--muted {
  background: linear-gradient(135deg, rgba(15, 16, 30, 0.7) 0%, rgba(15, 16, 30, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.media-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  position: relative;
}

.media-showcase-card {
  background: linear-gradient(135deg, 
    rgba(20, 22, 40, 0.95) 0%, 
    rgba(15, 17, 35, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.media-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 179, 166, 0.1) 0%, 
    rgba(138, 43, 226, 0.08) 50%,
    rgba(255, 20, 147, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.media-showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.media-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 179, 166, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.media-showcase-card:hover::before {
  opacity: 1;
}

.media-showcase-card:hover::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.15);
}

.media-showcase-card__header {
  position: relative;
  z-index: 1;
}

.media-showcase-card__header p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: color 0.4s ease;
}

.media-showcase-card:hover .media-showcase-card__header p {
  color: rgba(255, 255, 255, 0.9);
}

.media-showcase-card__header h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.media-showcase-card:hover .media-showcase-card__header h3 {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 179, 166, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.media-showcase-card__header .media-showcase-card__eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(0, 179, 166, 0.9);
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 179, 166, 0.15);
  border-radius: 6px;
  border: 1px solid rgba(0, 179, 166, 0.3);
  transition: all 0.4s ease;
}

.media-showcase-card:hover .media-showcase-card__header .media-showcase-card__eyebrow {
  background: rgba(0, 179, 166, 0.25);
  border-color: rgba(0, 179, 166, 0.5);
  transform: translateX(4px);
}

.media-showcase-card__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.media-showcase-card__gallery .media-thumb {
  flex: unset;
  width: 100%;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation-duration: 10s;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-showcase-card__gallery .media-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.media-showcase-card__gallery .media-thumb:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 12px 32px rgba(0, 179, 166, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.media-showcase-card__gallery .media-thumb:hover::before {
  opacity: 1;
}

.media-showcase-card__gallery .media-thumb img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-showcase-card__gallery .media-thumb:hover img {
  transform: scale(1.12);
  filter: saturate(1.2) brightness(1.1);
}

.media-showcase-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.media-showcase-card__meta span {
  padding: 8px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.media-showcase-card__meta span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-showcase-card__meta span:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(0, 179, 166, 0.5);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 179, 166, 0.3);
}

.media-showcase-card__meta span:hover::before {
  opacity: 1;
}

.media-showcase__marquee + .media-showcase__grid {
  margin-top: 8px;
}

.media-showcase__grid + .media-showcase__marquee {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .media-showcase__shell {
    gap: 48px;
    padding: 0 20px;
  }

  .media-showcase__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .media-showcase-card {
    padding: 32px;
  }

  .media-showcase__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .media-showcase__shell {
    gap: 40px;
    padding: 0 16px;
  }

  .media-showcase__badge {
    letter-spacing: 0.2em;
    padding: 8px 20px;
    font-size: 0.7rem;
  }

  .media-showcase__intro {
    gap: 20px;
  }

  .media-showcase__intro h2 {
    font-size: 1.75rem;
  }

  .media-showcase__intro p {
    font-size: 1rem;
  }

  .media-showcase__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .media-showcase-card {
    padding: 24px;
    border-radius: 24px;
  }

  .media-showcase-card__header h3 {
    font-size: 1.5rem;
  }

  .media-showcase-card__gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-showcase-card__gallery .media-thumb {
    height: 180px;
  }

  .media-showcase-card__meta {
    flex-direction: row;
    gap: 8px;
  }

  .media-showcase-card__meta span {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(24px, 6vw, 120px);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 179, 166, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav__logo img {
  width: 180px;
}

.nav__menu {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

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

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 0;
}

.nav__dropdown-caret {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.nav__dropdown-caret svg {
  width: 16px;
  height: 16px;
}

.nav__dropdown:hover .nav__dropdown-caret,
.nav__dropdown.is-open .nav__dropdown-caret {
  transform: rotate(180deg);
}

.nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, -10px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  padding: 24px;
  width: min(880px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}

.nav__dropdown-panel::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel,
.nav__dropdown.is-open .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav__dropdown-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 16px;
  grid-auto-rows: 1fr;
}

.nav__dropdown-card {
  height: 100%;
}

.nav__dropdown-card a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.nav__dropdown-card a:hover {
  border-color: rgba(0, 179, 166, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.nav__dropdown-card-media {
  width: 72px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-alt);
}

.nav__dropdown-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__dropdown-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__dropdown-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav__dropdown-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

.values {
  background-color: var(--teal);
}

.values h2,
.values .section__header {
  color: var(--white);
}

.values .eyebrow {
  color: var(--text);
}

.values__grid,
.custom__grid,
.pricing__grid {
  display: grid;
  gap: 24px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.values__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why--signature {
  background: 
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(0, 179, 166, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 20% 50%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 80% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 10, 25, 0.95) 0%, rgba(6, 10, 25, 0.98) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.why--signature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 179, 166, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 40%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.why--signature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(0, 179, 166, 0.05) 100%);
  pointer-events: none;
}

.why__shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(0, 179, 166, 0.9);
  font-weight: 600;
}

.why__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--white);
}

.why__intro p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.why-card {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(20, 22, 40, 0.95) 0%, 
    rgba(15, 17, 35, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 179, 166, 0.1) 0%, 
    rgba(138, 43, 226, 0.08) 50%,
    rgba(255, 20, 147, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 179, 166, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.15);
}

.why-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.why-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-card:hover .why-card__media img {
  transform: scale(1.05);
}

.why-card__body {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 179, 166, 0.3);
  background: rgba(0, 179, 166, 0.15);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 179, 166, 0.9);
  font-weight: 600;
}

.why-card__body h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.why-card:hover .why-card__body h3 {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 179, 166, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  transition: color 0.4s ease;
}

.why-card:hover .why-card__body p {
  color: rgba(255, 255, 255, 0.9);
}

.why-card__stat {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-card__stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(0, 179, 166, 0.9);
}

.why-card__stat p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .why-card__media {
    height: 200px;
  }

  .why-card__body {
    padding: 24px;
  }
}

.value-card,
.custom-card,
.price-card,
.slider-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.value-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.value-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-card:hover .value-card__media img {
  transform: scale(1.08);
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.usecase-deck {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.usecase-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: clamp(20px, 4vw, 36px);
  background: linear-gradient(135deg, var(--white), var(--surface));
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usecase-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.12);
}

.usecase-panel--reversed {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
}

.usecase-panel--reversed .usecase-panel__body {
  order: 1;
}

.usecase-panel--reversed .usecase-panel__media {
  order: 2;
}

.usecase-panel__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  background: rgba(0, 0, 0, 0.08);
}

.usecase-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

.usecase-panel__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text);
}

.usecase-panel__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usecase-panel__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  font-size: 0.8rem;
}

.usecase-panel__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.usecase-panel__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.usecase-panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 179, 166, 0.6);
}

.usecase-panel__rail {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Creative Teams: 2 cards per row (4 cards total) */
.usecase-panel__rail[data-gallery="creative-teams"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usecase-panel__rail .media-thumb {
  flex: initial;
  width: 100%;
  height: 220px;
  border-radius: 20px;
}

.usecase-panel__rail .media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Creative Teams: maintain image width without cropping */
.usecase-panel__rail[data-gallery="creative-teams"] .media-thumb img {
  object-fit: contain;
}

.segment-grid {
  display: grid;
  gap: 36px;
}

.segment-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.segment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.15), transparent 45%);
  pointer-events: none;
}

.segment-card__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.segment-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--segment-bg, linear-gradient(135deg, var(--surface), var(--surface-alt)));
  background-size: cover;
  background-position: center;
  filter: saturate(1.15);
  transform: scale(1.08);
}

.segment-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.segment-card__content {
  position: relative;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.segment-card__label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.segment-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment-card__chips span {
  border: 1px solid rgba(0, 179, 166, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--text);
}

.segment-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.segment-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.segment-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(0, 179, 166, 0.8);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.feature-card-modern {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  border-radius: 32px;
  padding: clamp(20px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-modern:nth-child(1),
.feature-card-modern:nth-child(2),
.feature-card-modern:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='tealPattern' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='3' fill='%2300b3a6' opacity='0.15'/%3E%3Ccircle cx='60' cy='40' r='2.5' fill='%2300b3a6' opacity='0.12'/%3E%3Ccircle cx='100' cy='20' r='2' fill='%2300b3a6' opacity='0.1'/%3E%3Ccircle cx='40' cy='80' r='2.5' fill='%2300b3a6' opacity='0.12'/%3E%3Ccircle cx='80' cy='100' r='3' fill='%2300b3a6' opacity='0.15'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23tealPattern)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-position: top right;
  background-repeat: no-repeat;
}

.feature-card-modern:nth-child(1)::after,
.feature-card-modern:nth-child(2)::after,
.feature-card-modern:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 179, 166, 0.12) 0%, rgba(0, 179, 166, 0.05) 50%, transparent 80%);
  border-radius: 50%;
  transform: translate(25%, -25%);
  pointer-events: none;
  z-index: 0;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 179, 166, 0.15);
  border-color: var(--teal);
}

.feature-card-modern:hover::before {
  opacity: 1;
}

.feature-card-modern__media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-alt);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card-modern:hover .feature-card-modern__media {
  transform: scale(1.05);
}

.feature-card-modern__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-card-modern__media img {
  transform: scale(1.08);
}

.feature-card-modern__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.feature-card-modern__body h3 {
  transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-card-modern__body h3 {
  color: var(--teal);
}

.feature-card-modern__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--gray);
}

.feature-card-modern__body ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-card-modern__body li {
  position: relative;
  padding-left: 18px;
}

.feature-card-modern__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

.feature-card-modern__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.features--signature {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.12), transparent 55%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.features__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.features__hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: var(--white);
  border-radius: 36px;
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid rgba(0, 179, 166, 0.15);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .features__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    grid-template-areas:
      "content visual"
      "panel panel";
  }

  .features__hero-content {
    grid-area: content;
  }

  .features__hero-panel {
    grid-area: panel;
  }

  .features__hero-visual {
    grid-area: visual;
    align-self: stretch;
    min-height: 280px;
  }
}

.features__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.features__lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.features__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.features__meta-item {
  background: rgba(0, 179, 166, 0.08);
  border: 1px solid rgba(0, 179, 166, 0.2);
  border-radius: 20px;
  padding: 18px;
}

.features__meta-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}

.features__hero-panel {
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.features__hero-visual {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.features__hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

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

.features__panel-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.features__timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.features__timeline li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.features__timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 179, 166, 0.08);
}

.features__timeline h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.features__timeline p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
}

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

.feature-tile {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 179, 166, 0.18);
}

.feature-tile:hover::after {
  opacity: 1;
}

.feature-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 179, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  position: relative;
  z-index: 1;
}

.feature-tile__icon svg {
  width: 28px;
  height: 28px;
}

.feature-tile__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

.feature-tile h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.feature-tile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.feature-tile ul li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.feature-tile ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.feature-tile__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.feature-tile__pills span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.1);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-tile__note {
  font-size: 0.95rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.feature-tile--export {
  grid-column: span 2;
}

.feature-tile__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.feature-tile__metrics div {
  border: 1px solid rgba(0, 179, 166, 0.2);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}

.feature-tile__metrics span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.feature-tile__metrics p {
  margin: 4px 0 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.price-card ul {
  list-style: none;
  margin-top: 16px;
  color: var(--gray);
}

.price-card li {
  margin-bottom: 8px;
}

.custom__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.custom-models-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 80px 20px;
  perspective: 1800px;
  perspective-origin: center center;
  overflow: hidden;
}

.custom-models-carousel {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-models-card {
  position: absolute;
  width: 420px;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    z-index 0.3s ease,
    box-shadow 1s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-style: preserve-3d;
}

.custom-models-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth fade transitions for image changes */
.custom-models-card.fade-out img {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.custom-models-card.fade-in img {
  opacity: 0;
  transform: scale(1.02);
}

.custom-models-card.active img {
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 0.6s ease-in, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-models-card:nth-child(1) {
  transform: translateX(-520px) translateZ(-300px) rotateY(20deg) scale(0.7);
  opacity: 0.75;
  z-index: 1;
}

.custom-models-card:nth-child(2) {
  transform: translateX(-390px) translateZ(-200px) rotateY(15deg) scale(0.75);
  opacity: 0.8;
  z-index: 2;
}

.custom-models-card:nth-child(3) {
  transform: translateX(-260px) translateZ(-100px) rotateY(10deg) scale(0.8);
  opacity: 0.85;
  z-index: 3;
}

.custom-models-card:nth-child(4) {
  transform: translateX(-130px) translateZ(-50px) rotateY(5deg) scale(0.85);
  opacity: 0.9;
  z-index: 4;
}

.custom-models-card:nth-child(5) {
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0, 179, 166, 0.4);
}

.custom-models-card:nth-child(6) {
  transform: translateX(130px) translateZ(-50px) rotateY(-5deg) scale(0.85);
  opacity: 0.9;
  z-index: 4;
}

.custom-models-card:nth-child(7) {
  transform: translateX(260px) translateZ(-100px) rotateY(-10deg) scale(0.8);
  opacity: 0.85;
  z-index: 3;
}

.custom-models-card:nth-child(8) {
  transform: translateX(390px) translateZ(-200px) rotateY(-15deg) scale(0.75);
  opacity: 0.8;
  z-index: 2;
}

.custom-models-card:nth-child(n+9) {
  transform: translateX(520px) translateZ(-300px) rotateY(-20deg) scale(0.7);
  opacity: 0.75;
  z-index: 1;
}

.custom-models-card.active {
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.05) !important;
  opacity: 1 !important;
  z-index: 10 !important;
  box-shadow: 0 40px 100px rgba(0, 179, 166, 0.6);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    z-index 0.3s ease,
    box-shadow 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-models-card.active:nth-child(1),
.custom-models-card.active:nth-child(2),
.custom-models-card.active:nth-child(3),
.custom-models-card.active:nth-child(4),
.custom-models-card.active:nth-child(6),
.custom-models-card.active:nth-child(7),
.custom-models-card.active:nth-child(8),
.custom-models-card.active:nth-child(n+9) {
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.05) !important;
}

.custom-models-card.active::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--teal), rgba(0, 179, 166, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: custom-models-glow 2s ease-in-out infinite;
}

@keyframes custom-models-glow {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.custom-card__mock {
  margin-top: 24px;
  border: 1px dashed rgba(0, 179, 166, 0.4);
  border-radius: 16px;
  padding: 20px;
  background: rgba(0, 179, 166, 0.08);
}

.upload-dropzone {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.upload-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.attribute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.attribute-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--gray);
}

.attribute-grid select {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 10px;
}

.workflow--signature {
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.workflow__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 32px;
}

.workflow__intro {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.workflow__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

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

.workflow__intro p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.workflow__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.workflow__stat {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  background: rgba(0, 179, 166, 0.05);
  padding: 14px;
}

.workflow__stat span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.workflow__stat p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.workflow__legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gray);
}

.workflow__legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow__legend li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.workflow__timeline {
  background: var(--white);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.workflow__timeline::before {
  display: none; /* Removed connecting line */
}

.workflow-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.workflow-card__step {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(0, 179, 166, 0.3);
  background: rgba(0, 179, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  position: relative;
}

.workflow-card__body {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.workflow-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.workflow-card__body p {
  margin: 0 0 12px;
  color: var(--gray);
  line-height: 1.5;
}

.workflow-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workflow-card__tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.12);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
}

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

  .workflow__timeline::before {
    display: none; /* Removed connecting line */
  }

  .workflow-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .workflow-card__step {
    width: 56px;
    height: 56px;
  }
}


.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 32px;
}

.showcase-panel {
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(20px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-panel__header h3 {
  margin-bottom: 6px;
}

.showcase-panel__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.showcase-panel__gallery .media-thumb {
  flex: unset;
  height: 160px;
  border-radius: 18px;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: none;
  overflow: hidden;
}

.showcase-panel__gallery .media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.showcase-panel__gallery .media-thumb:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.gallery {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 500px;
  aspect-ratio: 16 / 10;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.slider__label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 20px;
  z-index: 20;
  backdrop-filter: blur(8px);
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.slider__label--before {
  left: 20px;
}

.slider__label--after {
  right: 20px;
  left: auto;
  z-index: 15;
  visibility: visible;
  opacity: 1;
}

.slider__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.1s ease;
  z-index: 2;
}

.slider__after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider input[type='range'] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 5;
  outline: none;
}

.slider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 100%;
  background: var(--white);
  cursor: ew-resize;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.3);
  border: none;
  margin-top: 0;
}

.slider input[type='range']::-moz-range-thumb {
  width: 6px;
  height: 100%;
  background: var(--white);
  cursor: ew-resize;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 0;
}

.slider input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
}

.slider input[type='range']::-moz-range-track {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
}

.pricing__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card .price {
  font-size: 2.2rem;
  margin: 12px 0;
  color: var(--teal);
}

.price-card--featured {
  border-color: rgba(0, 179, 166, 0.6);
  box-shadow: 0 0 40px rgba(0, 179, 166, 0.4);
  position: relative;
}

.price-card--featured .tag {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.explore-cta {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-cta__container {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.9), rgba(0, 150, 140, 0.9));
}

.explore-cta__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.explore-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.85), rgba(0, 179, 166, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px);
}

.explore-cta__content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 600px;
}

.explore-cta__content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}

.explore-cta__content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .explore-cta {
    min-height: 400px;
  }

  .explore-cta__container {
    min-height: 400px;
  }

  .explore-cta__overlay {
    padding: 40px 24px;
  }
}

.answer-engine {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.answer-engine__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.answer-engine__intro .section__lead {
  margin-bottom: 24px;
}

.answer-engine__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.answer-engine__stats article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  text-align: center;
}

.answer-engine__stats span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
}

.answer-engine__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.answer-engine__cards article {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
}

.answer-engine__cards h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-expanded__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.faq-expanded__card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-expanded__tag {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.faq-expanded__card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.launch-banner {
  padding: 0;
}

.launch-banner__wrapper {
  border-radius: 36px;
  background: linear-gradient(120deg, var(--teal), #00a396);
  color: var(--white);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 40px;
}

.launch-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 16px;
}

.launch-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.launch-banner__list li {
  position: relative;
  padding-left: 20px;
}

.launch-banner__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--white);
}

.launch-banner__highlights {
  display: grid;
  gap: 16px;
}

.launch-banner__highlights article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  text-align: center;
}

.launch-banner__highlights span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.before-after--signature {
  background: radial-gradient(circle at top left, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.before-after__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.before-after__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.before-after__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

.before-after__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.before-after__intro p {
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.before-after__panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.before-after-panel {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.before-after-panel__media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.before-after-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-panel__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-panel__badge--after {
  background: rgba(0, 179, 166, 0.9);
}

.before-after-panel__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.before-after-panel__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--gray);
}

.before-after-panel__body ul li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.before-after-panel__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.before-after-panel__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.before-after-panel__metrics div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 16px;
  text-align: center;
  background: rgba(0, 179, 166, 0.05);
}

.before-after-panel__metrics span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

.before-after-panel__metrics p {
  margin: 6px 0 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.before-after-panel__tag {
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.before-after-panel__tag--before {
  color: #aa0000;
  border-color: rgba(170, 0, 0, 0.2);
  background: rgba(170, 0, 0, 0.05);
}

.before-after-panel__tag--after {
  color: var(--teal);
  border-color: rgba(0, 179, 166, 0.3);
  background: rgba(0, 179, 166, 0.08);
}

.transformation--signature {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.transformation__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.transformation__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transformation__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 179, 166, 0.3);
  background: rgba(0, 179, 166, 0.08);
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 auto;
}

.transformation__intro h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
}

.transformation__intro p {
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.transformation__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.transformation__chips span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.transformation__board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.transformation__compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
}

.transformation__compare span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(0, 179, 166, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transformation__compare p {
  text-align: center;
  font-size: 0.9rem;
  max-width: 160px;
}

.transformation-card {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.transformation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.transformation-card:hover::after {
  opacity: 1;
}

.transformation-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.transformation-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
  margin: 0 0 6px;
}

.transformation-card__tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.transformation-card__lead {
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

.transformation-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--gray);
}

.transformation-card ul li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.transformation-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.transformation-card--before ul li::before {
  background: #c62828;
  box-shadow: 0 0 8px rgba(198, 40, 40, 0.5);
}

.transformation-card--after ul li::before {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 179, 166, 0.5);
}

.transformation-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.transformation-card__metrics div {
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface);
}

.transformation-card__metrics span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.transformation-card--before .transformation-card__metrics span {
  color: #c62828;
}

.transformation-card--after .transformation-card__metrics span {
  color: var(--teal);
}

.transformation-card__metrics p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.suite-cta--signature {
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.12), transparent 60%), var(--teal-dark);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.suite-cta__shell {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--teal);
  backdrop-filter: none;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  gap: clamp(24px, 5vw, 40px);
  padding: clamp(32px, 5vw, 60px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35);
}

.suite-cta__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--teal);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.suite-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.suite-cta__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.suite-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.suite-cta__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.suite-cta__content ul li {
  position: relative;
  padding-left: 18px;
}

.suite-cta__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.suite-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.suite-cta__panel {
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.35);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.suite-cta__panel-header p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.suite-cta__panel-header h3 {
  margin: 6px 0 0;
  font-size: 1.4rem;
}

.suite-cta__panel-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.suite-cta__panel-metrics div {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.suite-cta__panel-metrics span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.suite-cta__panel-metrics p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.suite-cta__panel-footer p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.85);
}

.suite-cta__panel-footer .btn--teal {
  background: var(--white);
  color: var(--teal);
  border: none;
}

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

  .suite-cta__actions {
    flex-direction: column;
  }
}

.transformation__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.transformation__stats div {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.transformation__stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}

.transformation__stats p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

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

  .transformation__compare {
    flex-direction: row;
    order: 2;
  }

  .transformation__compare span {
    width: 48px;
    height: 48px;
  }

  .transformation-card__metrics {
    grid-template-columns: 1fr;
  }
}

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

.audience--signature {
  background: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.audience__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.audience__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

.audience__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.audience__intro p {
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.audience-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.audience-card h3 {
  margin: 0;
  position: relative;
  z-index: 1;
}

.audience-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.audience-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.audience-card ul li {
  position: relative;
  padding-left: 16px;
  color: var(--gray);
}

.audience-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.audience__ribbon {
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 179, 166, 0.07);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.audience__ribbon-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience__ribbon-brands span {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
}

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

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.product-design-intro {
  background: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.product-design-intro__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
}

.product-design-intro__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-design-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.14);
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.product-design-intro__lead {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
}

.product-design-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-design-intro__chips span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
  font-weight: 600;
}

.product-design-intro__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 8px 0 12px;
}

.product-design-intro__highlights article {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
  background: rgba(0, 179, 166, 0.05);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.product-design-intro__highlights article span {
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
}

.product-design-intro__highlights h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.product-design-intro__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: grid;
  gap: 8px;
}

.product-design-intro__list li {
  position: relative;
  padding-left: 18px;
  color: var(--gray);
}

.product-design-intro__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.product-design-intro__note {
  color: var(--gray);
  font-weight: 600;
}

.product-design-intro__cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-design-intro__visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.product-design-intro__visual-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.product-design-intro__visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-design-intro__floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  text-align: right;
}

.product-design-intro__floating span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.product-design-intro__visual-card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-design-intro__visual-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--gray);
}

.product-design-intro__card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 700;
}

.product-design-intro__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.product-design-intro__stats div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 12px;
  background: rgba(0, 179, 166, 0.07);
  text-align: center;
}

.product-design-intro__stats span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.product-design-intro__stats p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.product-design-intro__visual-card .product-design-intro__note {
  color: var(--gray);
  font-weight: 600;
}

.product-value {
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.product-value__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-value__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.15);
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-value__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.product-value__hero {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-value__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 700;
}

.product-value__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.product-value__stats div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 16px;
  background: rgba(0, 179, 166, 0.06);
}

.product-value__stats span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.product-value__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray);
}

.product-value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-value__grid article {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
}

.product-benefits {
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.product-benefits__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.product-benefits__intro {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-benefits__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.product-benefits__stats div {
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 12px;
  background: rgba(0, 179, 166, 0.06);
  text-align: center;
}

.product-benefits__stats span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.product-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.product-benefits__grid article {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.product-benefits__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-benefits__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.product-feature-suite {
  background: var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.product-feature-suite__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-feature-suite__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: center;
}

.product-feature-suite__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.product-feature-suite__metrics div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 16px;
  background: rgba(0, 179, 166, 0.07);
  text-align: center;
}

.product-feature-suite__metrics span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.product-feature-suite__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-feature-suite__grid article {
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-feature-suite__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-suite__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.product-feature-suite__grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--gray);
}

.product-feature-suite__grid ul li {
  position: relative;
  padding-left: 16px;
}

.product-feature-suite__grid ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.product-how--signature {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.product-how__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-how__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.product-how__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.product-how__details div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 16px;
  background: rgba(0, 179, 166, 0.06);
}

.product-how__details span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.product-how__timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 14px;
  position: relative;
}

.product-how__timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 179, 166, 0.4), transparent);
  pointer-events: none;
}

.product-how-step {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 22px;
  background: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.product-how-step__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 166, 0.3);
  background: rgba(0, 179, 166, 0.15);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-how-step h3 {
  margin: 6px 0 4px;
}

.product-how-step p {
  margin: 0;
  color: var(--gray);
}

.product-usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-usecases__grid article {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  background: var(--white);
}

.product-before-after--signature {
  background: var(--surface);
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.product-before-after__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-before-after__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-before-after__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-before-after-card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-before-after-card__header span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-before-after-card__header h3 {
  margin: 8px 0 6px;
}

.product-before-after-card__header p {
  margin: 0;
  color: var(--gray);
}

.product-before-after-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--gray);
  display: grid;
  gap: 6px;
}

.product-before-after-card__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.product-before-after-card__metrics div {
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  padding: 12px;
  background: rgba(0, 179, 166, 0.06);
  text-align: center;
}

.product-before-after-card__metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--teal);
}

.product-before-after-card__tag {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.product-before-after-card__tag--before {
  color: #a30000;
  background: rgba(163, 0, 0, 0.08);
  border: 1px solid rgba(163, 0, 0, 0.2);
}

.product-before-after-card__tag--after {
  color: var(--teal);
  background: rgba(0, 179, 166, 0.08);
  border: 1px solid rgba(0, 179, 166, 0.2);
}

.product-before-after__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-before-after__divider span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.product-before-after__line {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 179, 166, 0.5), transparent);
}

.before-card .product-before-after-card__header span {
  background: rgba(163, 0, 0, 0.1);
  color: #a30000;
}

.after-card .product-before-after-card__header span {
  background: rgba(0, 179, 166, 0.1);
  color: var(--teal);
}

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

  .product-before-after__divider {
    flex-direction: row;
  }

  .product-before-after__line {
    width: 80px;
    height: 2px;
  }
}

.product-faq--signature {
  background: var(--white);
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.product-faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--surface);
  padding: clamp(16px, 3vw, 30px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-faq__list .faq-item {
  padding: 10px 0;
}

.product-faq__list .faq-item button {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-faq__list .faq-item__content {
  color: var(--gray);
  line-height: 1.6;
}

.product-cta--signature {
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.12), transparent 60%), var(--teal-dark);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.product-cta__shell {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--teal);
  backdrop-filter: none;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  padding: clamp(32px, 5vw, 60px);
}

.product-cta__headline {
  background: var(--teal);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-cta__headline h2 {
  margin: 8px 0 6px;
}

.product-cta__headline p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.product-cta__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-cta__keypoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.product-cta__keypoints div {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  text-align: center;
}

.product-cta__keypoints span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.product-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-cta__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

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

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

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

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

  .product-how__timeline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .product-how__timeline::before {
    display: none;
  }
}

.photo-hero {
  background: var(--white);
  padding: clamp(48px, 6vw, 90px) clamp(16px, 4vw, 48px);
}

.photo-hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 32px;
}

.photo-hero__copy ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 8px;
  color: var(--gray);
}

.photo-hero__copy ul li {
  position: relative;
  padding-left: 18px;
}

.photo-hero__copy ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.photo-hero__cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-hero__card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.photo-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.photo-hero__stats div {
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  background: rgba(0, 179, 166, 0.08);
  padding: 12px;
  text-align: center;
}

.photo-hero__stats span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.photo-value {
  background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.1), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.photo-value__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.photo-value__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.15);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
}

.photo-value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.photo-value__grid article {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
}

.photo-benefits {
  background: var(--surface);
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.photo-benefits__shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.photo-benefits__intro {
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.photo-benefits__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.photo-benefits__metrics div {
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 166, 0.2);
  background: rgba(0, 179, 166, 0.06);
  padding: 14px;
  text-align: center;
}

.photo-benefits__metrics span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.photo-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.photo-benefits__card {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-benefits__card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 179, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-benefits__card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.photo-features {
  background: radial-gradient(circle at top left, rgba(0, 179, 166, 0.08), transparent 50%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.photo-features__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.photo-features__hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  background: var(--white);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 179, 166, 0.15);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .photo-features__hero {
    grid-template-areas:
      "content visual";
    grid-template-columns: 1fr 1fr;
  }

  .photo-features__hero-content {
    grid-area: content;
  }

  .photo-features__hero-visual {
    grid-area: visual;
    align-self: stretch;
    min-height: 320px;
  }
}

.photo-features__hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-features__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.photo-features__metric {
  border-radius: 20px;
  border: 1px solid rgba(0, 179, 166, 0.25);
  background: rgba(0, 179, 166, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-features__metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 179, 166, 0.2);
}

.photo-features__metric span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.photo-features__metric p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.photo-features__hero-visual {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.photo-features__hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3));
}

.photo-features__hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-features__visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

.photo-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.photo-features__card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.photo-features__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.photo-features__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 179, 166, 0.2);
}

.photo-features__card:hover::before {
  transform: scaleX(1);
}

.photo-features__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 179, 166, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.photo-features__card:hover .photo-features__card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.2), rgba(0, 179, 166, 0.12));
}

.photo-features__card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.photo-features__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  transition: color 0.3s ease;
}

.photo-features__card:hover h3 {
  color: var(--teal);
}

.photo-features__card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.photo-how--signature {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.12), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.photo-how__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.photo-how__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.photo-how__intro > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-how__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.photo-how__details > div {
  border-radius: 20px;
  border: 1px solid rgba(0, 179, 166, 0.25);
  padding: 18px;
  background: rgba(0, 179, 166, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-how__details > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 179, 166, 0.15);
}

.photo-how__details span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.photo-how__details p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.photo-how__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}

@media (min-width: 1024px) {
  .photo-how__timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .photo-how__timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 179, 166, 0.3), rgba(0, 179, 166, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
  }
}

.photo-how-step {
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px;
  background: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 179, 166, 0.2);
}

.photo-how-step__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 2px solid rgba(0, 179, 166, 0.3);
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.08));
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.photo-how-step:hover .photo-how-step__marker {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.25), rgba(0, 179, 166, 0.15));
  border-color: var(--teal);
}

.photo-how-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  transition: color 0.3s ease;
}

.photo-how-step:hover h3 {
  color: var(--teal);
}

.photo-how-step p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.photo-usecases--signature {
  background: radial-gradient(circle at bottom right, rgba(0, 179, 166, 0.1), transparent 60%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.photo-usecases__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.photo-usecases__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.photo-usecases__intro h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.photo-usecases__intro p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.photo-usecases__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.photo-usecases__chips span {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.1);
  border: 1px solid rgba(0, 179, 166, 0.2);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.photo-usecases__chips span:hover {
  transform: translateY(-2px);
  background: rgba(0, 179, 166, 0.15);
}

.photo-usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.photo-usecase-card {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-usecase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.photo-usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 179, 166, 0.2);
}

.photo-usecase-card:hover::before {
  transform: scaleX(1);
}

.photo-usecase-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.15), rgba(0, 179, 166, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 179, 166, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  margin-bottom: 4px;
}

.photo-usecase-card:hover .photo-usecase-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.25), rgba(0, 179, 166, 0.15));
}

.photo-usecase-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.photo-usecase-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  transition: color 0.3s ease;
}

.photo-usecase-card:hover h3 {
  color: var(--teal);
}

.photo-usecase-card > p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.photo-usecase-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.photo-usecase-card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.photo-usecase-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 179, 166, 0.6);
}

.photo-before-after--signature {
  background: radial-gradient(circle at center, rgba(0, 179, 166, 0.08), transparent 70%), var(--surface);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.photo-before-after__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.photo-before-after__timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}

.photo-before-after-card {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.photo-before-after-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: height 0.3s ease;
}

.photo-before-after-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.before-card::before {
  background: linear-gradient(90deg, #d32f2f, #f44336);
  height: 5px;
}

.after-card::before {
  background: linear-gradient(90deg, var(--teal), rgba(0, 179, 166, 0.8));
  height: 5px;
}

.photo-before-after-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-before-after-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.photo-before-after-card__tag--before {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.25);
}

.photo-before-after-card__tag--after {
  color: var(--teal);
  background: rgba(0, 179, 166, 0.1);
  border: 1px solid rgba(0, 179, 166, 0.25);
}

.photo-before-after-card__header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.photo-before-after-card__header p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.photo-before-after-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}

.photo-before-after-card ul li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.before-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d32f2f;
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

.after-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(0, 179, 166, 0.6);
}

.photo-before-after-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.photo-before-after-card__metrics div {
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.before-card .photo-before-after-card__metrics div {
  border: 1px solid rgba(198, 40, 40, 0.2);
  background: rgba(198, 40, 40, 0.05);
}

.after-card .photo-before-after-card__metrics div {
  border: 1px solid rgba(0, 179, 166, 0.25);
  background: rgba(0, 179, 166, 0.08);
}

.photo-before-after-card__metrics div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.photo-before-after-card__metrics strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.before-card .photo-before-after-card__metrics strong {
  color: #c62828;
}

.after-card .photo-before-after-card__metrics strong {
  color: var(--teal);
}

.photo-before-after-card__metrics p {
  margin: 0;
  color: var(--gray);
  font-size: 0.85rem;
}

.photo-before-after__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.photo-before-after__divider span {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  background: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid rgba(0, 179, 166, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.photo-before-after__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(0, 179, 166, 0.4), rgba(0, 179, 166, 0.1), transparent);
  min-height: 60px;
}

.photo-faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--surface);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.photo-cta {
  background: var(--surface);
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.photo-cta__card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--teal);
  color: var(--white);
  padding: clamp(28px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.photo-cta__card h2 {
  color: var(--white);
  margin: 0;
}

.photo-cta__card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.photo-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

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

  .photo-features__hero {
    grid-template-columns: 1fr;
  }

  .photo-features__metrics {
    grid-template-columns: 1fr;
  }

  .photo-features__grid {
    grid-template-columns: 1fr;
  }

  .photo-how__details {
    grid-template-columns: 1fr;
  }

  .photo-how__timeline {
    grid-template-columns: 1fr;
  }

  .photo-how__intro {
    padding: 24px;
  }

  .photo-how-step {
    padding: 24px;
  }

  .photo-usecases__grid {
    grid-template-columns: 1fr;
  }

  .photo-usecase-card {
    padding: 28px;
  }

  .photo-usecases__chips {
    justify-content: flex-start;
  }

  .photo-before-after__timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .photo-before-after__divider {
    flex-direction: row;
    order: 2;
  }

  .photo-before-after__line {
    width: 80px;
    height: 2px;
    flex: none;
    min-height: 0;
  }

  .photo-before-after-card {
    padding: 28px;
  }

  .photo-before-after-card__metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .photo-usecases__intro {
    gap: 16px;
  }

  .photo-usecase-card {
    padding: 24px;
  }

  .photo-usecase-card__icon {
    width: 56px;
    height: 56px;
  }

  .photo-usecase-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .photo-before-after-card {
    padding: 24px;
  }

  .photo-before-after-card__header h3 {
    font-size: 1.3rem;
  }

  .photo-before-after-card__metrics strong {
    font-size: 1.1rem;
  }
}
@media (max-width: 900px) {
  .product-benefits__shell {
    grid-template-columns: 1fr;
  }

  .photo-features__hero {
    padding: 24px;
  }

  .photo-features__hero-visual {
    min-height: 240px;
  }

  .photo-features__metric {
    padding: 16px;
  }

  .photo-features__metric span {
    font-size: 1.3rem;
  }

  .photo-features__card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .photo-features__metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-features__shell {
    gap: 32px;
  }
}

.usecases--signature {
  background: var(--white);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

.usecases__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.usecases__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecases__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

.usecases__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.usecases__intro p {
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.usecases__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.usecases__chips span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 179, 166, 0.1);
  color: var(--teal);
  font-weight: 600;
}

.usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.usecase-card {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  isolation: isolate;
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 179, 166, 0.18);
}

.usecase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 179, 166, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.usecase-card:hover::after {
  opacity: 1;
}

.usecase-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.usecase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.usecase-card:hover .usecase-card__media img {
  transform: scale(1.08);
}

.usecase-card__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.usecase-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.02));
}

.usecase-card__body h3 {
  margin: 0;
  font-size: 1.3rem;
}

.usecase-card__body p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
}

.usecase-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.usecase-card__body ul li {
  position: relative;
  padding-left: 18px;
  color: var(--gray);
}

.usecase-card__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

@media (max-width: 1024px) {
  .usecases__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .usecases__chips {
    justify-content: flex-start;
  }

  .usecase-card__media {
    height: 200px;
  }
}

@media (max-width: 1024px) {
  .answer-engine__layout,
  .launch-banner__wrapper {
    grid-template-columns: 1fr;
  }

  .launch-banner__highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray);
}

.faq-item.open .faq-item__content {
  max-height: 200px;
  padding-top: 12px;
}

.footer {
  padding: 60px clamp(24px, 6vw, 120px);
  background: var(--teal);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer__top .btn {
  background: var(--white);
  color: var(--text);
  box-shadow: none;
}

.footer__tagline {
  font-size: 1.1rem;
  max-width: 520px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.footer__columns h4 {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.footer__columns ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__columns a {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer__bottom p {
  margin-left: auto;
}

.footer__bottom img {
  width: 180px;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background-color: #000;
  color: #fff;
}

.footer__social a:hover svg {
  color: #fff;
}

.footer__social a:hover svg path,
.footer__social a:hover svg rect,
.footer__social a:hover svg circle,
.footer__social a:hover svg line,
.footer__social a:hover svg polygon {
  fill: #fff;
  stroke: #fff;
}

.footer__social svg {
  width: 24px;
  height: 24px;
  color: #000;
}

@media (max-width: 1024px) {
  .feature-card-modern {
    grid-template-columns: 1fr;
  }

  .features__hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .features__meta {
    grid-template-columns: 1fr;
  }

  .features__hero-panel {
    padding: 24px;
  }

  .features__hero-visual {
    min-height: 240px;
  }

  .feature-tile {
    padding: 24px;
  }

  .feature-tile--export {
    grid-column: span 1;
  }

  .nav__dropdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .segment-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .segment-card__media {
    min-height: 260px;
  }

  .usecase-panel {
    grid-template-columns: 1fr;
  }

  .custom-models-carousel-wrapper {
    padding: 60px 20px;
    max-width: 1400px;
  }

  .custom-models-carousel {
    height: 580px;
  }

  .custom-models-card {
    width: 360px;
    height: 480px;
  }

  .custom-models-card:nth-child(1) {
    transform: translateX(-420px) translateZ(-250px) rotateY(20deg) scale(0.7);
  }

  .custom-models-card:nth-child(2) {
    transform: translateX(-315px) translateZ(-180px) rotateY(15deg) scale(0.75);
  }

  .custom-models-card:nth-child(3) {
    transform: translateX(-210px) translateZ(-100px) rotateY(10deg) scale(0.8);
  }

  .custom-models-card:nth-child(4) {
    transform: translateX(-105px) translateZ(-50px) rotateY(5deg) scale(0.85);
  }

  .custom-models-card:nth-child(6) {
    transform: translateX(105px) translateZ(-50px) rotateY(-5deg) scale(0.85);
  }

  .custom-models-card:nth-child(7) {
    transform: translateX(210px) translateZ(-100px) rotateY(-10deg) scale(0.8);
  }

  .custom-models-card:nth-child(8) {
    transform: translateX(315px) translateZ(-180px) rotateY(-15deg) scale(0.75);
  }

  .custom-models-card:nth-child(n+9) {
    transform: translateX(420px) translateZ(-250px) rotateY(-20deg) scale(0.7);
  }
}

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

  .usecase-panel__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: 70px;
    right: 24px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav__menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav__dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: none;
    border-radius: 18px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav__dropdown-panel::before {
    content: none;
  }

  .nav__dropdown.is-open .nav__dropdown-panel {
    display: block;
  }

  .nav__dropdown-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-thumb {
    flex-basis: 150px;
    height: 100px;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .slider {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero__content {
    margin-top: 80px;
  }

  .usecase-panel__rail {
    grid-template-columns: 1fr;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 64px 20px;
  }

  .media-thumb {
    flex-basis: 150px;
    height: 110px;
  }

  .media-strip .media-thumb {
    flex-basis: 130px;
    height: 95px;
  }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-models-carousel-wrapper {
    padding: 40px 10px;
    max-width: 100%;
  }

  .custom-models-carousel {
    height: 500px;
  }

  .custom-models-card {
    width: 300px;
    height: 400px;
  }

  .custom-models-card:nth-child(1) {
    transform: translateX(-300px) translateZ(-200px) rotateY(20deg) scale(0.65);
    opacity: 0.7;
  }

  .custom-models-card:nth-child(2) {
    transform: translateX(-225px) translateZ(-150px) rotateY(15deg) scale(0.7);
    opacity: 0.75;
  }

  .custom-models-card:nth-child(3) {
    transform: translateX(-150px) translateZ(-80px) rotateY(10deg) scale(0.75);
    opacity: 0.8;
  }

  .custom-models-card:nth-child(4) {
    transform: translateX(-75px) translateZ(-40px) rotateY(5deg) scale(0.8);
    opacity: 0.85;
  }

  .custom-models-card:nth-child(6) {
    transform: translateX(75px) translateZ(-40px) rotateY(-5deg) scale(0.8);
    opacity: 0.85;
  }

  .custom-models-card:nth-child(7) {
    transform: translateX(150px) translateZ(-80px) rotateY(-10deg) scale(0.75);
    opacity: 0.8;
  }

  .custom-models-card:nth-child(8) {
    transform: translateX(225px) translateZ(-150px) rotateY(-15deg) scale(0.7);
    opacity: 0.75;
  }

  .custom-models-card:nth-child(n+9) {
    transform: translateX(300px) translateZ(-200px) rotateY(-20deg) scale(0.65);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .media-track,
  .media-thumb {
    animation: none !important;
  }
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floaty {

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

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

.benefits--modern {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  position: relative;
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__header {
  text-align: center;
  margin-bottom: 56px;
}

.benefits__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.benefits__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
  border-radius: 24px 0 0 24px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 179, 166, 0.15);
  border-color: var(--teal);
}

.benefit-card:hover::before {
  transform: scaleY(1);
}

.benefit-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), rgba(0, 179, 166, 0.8));
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 179, 166, 0.25);
}

.benefit-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.3;
}

.benefit-card__content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 8px 0;
}

.benefit-card__highlight {
  font-weight: 600;
  color: var(--teal);
  font-size: 1.05rem;
  margin: 12px 0;
  padding: 12px 16px;
  background: rgba(0, 179, 166, 0.08);
  border-radius: 12px;
  border-left: 3px solid var(--teal);
}

.benefit-card__label {
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 8px;
  font-size: 1rem;
}

.benefit-card__note {
  color: var(--gray);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 179, 166, 0.2);
}

.benefit-card__list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
  display: grid;
  gap: 8px;
}

.benefit-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.5;
}

.benefit-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
}

.benefit-card__comparison {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.benefit-card__comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid;
}

.benefit-card__comparison-item--old {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

.benefit-card__comparison-item--new {
  background: rgba(0, 179, 166, 0.1);
  border-color: rgba(0, 179, 166, 0.4);
}

.benefit-card__comparison-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.benefit-card__comparison-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.benefit-card__comparison-item--old .benefit-card__comparison-value {
  color: #dc2626;
}

.benefit-card__comparison-item--new .benefit-card__comparison-value {
  color: var(--teal);
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.usecase-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text);
}

.usecase-card ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.usecase-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--gray);
}

.usecase-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

.who-is-this-for {
  margin-top: 32px;
}

.who-is-this-for__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding-left: 0;
}

.who-is-this-for__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray);
  line-height: 1.6;
}

.who-is-this-for__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 768px) {
  .benefits--modern {
    padding: 40px 24px;
  }

  .benefits__header {
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card {
    padding: 28px;
  }

  .benefit-card__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .benefit-card__title {
    font-size: 1.3rem;
  }

  .benefits-grid,
  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .who-is-this-for__list {
    grid-template-columns: 1fr;
  }

  .value-prop--enhanced {
    padding: 40px 24px;
  }

  .value-prop__container {
    gap: 32px;
  }

  .value-prop__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-prop__card {
    padding: 24px 20px;
  }

  .value-prop__card-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .value-prop__card-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .value-prop__title {
    font-size: 1.6rem;
  }

  .value-prop__subtitle {
    font-size: 1.05rem;
  }

  .value-prop__tagline {
    font-size: 1.1rem;
    padding: 20px;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Base responsive improvements */
@media (max-width: 1200px) {
  .section {
    padding: 80px clamp(24px, 4vw, 60px);
  }

  .section__header {
    margin-bottom: 48px;
  }

  .section__header h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}

/* Tablet and below */
@media (max-width: 1024px) {
  /* Navigation */
  .nav {
    padding: 16px clamp(20px, 4vw, 40px);
  }

  .nav__logo img {
    max-height: 36px;
  }

  /* Hero section */
  .hero {
    padding: 20px clamp(20px, 4vw, 60px) 80px;
    min-height: 90vh;
  }

  .hero__content {
    margin-top: 80px;
    min-height: clamp(300px, 45vh, 400px);
    gap: 40px;
    padding: 0 clamp(16px, 3vw, 32px);
  }

  /* Sections */
  .section {
    padding: 64px clamp(24px, 4vw, 48px);
  }

  /* Grid layouts */
  .overview__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-tabs__controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .feature-tabs__controls button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Cards */
  .feature-card-modern {
    grid-template-columns: 1fr;
  }

  .feature-card-modern__media {
    order: -1;
  }

  .usecase-panel {
    flex-direction: column;
  }

  .usecase-panel--reversed {
    flex-direction: column;
  }

  .usecase-panel__media {
    order: -1;
  }

  /* Footer */
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  h3 {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  /* Navigation */
  .nav__menu {
    width: calc(100% - 48px);
    max-width: 400px;
    right: 24px;
    left: auto;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu a {
    width: 100%;
    padding: 12px 16px;
  }

  /* Hero */
  .hero {
    padding: 16px 20px 60px;
    min-height: 85vh;
  }

  .hero__content {
    margin-top: 60px;
    min-height: clamp(250px, 40vh, 350px);
    gap: 24px;
    padding: 0 clamp(12px, 3vw, 24px);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero__subtext {
    font-size: 1rem;
  }

  /* Sections */
  .section {
    padding: 48px 20px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__header h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .section__lead {
    font-size: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn--hero {
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* Grids */
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .usecase-deck {
    gap: 48px;
  }

  .usecase-panel__body {
    padding: 24px;
  }

  .why__cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .workflow__timeline {
    gap: 32px;
  }

  .workflow-card {
    padding: 24px;
  }

  /* Feature tabs */
  .feature-tabs__controls {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .feature-tabs__controls::-webkit-scrollbar {
    display: none;
  }

  .feature-tabs__controls button {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Cards */
  .feature-card-modern__body {
    padding: 24px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .value-prop__card {
    padding: 20px;
  }

  /* Footer */
  .footer__top {
    padding: 40px 24px;
    text-align: center;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Base */
  body {
    font-size: 15px;
  }

  /* Navigation */
  .nav {
    padding: 12px 16px;
  }

  .nav__logo img {
    max-height: 32px;
  }

  .nav__menu {
    width: calc(100% - 32px);
    right: 16px;
    top: 60px;
    padding: 12px;
  }

  /* Hero */
  .hero {
    padding: 12px 16px 50px;
    min-height: 80vh;
  }

  .hero__content {
    margin-top: 40px;
    min-height: clamp(200px, 35vh, 300px);
    gap: 20px;
    padding: 0 12px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
    margin: 12px 0;
  }

  .hero__subtext {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  /* Sections */
  .section {
    padding: 40px 16px;
  }

  .section__header {
    margin-bottom: 24px;
  }

  .section__header h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .eyebrow,
  .section-eyebrow {
    font-size: 0.75rem;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }

  .btn--large {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero__cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__cta-group .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Cards and components */
  .feature-card-modern {
    padding: 20px;
  }

  .benefit-card {
    padding: 20px 16px;
  }

  .value-prop__card {
    padding: 16px;
  }

  .workflow-card {
    padding: 20px;
  }

  .usecase-panel__body {
    padding: 20px;
  }

  /* Grids */
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media-showcase__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__top {
    padding: 32px 16px;
  }

  .footer__columns {
    gap: 24px;
  }

  .footer__bottom {
    padding: 24px 16px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero {
    padding: 10px 12px 40px;
  }

  .hero__content {
    margin-top: 30px;
    min-height: clamp(180px, 30vh, 250px);
    gap: 16px;
    padding: 0 8px;
  }

  .section {
    padding: 32px 12px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero__content {
    min-height: auto;
    margin-top: 40px;
    gap: 20px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero__bg-media {
    background-image: url('lovpics.gif');
  }
}

/* Additional responsive styles for custom components */
@media (max-width: 1024px) {
  /* Narrative section */
  .narrative__wrapper {
    padding: 32px 24px;
  }

  .narrative__chips {
    flex-wrap: wrap;
    gap: 8px;
  }

  .narrative__chip {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  /* Product design intro */
  .product-design-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-design-intro__visual {
    order: -1;
  }

  /* Photo hero */
  .photo-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .photo-hero__card {
    padding: 24px;
  }

  /* CTA sections */
  .suite-cta__shell,
  .product-cta__shell {
    flex-direction: column;
    gap: 32px;
  }

  .suite-cta__panel,
  .product-cta__panel {
    padding: 24px;
  }

  /* Features section */
  .features__hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__hero-visual {
    order: -1;
  }

  .features__tiles {
    grid-template-columns: 1fr;
  }

  /* Transformation section */
  .transformation__board {
    flex-direction: column;
    gap: 24px;
  }

  .transformation-card {
    width: 100%;
  }

  .transformation__compare {
    transform: rotate(90deg);
    margin: 16px 0;
  }
}

@media (max-width: 768px) {
  /* Narrative */
  .narrative__wrapper {
    padding: 24px 20px;
  }

  .narrative__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Product sections */
  .product-design-intro__highlights {
    grid-template-columns: 1fr;
  }

  .product-value__grid {
    grid-template-columns: 1fr;
  }

  .product-benefits__grid {
    grid-template-columns: 1fr;
  }

  .product-feature-suite__grid {
    grid-template-columns: 1fr;
  }

  .product-how__timeline {
    gap: 24px;
  }

  .product-usecases__grid {
    grid-template-columns: 1fr;
  }

  /* Photo sections */
  .photo-hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-benefits__grid {
    grid-template-columns: 1fr;
  }

  .photo-features__grid {
    grid-template-columns: 1fr;
  }

  .photo-how__timeline {
    gap: 24px;
  }

  .photo-usecases__grid {
    grid-template-columns: 1fr;
  }

  /* Suite sections */
  .suite-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .suite-cta__actions .btn {
    width: 100%;
  }

  /* Features timeline */
  .features__timeline {
    gap: 20px;
  }

  .features__timeline li {
    flex-direction: column;
    gap: 12px;
  }

  /* Usecases */
  .usecases__grid {
    grid-template-columns: 1fr;
  }

  .usecase-card {
    padding: 20px;
  }

  /* Before after */
  .before-after__panels {
    flex-direction: column;
  }

  .before-after-panel {
    width: 100%;
  }

  /* Audience */
  .audience__grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq__list {
    gap: 16px;
  }

  .faq-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  /* All custom sections - extra small adjustments */
  .narrative__wrapper,
  .value-prop__container,
  .product-design-intro__grid,
  .product-value__shell,
  .product-benefits__shell,
  .photo-hero__grid,
  .photo-value__shell,
  .photo-benefits__shell,
  .suite-cta__shell,
  .product-cta__shell {
    padding: 20px 16px;
  }

  .narrative__chips {
    flex-direction: column;
  }

  .narrative__chip {
    width: 100%;
    text-align: center;
  }

  .product-design-intro__stats,
  .photo-hero__stats,
  .suite-cta__panel-metrics,
  .product-cta__keypoints {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .features__meta {
    flex-direction: column;
    gap: 16px;
  }

  .workflow__stats {
    flex-direction: column;
    gap: 16px;
  }

  .transformation__stats {
    flex-direction: column;
    gap: 16px;
  }
}