.section {
  padding: 6rem 0;
}

.section-hero {
  padding: 4rem 0 6rem;
  text-align: center;
  background-color: #FBF9F5;
  position: relative;
}


.aurora-container {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.aurora-blob-1 {
  background-color: var(--color-accent);
  width: 80vw;
  height: 50vw;
  max-width: 1200px;
  max-height: 800px;
  opacity: 0.3;
  
}

.aurora-blob-2 {
  display: none;
  
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--color-text-heading);
}

.hero__highlight {
  color: var(--color-accent);
}

.premium-highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a44 50%, var(--color-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shine 4s linear infinite;
  position: relative;
  display: inline-block;
  padding-bottom: 0.1em;
  
}


@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.hero__description {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 650px;
}


.hero-pill {
  display: inline-block;
  padding: 0.1em 0.35em;
  border-radius: 0.25em;
  line-height: 1.05;
  margin: 0 0.05em;
  box-shadow: var(--shadow-sm);
}

.pill-primary {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
}

.pill-secondary {
  background-color: var(--color-text-heading);
  color: var(--color-surface);
}


.hero__form {
  width: 100%;
  max-width: 550px;
  margin-bottom: 4rem;
}

.hero__input-wrapper {
  display: flex;
  align-items: center;
  background-color: var(--color-surface);
  border-radius: 9999px;
  padding: 0.375rem 0.375rem 0.375rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero__input-wrapper:focus-within {
  border-color: var(--focus-ring-color);
  box-shadow: 0 0 0 var(--focus-ring-width) var(--focus-ring-color);
}

.hero__icon {
  color: var(--color-border);
  margin-right: 0.75rem;
}

.hero__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--color-text-body);
  outline: none;
}

.hero__input::placeholder {
  color: var(--color-border);
}

.hero__submit {
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}

.hero__submit:hover {
  background-color: var(--btn-primary-bg-hover);
}


.hero__mockup-wrapper {
  width: 100%;
  max-width: 1000px;
}

.hero__mockup {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  border-bottom: none;
  height: 250px;
  
}

.mockup-header {
  background-color: rgba(252, 251, 249, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 0.375rem;
  margin-right: 1rem;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background-color: var(--color-error);
}

.dot-yellow {
  background-color: var(--color-warning);
}

.dot-green {
  background-color: var(--color-success);
}

.mockup-url {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex: 1;
  text-align: left;
  max-width: 350px;
}

.mockup-body {
  padding: 1.5rem;
}


.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: slideUpFade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.htb-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.htb-item svg {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.htb-divider {
  color: rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem; 
    width: 100%;
    padding: 0 1rem;
  }
  .htb-item {
    justify-content: center;
  }
  .htb-divider {
    display: none;
  }
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-text-heading);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}


.bg-canvas {
  background-color: var(--color-canvas);
}

.bg-inverted {
  background-color: var(--color-inverted);
}

.text-on-dark {
  color: var(--color-text-on-dark);
}


.section-mandate {
  padding: 6rem 0;
  position: relative;
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 45vh;
  max-width: 1000px;
  margin: 0 auto;
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 122, 34, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: sticky;
  overflow: hidden;
  will-change: transform, box-shadow;
}


.bento-card:nth-child(1) {
  top: 120px;
  z-index: 10;
}

.bento-card:nth-child(2) {
  top: 140px;
  z-index: 20;
}

.bento-card:nth-child(3) {
  top: 160px;
  z-index: 30;
}

@media (min-width: 992px) {

  .bento-card,
  .bento-card-full {
    flex-direction: row;
    align-items: center;
  }

  .bento-content {
    flex: 1;
    padding-right: 2rem;
  }

  .bento-visual {
    flex: 1;
  }
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px -12px rgba(255, 122, 34, 0.15);
}


.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid var(--color-accent);
  opacity: 0.4;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

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

.bento-content,
.bento-visual {
  position: relative;
  z-index: 1;
}

.bento-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  background-color: rgba(255, 122, 34, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bento-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.bento-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.desc-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.micro-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.label-challenge {
  color: rgba(255, 255, 255, 0.4);
}

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

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

.desc-text.text-highlight {
  color: var(--color-text-heading);
}

.text-on-surface {
  color: var(--color-text-heading);
}


.bento-visual {
  background-color: var(--color-canvas);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.chart-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.chart-line-baseline {
  position: absolute;
  bottom: 25px;
  
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(239, 68, 68, 0.3);
  
  border-top: 1px dashed rgba(239, 68, 68, 0.8);
  z-index: 1;
}

.chart-threshold-label {
  position: absolute;
  bottom: 5px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(239, 68, 68, 0.8);
  font-weight: 600;
  z-index: 2;
}

.chart-graph {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}


.activity-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  
  gap: 10px;
}

.activity-dot {
  width: 28px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.activity-dot.active {
  background-color: rgba(255, 122, 34, 0.4);
}

.activity-dot.intense {
  background-color: var(--color-accent);
}

.bento-card:hover .activity-dot.active {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 122, 34, 0.3);
}

.activity-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.device-network-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.device-node {
  position: relative;
  background: linear-gradient(145deg, var(--color-surface), rgba(0, 0, 0, 0.02));
  border: 1px solid rgba(150, 150, 150, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.device-node.abstract-phone {
  width: 44px;
  height: 80px;
  border-radius: 10px;
}

.device-node.abstract-tablet {
  width: 72px;
  height: 54px;
  border-radius: 8px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01));
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.device-node.abstract-tablet .device-screen {
  border-radius: 4px;
}


.bento-card:hover .device-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 34, 0.1), transparent);
  animation: screenShimmer 2s infinite;
}

@keyframes screenShimmer {
  100% {
    left: 100%;
  }
}

.bento-card:hover .device-node {
  transform: translateY(-4px);
  box-shadow:
    0 12px 20px -8px rgba(255, 122, 34, 0.2),
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 122, 34, 0.4);
}

.device-status {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #10b981;
  
  border: 2px solid var(--color-canvas);
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover .device-status {
  opacity: 1;
  transform: scale(1);
}


.bento-card:hover .device-node:nth-child(1) .device-status {
  transition-delay: 0.1s;
}

.bento-card:hover .device-node:nth-child(2) .device-status {
  transition-delay: 0.3s;
}

.bento-card:hover .device-node:nth-child(3) .device-status {
  transition-delay: 0.5s;
}

.bento-card:hover .device-node:nth-child(4) .device-status {
  transition-delay: 0.7s;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: -20%;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  opacity: 0;
  z-index: 3;
  filter: blur(2px);
}

.bento-card:hover .scanner-line {
  animation: scanSweep 2s ease-in-out infinite;
}

@keyframes scanSweep {
  0% {
    left: -20%;
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

.network-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.8s;
}

.bento-card:hover .network-label {
  opacity: 1;
}


.section-pain {
  padding: 8rem 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-card-full {
    grid-column: span 2;
  }
}

.pain-card {
  background: var(--color-surface);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px -10px rgba(239, 68, 68, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pain-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px -12px rgba(239, 68, 68, 0.15);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid rgba(239, 68, 68, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

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

.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-glow-red {
  background: rgba(239, 68, 68, 0.1);
  color: rgb(239, 68, 68);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.icon-glow-amber {
  background: rgba(245, 158, 11, 0.1);
  color: rgb(245, 158, 11);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.label-trap {
  color: rgb(239, 68, 68);
}

.pain-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}


.failure-card,
.s-card,
.audience-card,
.review-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  transition-timing-function: var(--transition-spring);
  will-change: transform, box-shadow;
  text-align: left;
}

.audience-card {
  text-decoration: none;
  display: block;
  color: inherit;
}

.audience-card:hover,
.failure-card:hover,
.s-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.audience-card h3,
.failure-card h3,
.s-card h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.failure-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.review-card .quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 1.10rem;
  font-style: normal;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #ea580c;
  margin-bottom: 1.5rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-avatar--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  font-size: 1.125rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--color-text-heading);
  font-size: 1rem;
}

.author-title {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}


.testimonial-masonry {
  column-count: 3;
  column-gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-masonry .review-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  display: inline-block;
  width: 100%;
}

@media (max-width: 1024px) {
  .testimonial-masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .testimonial-masonry {
    column-count: 1;
  }
}


.section-terminal {
  padding: 8rem 0;
}

.hiw3-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.hiw3-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-heading);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.hiw3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

  .hiw3-card--full {
    grid-column: 1 / -1;
  }
}

.hiw3-card {
  position: relative;
  border-radius: 28px;
  padding: 2.75rem;
  overflow: hidden;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.4s ease;
}

.hiw3-card--dark {
  background-color: var(--color-ink);
  color: var(--color-text-on-dark);
}

.hiw3-card--tint {
  background-color: #FFF1E6;
}

.hiw3-card--accent {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hiw3-card--accent {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hiw3-card__step {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.hiw3-card--tint .hiw3-card__step {
  background-color: rgba(255, 122, 34, 0.12);
  color: var(--color-accent);
}

.hiw3-card__content h3 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: inherit;
}

.hiw3-card--dark h3,
.hiw3-card--accent h3 {
  color: var(--color-text-on-dark);
}

.hiw3-card--accent h3 {
  color: var(--color-text-on-accent);
}

.hiw3-card__content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34ch;
}

.hiw3-card--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.hiw3-card--tint p {
  color: var(--color-text-body);
}

.hiw3-card--accent p {
  color: rgba(255, 255, 255, 0.85);
}


.hiw3-mock {
  margin-top: 2rem;
  background-color: var(--color-surface);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hiw3-mock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hiw3-mock__badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  background-color: rgba(255, 122, 34, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.hiw3-mock__link {
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 1rem;
}

.hiw3-mock__avatars {
  display: flex;
  margin-bottom: 1.25rem;
}

.hiw3-mock__avatars img,
.hiw3-mock__avatars .avatar-count {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  margin-left: -12px;
  background-color: var(--color-bg-subtle);
  object-fit: cover;
}

.hiw3-mock__avatars img:first-child {
  margin-left: 0;
}

.hiw3-mock__avatars .avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
}

.hiw3-mock__stats {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
}

.hiw3-mock__stats strong {
  font-size: 1.1rem;
  color: var(--color-text-heading);
  display: block;
}

.hiw3-mock__stats span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hiw3-mock--panel {
  padding: 1.75rem;
}

.hiw3-mock__title {
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 1.25rem;
}

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

.hiw3-mock__cell {
  background-color: var(--color-canvas);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.hiw3-mock__cell strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--color-text-heading);
}

.hiw3-mock__cell span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


.hiw3-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.75rem;
  background-color: var(--color-ink);
  color: var(--color-text-on-dark);
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--transition-spring), box-shadow 0.3s ease;
}

.hiw3-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.hiw3-report {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  background-color: var(--color-surface);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hiw3-report__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-canvas);
  font-size: 0.85rem;
  color: var(--color-text-body);
}

.hiw3-report__row:last-child {
  border-bottom: none;
}

.hiw3-report__row strong {
  color: var(--color-text-heading);
}

.hiw3-report__check {
  color: var(--color-success);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hiw3-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hiw3-card,
  .hiw3-card__cta {
    transition: none !important;
  }
}

.hidden {
  display: none;
}





.pcard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 3.5rem auto 0;
}

@media (min-width: 900px) {
  .pcard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pcard {
  position: relative;
  background-color: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.4s ease;
}

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

.pcard--featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 30px 60px -20px rgba(255, 122, 34, 0.3);
}

.pcard__badge {
  position: absolute;
  top: -14px;
  left: 2rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pcard__badge--accent {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
}

.pcard__badge--featured {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-ink);
  color: var(--color-text-on-dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pcard__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0.5rem 0 0.6rem;
}

.pcard__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.pcard__count {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.pcard__count span {
  color: var(--color-accent);
}

.pcard__price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--color-text-heading);
  margin: 0 0 1.75rem;
}

.pcard__price-original {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 0.4rem;
}

.pcard__price-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pcard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s var(--transition-spring), box-shadow 0.3s ease, background-color 0.2s ease;
  margin-bottom: 1.75rem;
}

.pcard__cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.pcard__cta--dark {
  background-color: var(--color-ink);
  color: var(--color-text-on-dark);
}

.pcard__cta--dark:hover {
  color: var(--color-accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.pcard__cta--accent {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
}

.pcard__cta--accent:hover {
  background-color: var(--btn-primary-bg-hover);
  box-shadow: 0 10px 24px rgba(255, 122, 34, 0.3);
}

.pcard__cta--light {
  background-color: var(--color-surface);
  color: var(--color-ink);
  width: auto;
  padding: 0.9rem 1.75rem;
  margin-bottom: 0;
}

.pcard__cta--light:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.pcard__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pcard__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.pcard__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 122, 34, 0.12);
  color: var(--color-accent);
}

.pcard__check--dark {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-accent);
}


.pcard-agency {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 1.5rem auto 0;
  background-color: var(--color-ink);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .pcard-agency {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.pcard-agency__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.pcard-agency__glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 122, 34, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.pcard-agency__left,
.pcard-agency__right {
  position: relative;
  z-index: 1;
}

.pcard-agency__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pcard-agency__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.pcard-agency__note {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}

.pcard-agency__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.975rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 0 1.75rem;
}

.pcard-agency__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 560px) {
  .pcard-agency__list {
    grid-template-columns: 1fr 1fr;
  }
}

.pcard-agency__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.6rem 1.25rem;
  background-color: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pricing-trust-badge svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.pricing-trust-badge strong {
  color: var(--color-text-heading);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {

  .pcard,
  .pcard__cta {
    transition: none !important;
  }
}


.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-list .faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-list .faq-item summary {
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-heading);
  list-style: none;
  
  position: relative;
}

.faq-list .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-list .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.5rem;
}

.faq-list .faq-item[open] summary::after {
  content: "-";
}

.faq-list .faq-content {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
}


@media (max-width: 768px) {
  .section-hero {
    padding: 3rem 1rem 4rem;
    overflow-x: hidden;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    word-break: break-word;
  }

  .hero__description {
    font-size: 1.05rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .section-mandate {
    padding: 4rem 0;
  }

  .bento-grid {
    gap: 1.5rem;
  }

  .bento-card,
  .bento-card:nth-child(n) {
    position: static !important;
    top: auto !important;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .bento-card h3 {
    font-size: 1.35rem;
  }

  .bento-desc-wrapper {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .desc-text {
    font-size: 0.95rem;
  }

  
  .section-pain {
    padding: 4rem 0;
  }

  .pain-grid {
    gap: 1.5rem;
  }

  .pain-card {
    padding: 1.5rem;
  }

  .pain-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .pain-content h3 {
    font-size: 1.25rem;
  }

  
  .section-terminal {
    padding: 4rem 0;
  }

  .hiw3-header {
    margin-bottom: 2.5rem;
  }

  .hiw3-grid {
    gap: 1.5rem;
  }

  .hiw3-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .hiw3-card--accent {
    gap: 1.5rem;
  }

  .hiw3-card__content h3 {
    font-size: 1.35rem;
  }

  .hiw3-mock {
    margin-top: 1.5rem;
    padding: 1.25rem;
  }

  .hiw3-mock--panel {
    padding: 1.25rem;
  }

  .hiw3-mock__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .hiw3-mock__cell {
    padding: 0.75rem;
  }

  .hiw3-mock__cell strong {
    font-size: 1.15rem;
  }

  
  .section-audience {
    padding: 4rem 0;
  }

  .who-item__summary {
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .who-item__title {
    font-size: 1.5rem;
  }

  .who-item[open] .who-item__body {
    padding-bottom: 2rem;
  }

  .who-item__lead {
    font-size: 1.15rem;
  }

  .who-item__visual {
    padding: 1.5rem;
  }

  
  .testimonial-masonry {
    column-gap: 1.5rem;
  }

  .testimonial-masonry .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .review-card .quote {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .review-stars {
    margin-bottom: 1rem;
  }

  
  .section-pricing {
    padding: 4rem 0 3rem;
  }

  .pricing-header {
    margin-bottom: 2rem !important;
  }

  
  .pcard-grid {
    margin-top: 2rem;
    gap: 0.875rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  
  .pcard {
    padding: 1.75rem 1.35rem;
    
    margin-top: 1rem;
  }

  
  .pcard__price {
    font-size: 2rem;
    margin-bottom: 1.35rem;
  }

  
  .pcard__features {
    gap: 0.7rem;
  }

  
  .pricing-trust-badge {
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.5;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  
  .universal-features-banner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
  }

  
  .pcard-agency {
    padding: 2rem 1.5rem;
    gap: 1.75rem;
    margin-top: 1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .pcard-agency__title {
    font-size: 1.4rem;
  }

  .pcard-agency__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    max-width: none;
  }
}


.hero-minicards-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
  z-index: 20;
  flex-wrap: wrap;
}

.hero-minicard {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text-heading);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  cursor: pointer;
  min-width: 200px;
}

.hero-minicard:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.6);
}

.mc-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  position: relative;
  width: 100%;
}

.mc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 0.25rem;
}

.mc-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-mono);
}

.mc-price-original {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  opacity: 0.8;
}

.mc-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.4;
  color: var(--color-accent);
}

.hero-minicard:hover .mc-arrow {
  opacity: 1;
  transform: translateX(4px);
}


.mc-featured {
  border-color: rgba(var(--color-accent-rgb, 200, 200, 200), 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.mc-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-inverted);
  color: var(--color-text-on-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.75rem;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.mc-badge-subtle {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: var(--font-mono);
}

.mc-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: rotateGlow 8s linear infinite;
  z-index: 1;
}

.mc-featured:hover .mc-glow {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .hero-minicards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-minicard {
    width: calc(50% - 0.375rem);
    max-width: none;
    min-width: 0;
    padding: 1.25rem 0.85rem 1rem;
    box-sizing: border-box;
  }

  .mc-content {
    margin-top: 0.5rem;
  }

  .mc-title {
    font-size: 0.9rem;
  }

  .mc-price {
    font-size: 1.1rem;
    flex-wrap: wrap;
    row-gap: 0.15rem;
    gap: 0.3rem;
  }

  .mc-price-original {
    font-size: 0.7rem;
  }

  .mc-arrow {
    font-size: 1rem;
  }
}


@media (max-width: 600px) {

  
  .section-pricing .pcard-grid,
  .section-pricing .pcard-agency {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  
  .pcard {
    padding: 1.5rem 1.1rem;
  }

  
  .pcard__price {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  
  .pcard__cta {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  
  .pcard-agency {
    padding: 1.5rem 1.1rem;
    gap: 1.5rem;
  }

  
  .pcard__cta--light {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }

  
  .pcard-agency__list {
    grid-template-columns: 1fr;
  }

  
  .section-pricing .section-title {
    font-size: 1.75rem;
  }
}



.section-audience {
  padding: 8rem 0;
}

.who-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.who-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.who-accordion {
  display: flex;
  flex-direction: column;
  overflow-anchor: none;
}

.who-item {
  border: none;
}

.who-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 0;
  cursor: pointer;
  list-style: none;
}

.who-item__summary::-webkit-details-marker {
  display: none;
}

.who-item__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-border);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .who-item__title {
    font-size: 2.75rem;
  }
}

.who-item[open] .who-item__title {
  color: var(--color-text-heading);
}

.who-item__summary:hover .who-item__title {
  color: var(--color-accent);
}

.who-item__toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.who-item__toggle::before,
.who-item__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-text-heading);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.who-item__toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.who-item__toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.who-item[open] .who-item__toggle {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.who-item[open] .who-item__toggle::before,
.who-item[open] .who-item__toggle::after {
  background-color: var(--color-text-on-accent);
}

.who-item[open] .who-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.who-item__collapse {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease, visibility 0s linear 0.6s;
}

.who-item[open] .who-item__collapse {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.who-item__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 0;
  transition: padding-bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 0;
}

.who-item[open] .who-item__body {
  padding-bottom: 3rem;
}

@media (min-width: 900px) {
  .who-item__body {
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }
}

.who-item__lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.who-item__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 46ch;
}

.who-item__link {
  font-weight: 600;
  color: var(--color-text-heading);
  text-decoration: none;
}

.who-item__link:hover {
  color: var(--color-accent);
}

.who-item__visual {
  position: relative;
  background-color: var(--color-surface);
  border: 1px solid rgba(255, 122, 34, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(255, 122, 34, 0.03);
}

.who-item__visual-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.who-item__visual-stat {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 1.25rem;
}

.who-item__visual-stat strong {
  color: var(--color-accent);
  font-family: var(--font-mono);
}


.who-roster__avatars {
  display: flex;
  margin-bottom: 1.25rem;
}

.who-roster__avatars img,
.who-roster__avatars .avatar-count {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  margin-left: -12px;
  background-color: var(--color-bg-subtle);
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.who-roster__avatars img:first-child {
  margin-left: 0;
}

.who-roster__avatars .avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
}

.who-roster__stat {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-heading);
}

.who-roster__stat strong {
  color: var(--color-accent);
  font-family: var(--font-mono);
}


.who-timeline {
  position: relative;
  margin-top: 1.5rem;
}

.who-timeline__track {
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  height: 4px;
  background-color: var(--color-border);
  border-radius: 9999px;
  z-index: 0;
}

.who-timeline__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--color-accent), #ffb37a);
  border-radius: inherit;
}

.who-timeline__points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.who-timeline__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.who-timeline__point::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 2px solid var(--color-surface);
  box-shadow: 0 0 0 1px var(--color-accent);
  position: relative;
  z-index: 2;
}

.who-timeline__point--active {
  color: var(--color-accent);
  font-weight: 700;
}

.who-timeline__point--active::before {
  box-shadow: 0 0 0 5px rgba(255, 122, 34, 0.2);
  animation: who-timeline-pulse 1.8s ease-in-out infinite;
}

@keyframes who-timeline-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}


.who-portfolio {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.who-portfolio li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
}

.who-portfolio__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.who-portfolio__dot--active {
  background-color: var(--color-accent);
}

.who-portfolio__dot--done {
  background-color: var(--color-success);
}

.who-portfolio__name {
  flex: 1;
  font-weight: 600;
  color: var(--color-text-heading);
}

.who-portfolio__day {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


.who-scan {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.who-scan li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--color-text-body);
}

.who-scan__badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(16, 185, 129, 0.12);
  color: #0d9463;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
}

@media (prefers-reduced-motion: reduce) {

  .who-item__title,
  .who-item__toggle,
  .who-item__toggle::before,
  .who-item__toggle::after,
  .who-item__collapse,
  .who-timeline__point--active::before {
    transition: none !important;
    animation: none !important;
  }
}


.saas-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 154, 68, 0.08);
  border: 1px solid rgba(255, 154, 68, 0.25);
  border-radius: 9999px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 12px rgba(255, 154, 68, 0.1);
}



.who-item[open].closing .who-item__collapse {
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease, visibility 0s linear 0.6s;
}

.who-item[open].closing .who-item__toggle::after {
  transform: translate(-50%, -50%);
}

.who-item[open].closing .who-item__toggle {
  background-color: transparent;
  border-color: var(--color-border);
}

.who-item[open].closing .who-item__toggle::before,
.who-item[open].closing .who-item__toggle::after {
  background-color: var(--color-text-heading);
}

.who-item[open].closing .who-item__title {
  color: var(--color-border);
}


.who-item[open].closing .who-item__body {
  padding-bottom: 0;
}





.section-faq {
  position: relative;
  padding: 6rem 0 5rem;
  background-color: var(--color-canvas);
  overflow: hidden;
}


.faq-bg-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 122, 34, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.section-faq .faq-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3.5rem;
}


.faq-heading-accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--color-accent) 0%, #ff9d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}


.faqc {
  background-color: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    transform 0.25s var(--transition-spring),
    box-shadow 0.25s var(--transition-spring),
    border-color 0.25s ease;

  
  opacity: 0;
  transform: translateY(16px);
}


.faqc.faqc--visible {
  animation: faqc-enter 0.45s cubic-bezier(0.25, 1, 0.5, 1) var(--faqc-delay, 0ms) both;
}

@keyframes faqc-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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


.faqc:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.07),
    0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 122, 34, 0.2);
}


.faqc[open] {
  border-color: rgba(255, 122, 34, 0.45);
  box-shadow:
    0 0 0 3px rgba(255, 122, 34, 0.08),
    0 8px 32px rgba(255, 122, 34, 0.08);
  transform: none;
}

.faqc.closing {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.faqc__summary {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.4rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faqc__summary::-webkit-details-marker {
  display: none;
}

.faqc__summary:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  border-radius: 16px;
}


.faqc__index {
  flex-shrink: 0;
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  line-height: 1;
  margin-top: 0.375rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.faqc[open] .faqc__index {
  opacity: 1;
}


.faqc__question {
  flex: 1;
  min-width: 0;
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-text-heading);
  transition: color 0.2s ease;
}

.faqc[open] .faqc__question {
  color: var(--color-accent);
}


.faqc__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.25s var(--transition-spring);
  margin-top: 0.05rem;
}

.faqc__toggle:hover {
  background-color: rgba(255, 122, 34, 0.08);
  color: var(--color-accent);
}

.faqc[open] .faqc__toggle {
  background-color: rgba(255, 122, 34, 0.1);
  color: var(--color-accent);
}


.faqc__icon-plus {
  display: block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.faqc__icon-minus {
  display: none;
  transition: opacity 0.15s ease;
}

.faqc[open] .faqc__icon-plus {
  display: none;
}

.faqc[open] .faqc__icon-minus {
  display: block;
}


.faqc__collapse {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    visibility 0s linear 0.45s;
}

.faqc[open] .faqc__collapse {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease 0.05s;
}


.faqc.closing .faqc__collapse {
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    visibility 0s linear 0.45s;
}

.faqc__body {
  overflow: hidden;
  min-height: 0;
}

.faqc__body p {
  margin: 0;
  padding: 0 1.4rem 1.4rem 3.15rem;
  
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--color-text-body);
}


.faq-cta {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 2rem;
  text-align: center;
}

.faq-cta__inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.faq-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-heading);
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-accent);
  padding-bottom: 1px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.faq-cta__link:hover {
  color: var(--color-accent);
  gap: 0.65rem;
}


@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  
  .section-faq .faq-header {
    margin-bottom: 2rem;
  }

  
  .faqc__body p {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  
  .faq-cta__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .section-faq {
    padding: 3.5rem 0 3rem;
  }

  
  .faqc__summary {
    padding: 1rem 1rem;
    gap: 0.75rem;
    
    min-height: 44px;
    align-items: center;
  }

  
  .faqc__question {
    font-size: 0.9rem;
  }

  
  .faqc__toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  
  .faqc__body p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
  }

  
  .faqc__index {
    font-size: 0.6rem;
    margin-top: 0.25rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .faqc {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faqc.faqc--visible {
    animation: none;
  }

  .faqc__collapse,
  .faqc[open] .faqc__collapse,
  .faqc.closing .faqc__collapse {
    transition: none;
  }

  .faqc__toggle {
    transition: none;
  }
}


.pricing-cta-final {
  padding: 2rem 0 6rem;
  background: var(--color-canvas);
}

.pricing-cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--color-inverted);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  flex-wrap: wrap;
}

.pricing-cta-final__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.pricing-cta-final__content p {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 480px;
  line-height: 1.65;
}

.pricing-cta-final__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .pricing-cta-final__inner {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-cta-final__actions {
    width: 100%;
  }

  .pricing-cta-final__actions .btn {
    flex: 1;
    text-align: center;
  }
}