.section-hero { padding-top: 48px; }
.container-heroInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.heroTitle {
  max-width: 16ch;
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1F2933;
}
.heroSubtitle {
  max-width: 62ch;
  color: #4B5563;
  font-size: 1.0625rem;
}
.heroMedia {
  width: 100%;
  max-width: 900px;
  margin: 8px auto 0;
}
.heroImage {
  display: block;
  width: 100%;
  height: auto;
}

.heroDots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 28px;
  width: 100%;
  max-width: 760px;
  margin-top: 24px;
}
.heroCategory {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 92px;
  flex: none;
}
.heroCategoryIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F5F7FB;
  color: #1F2933;
}
.heroCategoryIcon svg { width: 32px; height: 32px; }
.heroCategoryLabel {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1F2933;
}

.problemGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problemItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problemItem .problemImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.problemLabel {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1F2933;
}

.container-solutionInner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.solutionText .sectionSubhead { margin-top: 24px; }

.solutionPanel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutionRow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #F5F7FB;
}
.solutionIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #1F2933;
}
.solutionIcon svg {
  width: 28px;
  height: 28px;
}
.solutionTextBlock {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.solutionStep {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1F2933;
}
.solutionDetail {
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.productVideo {
  max-width: 880px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}
.productVideo iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.howLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: center;
}
.howContent { min-width: 0; }
.howHeader {
  max-width: 620px;
  margin-bottom: 32px;
}
.howList {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
}
.howStep {
  position: relative;
}
.howStep::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 28px;
  width: 3px;
  height: calc(100% - 56px);
  background: #E5E7EB;
}
.howStep::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 28px;
  width: 3px;
  height: calc(100% - 56px);
  background: #E02030;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
.howStep.isActive::after {
  opacity: 1;
  animation: howActiveBar 4s linear forwards;
}
@keyframes howActiveBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .howStep.isActive::after {
    animation: none;
    transform: scaleY(1);
  }
}
.howStepButton {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  background: transparent;
}
.howStep + .howStep {
  border-top: 1px solid #E5E7EB;
}
.howStepContent { min-width: 0; }
.howNumber {
  display: block;
  color: #1F2933;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.howStep.isActive .howNumber { color: #E02030; }
.howStepTitle {
  display: block;
  color: #1F2933;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
}
.howStep.isActive .howStepTitle {
  color: #1F2933;
  font-weight: 800;
}
.howText {
  display: block;
  margin-top: 6px;
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.howStep.isActive .howText { color: #1F2933; }
.howImages {
  display: grid;
  width: 100%;
  align-items: center;
  justify-items: center;
}
.howImagePanel {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.howImagePanel.isActive {
  opacity: 1;
  pointer-events: auto;
}
.howImage {
  width: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 0;
}

.iphone-15 {
  box-sizing: border-box;
  position: relative;
  width: clamp(292px, 29vw, 334px);
  aspect-ratio: 393 / 852;
  margin-inline: auto;
  overflow: visible;
  background: linear-gradient(145deg, #2A2A2F 0%, #07070A 42%, #202026 100%);
  border: 11px solid #050506;
  border-radius: 68px;
  box-shadow:
    0 28px 52px -18px rgba(15, 23, 42, 0.46),
    0 0 0 2px #000000,
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 8px rgba(0, 0, 0, 0.35);
}
.iphone-15::before,
.iphone-15::after {
  content: "";
  position: absolute;
  display: block;
  background: #09090B;
  border-radius: 999px;
}
.iphone-15::before {
  left: -11px;
  top: 108px;
  width: 4px;
  height: 38px;
  box-shadow:
    0 60px 0 #09090B,
    0 116px 0 #09090B;
}
.iphone-15::after {
  right: -11px;
  top: 176px;
  width: 4px;
  height: 74px;
}

.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  pointer-events: none;
}

.screen-scroll {
  --capturaEscala: 108%;

  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin-top: 0;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 50px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    inset 0 -34px 42px rgba(0, 0, 0, 0.10);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.qrScreen { --capturaEscala: 110%; }
.screen-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.screen-scroll .howImage {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--capturaEscala);
  height: var(--capturaEscala);
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 50px;
  transform: translateX(-50%);
}

.home-line {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 4;
  width: 106px;
  height: 4px;
  background: rgba(26, 26, 30, 0.62);
  border-radius: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.benefitsGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 24px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #F5F7FB;
}
.benefitHighlight {
  grid-column: 1;
  grid-row: 1 / span 2;
  gap: 16px;
  padding: 36px;
  background: #1F2933;
}
.eyebrow-benefitIndex { color: #E30613; }
.benefitTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2933;
}
.benefitHighlight .benefitTitle {
  font-size: 1.75rem;
  color: #FFFFFF;
}
.benefitText {
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.benefitHighlight .benefitText {
  color: #E5E7EB;
  font-size: 1.0625rem;
}
.benefitResult {
  margin-top: auto;
  color: #1F2933;
  font-size: 0.9375rem;
  font-weight: 600;
}
.benefitResultLabel {
  color: #E02030;
  font-weight: 700;
}
.benefitHighlight .benefitResult { color: #FFFFFF; }

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}
.audienceCard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  background: #FFFFFF;
}
.audienceSegment {
  text-align: center;
  color: #1F2933;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
.audienceDescription {
  margin-bottom: 8px;
  text-align: center;
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.audienceBlock {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.audienceSubtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.audienceText {
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.audienceBlockValue {
  margin-top: auto;
  padding: 16px;
  background: #F5F7FB;
}
.audienceBlockValue .audienceSubtitle { color: #E02030; }
.audienceBlockValue .audienceText { color: #1F2933; }

.aboutTeam {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin-inline: auto;
}
.aboutCard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #FFFFFF;
}
.aboutName {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1F2933;
}
.aboutDescription {
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}


.section-contact {
  background: #F5F7FB;
}
.contactLayout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 56px;
  align-items: start;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactTitle {
  font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2933;
}
.contactText {
  color: #4B5563;
  font-size: 1.0625rem;
}
.contactInfo .button-primaryButton {
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1F2933;
  border: 1px solid #D1D5DB;
}
.contactInfo .button-primaryButton:hover {
  background: #EEF1F6;
}
.contactBenefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contactBenefit {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  color: #4B5563;
}
.contactBenefit::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #E02030;
  font-weight: 700;
}
.contactNote {
  color: #6B7280;
  font-size: 0.9375rem;
}

.contactForm {
  box-sizing: border-box;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 16px;
}
.contactFormGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fieldWide {
  grid-column: 1 / -1;
}
.contactForm .field label {
  color: #1F2933;
}
.contactForm .field:has(:required) label::after {
  content: "*";
  margin-left: 4px;
  color: #F97316;
  font-weight: 700;
}
.contactForm .field input,
.contactForm .field select,
.contactForm .field textarea {
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: #1F2933;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
}
.contactForm .field input,
.contactForm .field select {
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
}
.contactForm .field textarea {
  height: 150px;
  padding: 14px 16px;
  border-radius: 10px;
  resize: none;
}
.contactForm .field input::placeholder,
.contactForm .field textarea::placeholder {
  color: #9CA3AF;
}
.contactForm .field input:focus,
.contactForm .field select:focus,
.contactForm .field textarea:focus {
  border-color: #1F2933;
}
.contactSend {
  width: 100%;
  min-height: 48px;
  padding: 0 24px;
  margin-top: 4px;
  background: #0D0D0D;
  color: #FFFFFF;
  border-radius: 999px;
}
.contactSend:hover {
  background: #1F2933;
}
.contactDataUse {
  margin-top: 4px;
  color: #6B7280;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.siteFooter {
  padding-block: 80px;
  background: #000000;
  color: #FFFFFF;
}
.container-siteFooterInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.siteFooterBrand {
  display: inline-flex;
  align-items: center;
}
.siteFooterLogo {
  width: 420px;
  max-width: 100%;
  height: auto;
}
.siteFooterBy {
  font-weight: 600;
  color: #E5E7EB;
}
.siteFooterText {
  max-width: 520px;
  color: #9CA3AF;
}
.siteFooterLegal {
  font-size: 0.875rem;
  color: #9CA3AF;
}
