.accounts-main {
  overflow: hidden;
}

.accounts-hero,
.accounts-process,
.accounts-benefits,
.accounts-contract,
.accounts-cta-panel {
  width: min(1420px, calc(100% - 120px));
  margin: 0 auto;
}

.accounts-hero {
  padding: 56px 0 64px;
  display: grid;
  grid-template-columns: minmax(520px, 0.86fr) minmax(600px, 1fr);
  gap: 66px;
  align-items: center;
}

.accounts-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--fdv-orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accounts-kicker i {
  width: 54px;
  height: 2px;
  display: inline-block;
  background: var(--fdv-orange-light);
}

.accounts-title {
  max-width: 690px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.98;
}

.accounts-title span {
  display: block;
  color: var(--fdv-orange);
}

.accounts-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--fdv-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

/* Rotate the account benefits through one focused spotlight. */
.accounts-feature-list {
  position: relative;
  width: min(100%, 520px);
  min-height: 94px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.accounts-feature-item {
  position: absolute;
  inset: 0;
  min-height: 94px;
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  padding: 18px 20px 18px 17px;
  overflow: hidden;
  border: 1px solid rgba(4, 20, 46, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(4, 20, 46, 0.07);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 300ms ease,
    transform 300ms ease,
    visibility 300ms ease;
}

.accounts-feature-item > span {
  max-width: none;
}

.accounts-feature-bar {
  width: 5px;
  height: 58px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9a45 0%, var(--fdv-orange) 100%);
  transform: scaleY(0.18);
  transform-origin: center bottom;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms ease;
}

.accounts-feature-item-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.accounts-feature-item-active .accounts-feature-bar {
  transform: scaleY(1);
  box-shadow: 0 0 14px rgba(253, 99, 0, 0.28);
  animation: accountsFeatureBarGlow 3400ms ease-in-out infinite;
}

@keyframes accountsFeatureBarGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(253, 99, 0, 0.2);
  }

  48% {
    box-shadow: 0 0 22px rgba(253, 99, 0, 0.48);
  }
}

.accounts-feature-copy {
  width: auto;
  min-width: 0;
  max-width: none;
  display: grid;
  gap: 5px;
}

.accounts-feature-label {
  color: var(--fdv-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.accounts-feature-text {
  color: var(--fdv-navy-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.accounts-feature-index {
  align-self: end;
  color: var(--fdv-navy-text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.accounts-feature-index small {
  color: rgba(4, 20, 46, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.accounts-feature-list.is-paused .accounts-feature-bar {
  animation-play-state: paused;
}

@media (min-width: 1000px) and (max-width: 1349px) {
  .accounts-feature-list {
    width: min(100%, 490px);
    margin-top: 38px;
  }

  .accounts-feature-item {
    min-height: 88px;
    padding-right: 16px;
  }

  .accounts-feature-text {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .accounts-feature-list {
    width: min(100%, 720px);
    min-height: 86px;
    margin-top: 30px;
  }

  .accounts-feature-item {
    min-height: 86px;
    padding: 16px 18px 16px 15px;
  }

  .accounts-feature-text {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .accounts-feature-list {
    width: 100%;
    min-height: 82px;
    margin-top: 28px;
  }

  .accounts-feature-item {
    min-height: 82px;
    grid-template-columns: 4px minmax(0, 1fr) auto;
    column-gap: 13px;
    padding: 15px 15px 15px 13px;
    border-radius: 12px;
  }

  .accounts-feature-bar {
    width: 4px;
    height: 48px;
  }

  .accounts-feature-label {
    font-size: 8px;
  }

  .accounts-feature-text {
    font-size: 15px;
  }

  .accounts-feature-index {
    font-size: 16px;
  }

  .accounts-feature-index small {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accounts-feature-item,
  .accounts-feature-bar {
    transition: none;
    animation: none;
  }
}

.accounts-hero-media {
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--fdv-white);
  box-shadow: 0 24px 54px rgba(4, 20, 46, 0.14);
}

.accounts-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.accounts-hero-media:hover img {
  transform: scale(1.035);
}

.accounts-process {
  padding: 0 0 62px;
}

.accounts-section-head {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.accounts-section-head h2 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
}

.accounts-section-head h2::after {
  width: 36px;
  height: 2px;
  margin: 16px auto 0;
  display: block;
  background: var(--fdv-orange);
  content: "";
}

.accounts-section-head p {
  margin: 16px 0 0;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 500;
}

.accounts-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 42px 34px 30px;
  border: 1px solid rgba(4, 20, 46, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(4, 20, 46, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.process-card:hover {
  border-color: rgba(253, 99, 0, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 38px rgba(4, 20, 46, 0.11);
  transform: translateY(-5px);
}

.process-card:not(:last-child)::after {
  position: absolute;
  right: -32px;
  top: 50%;
  color: var(--fdv-navy-text);
  font-size: 32px;
  content: ">";
  transform: translateY(-50%);
}

.process-card > span {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fdv-orange);
  color: var(--fdv-white);
  font-size: 15px;
  font-weight: 800;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.process-card:hover > span {
  box-shadow: 0 10px 18px rgba(253, 99, 0, 0.26);
  transform: scale(1.08);
}

.process-card h3 {
  margin: 34px 0 14px;
  color: var(--fdv-navy-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.process-card p {
  margin: 0;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.process-card a {
  margin-top: 16px;
  display: inline-flex;
  color: var(--fdv-orange);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.process-card:nth-child(3) > a[href^="mailto:"] {
  font-size: 11.2px;
}

.process-card a:hover,
.process-card a:focus-visible {
  color: var(--fdv-navy-text);
  transform: translateX(4px);
}

.accounts-benefits {
  padding: 0 0 64px;
}

.benefits-mosaic {
  display: grid;
  grid-template-columns: 1.08fr 1.42fr 1.18fr 1.18fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(4, 20, 46, 0.07);
}

.benefit-block,
.channels-card {
  background: rgba(255, 255, 255, 0.78);
}

.benefit-dark {
  padding: 48px;
  display: flex;
  align-items: center;
  background: var(--fdv-navy-nav);
}

.benefit-dark h3,
.benefit-block h3 {
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.04;
}

.benefit-dark h3 {
  color: var(--fdv-white);
}

.benefit-dark span,
.benefit-block h3 span {
  display: block;
  color: var(--fdv-orange);
}

.benefit-text {
  padding: 48px 54px;
  display: flex;
  align-items: center;
}

.benefit-text p,
.benefit-block p {
  margin: 0;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

.benefit-text p {
  max-width: 390px;
  padding-left: 28px;
  border-left: 2px solid var(--fdv-orange);
}

.benefit-image {
  margin: 0;
  overflow: hidden;
  background: var(--fdv-white);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.benefit-image:hover img {
  transform: scale(1.04);
}

.benefit-month {
  grid-column: span 2;
}

.benefit-invoice {
  grid-column: span 2;
}

.benefit-invoice-copy,
.benefit-attendance-copy,
.benefit-channels {
  padding: 48px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-invoice-copy {
  grid-column: span 2;
}

.benefit-invoice-copy p,
.benefit-attendance-copy p,
.benefit-channels p {
  max-width: 420px;
  margin-top: 18px;
}

.benefit-channels {
  grid-column: span 1;
}

.channels-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(4, 20, 46, 0.09);
}

.channels-card a {
  min-height: 170px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(4, 20, 46, 0.09);
  text-align: center;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.channels-card a:hover,
.channels-card a:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 -3px 0 var(--fdv-orange);
  transform: translateY(-3px);
}

.channels-card svg,
.contract-question svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channels-card svg {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  background: #f5ede3;
  color: var(--fdv-navy-text);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.channels-card a:hover svg,
.channels-card a:focus-visible svg {
  background: var(--fdv-orange);
  color: var(--fdv-white);
  transform: translateY(-2px);
}

.channels-card strong {
  margin-top: 8px;
  color: var(--fdv-navy-text);
  font-size: 16px;
  font-weight: 800;
}

.channels-card span {
  color: var(--fdv-muted);
  font-size: 14px;
  font-weight: 500;
}

.benefit-attendance {
  grid-column: span 2;
}

.benefit-attendance-copy {
  grid-column: span 2;
}

.accounts-contract {
  padding: 0 0 40px;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.contract-copy h2 {
  max-width: 350px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.contract-copy i {
  width: 36px;
  height: 2px;
  margin: 20px 0;
  display: block;
  background: var(--fdv-orange);
}

.contract-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.contract-accordion {
  display: grid;
  gap: 10px;
}

.contract-item {
  overflow: hidden;
  border: 1px solid rgba(4, 20, 46, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contract-item:hover,
.contract-item.is-open {
  border-color: rgba(253, 99, 0, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(4, 20, 46, 0.06);
}

.contract-question {
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--fdv-navy-text);
  cursor: pointer;
  text-align: left;
}

.contract-question span {
  font-size: 16px;
  font-weight: 800;
}

.contract-question svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.contract-item.is-open .contract-question {
  color: var(--fdv-orange);
}

.contract-item.is-open .contract-question svg {
  transform: rotate(180deg);
}

.contract-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.contract-answer-inner {
  padding: 0 24px 22px;
}

.contract-answer-inner p {
  margin: 0;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.contract-answer-inner p + p,
.contract-answer-inner ul + p {
  margin-top: 12px;
}

.contract-answer-inner ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.contract-answer-inner li + li {
  margin-top: 6px;
}

.accounts-cta-panel {
  margin-bottom: 84px;
  padding: 38px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(253, 99, 0, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 34px rgba(4, 20, 46, 0.06);
}

.accounts-cta-panel h2 {
  max-width: 540px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
}

.accounts-cta-panel p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.accounts-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.accounts-whatsapp {
  width: min(420px, 100%);
  min-height: 64px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--fdv-orange);
  color: var(--fdv-white);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(253, 99, 0, 0.22);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.accounts-whatsapp:hover,
.accounts-whatsapp:focus-visible {
  background: var(--fdv-navy-text);
  box-shadow: 0 18px 30px rgba(4, 20, 46, 0.2);
  transform: translateY(-3px);
}

.accounts-cta-actions span {
  color: var(--fdv-muted);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 1000px) {
  .accounts-hero,
  .accounts-process,
  .accounts-benefits,
  .accounts-contract,
  .accounts-cta-panel {
    width: min(1120px, calc(100% - 64px));
  }

  .accounts-hero {
    padding: 50px 0 58px;
    grid-template-columns: minmax(410px, 0.9fr) minmax(420px, 1fr);
    gap: 44px;
  }

  .accounts-title {
    font-size: clamp(50px, 4.15vw, 60px);
  }

  .accounts-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .accounts-hero-media,
  .accounts-hero-media img {
    min-height: 410px;
  }

  .accounts-process-grid {
    gap: 28px;
  }

  .process-card {
    min-height: 200px;
    padding: 36px 26px 28px;
  }

  .process-card:not(:last-child)::after {
    right: -22px;
    font-size: 26px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-card p {
    font-size: 13.5px;
  }

  .benefits-mosaic {
    grid-auto-rows: minmax(150px, auto);
  }

  .benefit-dark,
  .benefit-text,
  .benefit-invoice-copy,
  .benefit-attendance-copy,
  .benefit-channels {
    padding: 36px 38px;
  }

  .benefit-dark h3,
  .benefit-block h3 {
    font-size: 28px;
  }

  .benefit-text p,
  .benefit-block p {
    font-size: 14.5px;
  }

  .channels-card a {
    min-height: 150px;
  }

  .accounts-contract {
    gap: 42px;
  }

  .contract-copy h2 {
    font-size: 31px;
  }

  .contract-copy p,
  .contract-answer-inner p,
  .contract-answer-inner ul {
    font-size: 14px;
  }

  .accounts-cta-panel {
    margin-bottom: 74px;
    padding: 32px 42px;
    gap: 28px;
  }

  .accounts-cta-panel h2 {
    font-size: 30px;
  }

  .accounts-cta-panel p {
    font-size: 15px;
  }

  .accounts-whatsapp {
    min-height: 58px;
    font-size: 16px;
  }
}

@media (min-width: 1000px) and (max-width: 1100px) {
  .process-card:nth-child(3) > a[href^="mailto:"] {
    font-size: 10px;
  }
}
