.brand-page {
  background:
    radial-gradient(circle at top right, rgba(4, 65, 246, 0.24), transparent 24%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.06), transparent 28%),
    var(--color-black);
  min-height: 100vh;
}

.brand-main {
  padding-top: 20px;
  padding-bottom: 110px;
}

.brand-shell {
  max-width: min(1720px, calc(100vw - 28px));
  padding: 0 26px;
}

.brand-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #0f172a 0%, #111827 55%, #1f2937 100%);
  min-height: 78vh;
  padding: 54px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.brand-hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -30% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 65, 246, 0.3), transparent 65%);
  pointer-events: none;
}

.brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 80% 30%, rgba(4, 65, 246, 0.2), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 150px);
  pointer-events: none;
}

.brand-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
  gap: 40px;
  align-items: center;
  min-height: calc(78vh - 108px);
}

.brand-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.brand-title {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.brand-title span {
  display: block;
  color: #0441f6;
}

.brand-lead {
  max-width: 720px;
  color: var(--color-gray-300);
  font-size: 1.08rem;
  line-height: 1.8;
}

.brand-disclaimer {
  margin-top: 16px;
  max-width: 700px;
  color: var(--color-gray-500);
  font-size: 0.95rem;
}

.brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.brand-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.brand-stat {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.2rem;
}

.brand-stat span {
  color: var(--color-gray-300);
  font-size: 0.95rem;
  line-height: 1.55;
}

.btn-brand-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-brand-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 65, 246, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.brand-badge-panel {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(4, 65, 246, 0.24), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-badge-panel__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 180px;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(2, 6, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff7ed;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(2, 6, 23, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-media__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #e5e7eb;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

.brand-media.is-missing .brand-media__placeholder {
  display: flex;
}

.brand-media--hero {
  margin-top: 24px;
  min-height: 260px;
}

.brand-media--line {
  height: 220px;
  margin-bottom: 22px;
  padding: 14px;
}

.brand-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.brand-media-pair .brand-media--line {
  margin-bottom: 0;
}

.brand-media--gallery {
  min-height: 320px;
}

.brand-badge-panel p {
  margin: 22px 0 0;
  color: #e5e7eb;
  line-height: 1.7;
  max-width: 34ch;
}

.brand-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.brand-band__item {
  padding: 30px 28px;
  min-height: 220px;
  position: relative;
}

.brand-band__item + .brand-band__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-band__label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7ea2ff;
}

.brand-band__item h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
}

.brand-band__item p {
  color: var(--color-gray-300);
  line-height: 1.75;
}

.brand-section {
  margin-top: 34px;
  padding: 44px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-section--showcase {
  background:
    linear-gradient(180deg, rgba(4, 65, 246, 0.1), rgba(15, 23, 42, 0.7)),
    rgba(15, 23, 42, 0.58);
}

.brand-section--tech {
  background:
    radial-gradient(circle at top right, rgba(13, 62, 214, 0.18), transparent 30%),
    rgba(15, 23, 42, 0.58);
}

.brand-section--faq {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(15, 23, 42, 0.58);
}

.brand-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 14ch;
}

.brand-heading--wide {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}

@media (max-width: 768px) {
  .brand-heading--wide {
    white-space: normal;
  }
}

.brand-section > p {
  color: var(--color-gray-300);
  line-height: 1.8;
  max-width: 82ch;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.brand-card {
  grid-column: span 3;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.brand-card--line {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
}

.brand-card--line::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 74px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.brand-card--line::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
}

.brand-card--line-xt {
  grid-column: span 6;
  background: linear-gradient(160deg, rgba(4, 65, 246, 0.28), rgba(15, 23, 42, 0.82));
}

.brand-card--line-rt {
  grid-column: span 6;
  background: linear-gradient(160deg, rgba(2, 30, 120, 0.36), rgba(15, 23, 42, 0.84));
}

.brand-card--line-uhp {
  grid-column: span 6;
  background: linear-gradient(160deg, rgba(4, 65, 246, 0.22), rgba(15, 23, 42, 0.8));
}

.brand-card--line-hp {
  grid-column: span 6;
  background: linear-gradient(160deg, rgba(114, 142, 224, 0.24), rgba(15, 23, 42, 0.8));
}

.brand-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.brand-grid--tech .brand-card {
  grid-column: span 4;
}

.brand-card p,
.brand-card li,
.brand-faq__item p {
  color: var(--color-gray-300);
  line-height: 1.75;
}

.brand-list {
  margin: 0;
  padding-left: 18px;
}

.brand-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.brand-steps,
.brand-notes {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-steps ol {
  margin: 0;
  padding-left: 20px;
}

.brand-steps li,
.brand-notes li {
  margin-bottom: 12px;
  color: var(--color-gray-300);
  line-height: 1.75;
}

.brand-faq {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.brand-faq__item {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-faq__item h3 {
  margin-bottom: 8px;
}

.brand-cta {
  margin-top: 34px;
  padding: 48px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0441f6 0%, #021b73 100%);
  color: #ffffff;
}

.brand-cta h2,
.brand-cta p {
  color: inherit;
}

.brand-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.brand-cta .btn-ver-todos {
  background: #ffffff;
  color: #0441f6;
}

.brand-cta .btn-brand-secondary {
  border-color: rgba(255, 255, 255, 0.65);
}

.brand-backlink {
  margin-top: 22px;
  display: inline-flex;
  color: var(--color-gray-400);
  text-decoration: none;
}

.brand-backlink:hover {
  color: var(--color-white);
}

body[data-theme="light"] .brand-page {
  background:
    radial-gradient(circle at top right, rgba(4, 65, 246, 0.12), transparent 26%),
    radial-gradient(circle at left center, rgba(53, 99, 234, 0.09), transparent 30%),
    #f6f9ff;
}

body[data-theme="light"] .brand-hero {
  border-color: rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 255, 0.92)),
    linear-gradient(135deg, #ffffff 0%, #f6f9ff 55%, #edf4ff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

body[data-theme="light"] .brand-hero::before {
  background:
    linear-gradient(120deg, rgba(53, 99, 234, 0.06), transparent 38%),
    radial-gradient(circle at 80% 30%, rgba(4, 65, 246, 0.14), transparent 28%),
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0 1px, transparent 1px 150px);
}

body[data-theme="light"] .brand-eyebrow {
  background: rgba(53, 99, 234, 0.08);
  color: #1841c8;
}

body[data-theme="light"] .brand-title,
body[data-theme="light"] .brand-band__item h3,
body[data-theme="light"] .brand-card h3,
body[data-theme="light"] .brand-section h2,
body[data-theme="light"] .brand-faq__item h3 {
  color: #0f172a;
}

body[data-theme="light"] .brand-lead,
body[data-theme="light"] .brand-band__item p,
body[data-theme="light"] .brand-card p,
body[data-theme="light"] .brand-card li,
body[data-theme="light"] .brand-section > p,
body[data-theme="light"] .brand-steps li,
body[data-theme="light"] .brand-notes li,
body[data-theme="light"] .brand-faq__item p,
body[data-theme="light"] .brand-stat span {
  color: #4b5563;
}

body[data-theme="light"] .brand-disclaimer,
body[data-theme="light"] .brand-backlink {
  color: #64748b;
}

body[data-theme="light"] .brand-stat {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: none;
}

body[data-theme="light"] .brand-stat strong {
  color: #0f172a;
}

body[data-theme="light"] .btn-brand-secondary {
  border-color: rgba(148, 163, 184, 0.28);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .btn-brand-secondary:hover {
  border-color: rgba(53, 99, 234, 0.35);
  background: rgba(53, 99, 234, 0.06);
  color: #1841c8;
}

body[data-theme="light"] .brand-badge-panel {
  background: linear-gradient(160deg, rgba(4, 65, 246, 0.12), rgba(255, 255, 255, 0.92));
  border-color: rgba(148, 163, 184, 0.22);
}

body[data-theme="light"] .brand-badge-panel__mark {
  background:
    linear-gradient(145deg, rgba(4, 65, 246, 0.92), rgba(2, 27, 115, 0.96)),
    #021b73;
  border-color: rgba(4, 65, 246, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body[data-theme="light"] .brand-badge-panel p,
body[data-theme="light"] .brand-media__placeholder {
  color: #475569;
}

body[data-theme="light"] .brand-media {
  border-color: rgba(148, 163, 184, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 255, 0.96)),
    #ffffff;
}

body[data-theme="light"] .brand-media--hero {
  border-color: rgba(4, 65, 246, 0.26);
  background:
    radial-gradient(circle at top, rgba(126, 162, 255, 0.22), transparent 55%),
    linear-gradient(145deg, rgba(4, 65, 246, 0.95), rgba(2, 27, 115, 0.98)),
    #021b73;
}

body[data-theme="light"] .brand-media--hero img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

body[data-theme="light"] .brand-media--hero .brand-media__placeholder {
  color: #e8efff;
}

body[data-theme="light"] .brand-band {
  border-color: rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(247,250,255,0.92));
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

body[data-theme="light"] .brand-band__item + .brand-band__item {
  border-left-color: rgba(148, 163, 184, 0.16);
}

body[data-theme="light"] .brand-band__label {
  color: #0441f6;
}

body[data-theme="light"] .brand-section {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

body[data-theme="light"] .brand-section--showcase {
  background:
    linear-gradient(180deg, rgba(4, 65, 246, 0.06), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .brand-section--tech {
  background:
    radial-gradient(circle at top right, rgba(53, 99, 234, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .brand-section--faq {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,247,255,0.96)),
    rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .brand-card,
body[data-theme="light"] .brand-steps,
body[data-theme="light"] .brand-notes,
body[data-theme="light"] .brand-faq__item {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: none;
}

body[data-theme="light"] .brand-card--line::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
}

body[data-theme="light"] .brand-card--line::after {
  background: radial-gradient(circle, rgba(255,255,255,0.42), transparent 68%);
}

body[data-theme="light"] .brand-card--line-xt {
  background: linear-gradient(160deg, rgba(224, 232, 255, 0.96), rgba(255, 255, 255, 0.98));
}

body[data-theme="light"] .brand-card--line-rt {
  background: linear-gradient(160deg, rgba(214, 226, 255, 0.96), rgba(255, 255, 255, 0.98));
}

body[data-theme="light"] .brand-card--line-uhp {
  background: linear-gradient(160deg, rgba(219, 234, 254, 0.98), rgba(255, 255, 255, 0.98));
}

body[data-theme="light"] .brand-card--line-hp {
  background: linear-gradient(160deg, rgba(239, 243, 255, 0.98), rgba(255, 255, 255, 0.98));
}

body[data-theme="light"] .brand-cta {
  box-shadow: 0 18px 34px rgba(4, 65, 246, 0.16);
}

body[data-theme="light"] .brand-cta .btn-brand-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

body[data-theme="light"] .brand-cta .btn-brand-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

body[data-theme="light"] .brand-backlink:hover {
  color: #1841c8;
}

@media (max-width: 1024px) {
  .brand-hero__grid,
  .brand-split {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    min-height: auto;
  }

  .brand-hero__grid {
    min-height: 0;
  }

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

  .brand-card,
  .brand-grid--tech .brand-card,
  .brand-card--line-xt,
  .brand-card--line-rt,
  .brand-card--line-uhp,
  .brand-card--line-hp {
    grid-column: span 1;
  }

  .brand-band {
    grid-template-columns: 1fr;
  }

  .brand-gallery {
    grid-template-columns: 1fr;
  }

  .brand-media-pair {
    grid-template-columns: 1fr;
  }

  .brand-band__item + .brand-band__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body[data-theme="light"] .brand-band__item + .brand-band__item {
    border-top-color: rgba(148, 163, 184, 0.16);
  }

  .brand-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-main {
    padding-top: 14px;
    padding-bottom: 70px;
  }

  .brand-shell {
    max-width: calc(100vw - 16px);
    padding: 0 10px;
  }

  .brand-hero,
  .brand-section,
  .brand-cta {
    padding: 24px;
    border-radius: 20px;
  }

  .brand-title {
    font-size: 2.7rem;
  }

  .brand-badge-panel__mark {
    min-width: 100%;
    min-height: 140px;
  }

  .brand-hero__actions,
  .brand-cta__actions {
    flex-direction: column;
  }

  .brand-hero__actions a,
  .brand-cta__actions a {
    width: 100%;
  }

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

  .brand-card,
  .brand-grid--tech .brand-card,
  .brand-card--line-xt,
  .brand-card--line-rt,
  .brand-card--line-uhp,
  .brand-card--line-hp {
    grid-column: span 1;
  }

  .brand-band__item {
    min-height: 0;
    padding: 24px;
  }
}
