.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;
}

.accounts-hero-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.accounts-hero-points article {
  min-height: 118px;
  padding: 24px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(4, 20, 46, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  box-shadow: 0 12px 26px rgba(4, 20, 46, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.accounts-hero-points article:hover {
  border-color: rgba(253, 99, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(4, 20, 46, 0.1);
  transform: translateY(-4px);
}

.accounts-hero-points strong,
.accounts-hero-points span {
  color: var(--fdv-navy-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
}

.accounts-hero-points article::after {
  width: 28px;
  height: 2px;
  margin: 14px auto 0;
  display: block;
  background: var(--fdv-orange);
  content: "";
}

.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 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) and (max-width: 1500px) {
  .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-points {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .accounts-hero-points article {
    min-height: 96px;
    padding: 18px 14px 14px;
  }

  .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: 1179px) {
  .accounts-hero {
    width: min(840px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr);
  }

  .accounts-hero-media {
    width: min(760px, 100%);
  }

  .accounts-process,
  .accounts-benefits,
  .accounts-contract,
  .accounts-cta-panel {
    width: min(840px, calc(100% - 64px));
  }

  .accounts-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .benefits-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-dark,
  .benefit-text,
  .benefit-image,
  .benefit-month,
  .benefit-invoice,
  .benefit-invoice-copy,
  .benefit-attendance,
  .benefit-attendance-copy,
  .benefit-channels,
  .channels-card {
    grid-column: span 1;
  }

  .benefit-text p {
    max-width: none;
  }

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

  .channels-card a {
    min-height: 132px;
    border-top: 1px solid rgba(4, 20, 46, 0.09);
    border-right: 0;
  }

  .accounts-contract {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .contract-copy h2,
  .contract-copy p {
    max-width: 620px;
  }

  .accounts-cta-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}
