:root {
  --orange: #e87426;
  --orange-hot: #f07d32;
  --orange-deep: #c45e18;
  --ink: #12141a;
  --ink-2: #2c3340;
  --muted: #667085;
  --line: #ece7e0;
  --bg: #fffdf9;
  --white: #ffffff;
  --sand: #f6eee6;
  --peach: #fde6d4;
  --highlight: #f3e07a;
  --ok: #14804a;
  --ok-bg: #e8f7ee;
  --soft: #f4f1ec;
  --shadow: 0 24px 60px rgba(18, 20, 26, 0.1);
  --shadow-sm: 0 8px 24px rgba(18, 20, 26, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;
  --header: 76px;
  --max: 1160px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.shot iframe {
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

#canales,
#caracteristicas,
#precios,
#nosotros,
#faq {
  scroll-margin-top: calc(var(--header) + 16px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 20, 26, 0.04);
  background: rgba(255, 253, 249, 0.94);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 500;
}

.nav a:hover {
  background: var(--sand);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-btn {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 12px 20px 20px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--sand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: var(--pill);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 116, 38, 0.28);
  padding: 14px 22px;
}

.btn-primary:hover {
  background: var(--orange-hot);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 600;
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 22px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 48px 0 0;
  text-align: center;
  overflow: hidden;
}

.hero-top {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: min(520px, 72vw);
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
}

.hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(18, 20, 26, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}

.people-band {
  padding: 8px 0 0;
}

.people-wide {
  margin: 0;
}

.people-wide img {
  width: 100%;
  height: min(320px, 52vw);
  object-fit: cover;
  object-position: center 35%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: min(460px, 80vw);
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--ink-2);
  border-radius: var(--pill);
  padding: 6px 12px 6px 6px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 116, 38, 0.18);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 16ch;
  margin: 0 auto 18px;
}

.mark {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: var(--highlight);
  border-radius: 999px;
  padding: 0.08em 0.32em;
  line-height: 1.2;
  transform: rotate(-1deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 42rem;
  margin: 0 auto 28px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trust {
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.avatars {
  display: flex;
}

.avatars img,
.avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--peach), var(--orange));
}

.avatars img:first-child,
.avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  margin-top: 40px;
  position: relative;
  padding-bottom: 24px;
}

.hero-band {
  height: 140px;
  background: linear-gradient(180deg, #f8d9c2 0%, #f4c9a8 100%);
  border-radius: 32px 32px 0 0;
}

.shot-wrap {
  position: relative;
  width: min(1080px, calc(100% - 24px));
  margin: -170px auto 0;
}

.shot {
  background: #fff;
  border: 1px solid rgba(18, 20, 26, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #f6f4f1;
  border-bottom: 1px solid var(--line);
}

.chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.chrome i:nth-child(1) {
  background: #ff6b6b;
}
.chrome i:nth-child(2) {
  background: #f3c44a;
}
.chrome i:nth-child(3) {
  background: #4caf7a;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

.float {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.float svg {
  width: 24px;
  height: 24px;
}

.float-1 {
  left: 0;
  top: 18%;
  background: var(--highlight);
  color: var(--ink);
}

.float-2 {
  right: 0;
  top: 38%;
  background: var(--ink);
  color: #fff;
}

.float-3 {
  left: 8%;
  bottom: 12%;
  background: #25d366;
  color: #fff;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 32px;
}

.channels {
  background: var(--white);
}

.channel-grid {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(18, 20, 26, 0.02);
}

.channel-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #f1c9a8;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
}

.icon-wa {
  background: #25d366;
}
.icon-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.icon-fb {
  background: #1877f2;
}
.icon-mail {
  background: #ea4335;
}
.icon-phone {
  background: var(--orange);
}
.icon-web {
  background: var(--ink);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.features {
  background: var(--sand);
}

.bento {
  display: grid;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid transparent;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin: 12px 0 8px;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.check {
  color: var(--ok);
  flex-shrink: 0;
  margin-top: 2px;
}

.stats {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing {
  background: var(--bg);
}

.controls {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  justify-items: center;
}

.seg {
  display: inline-flex;
  background: var(--sand);
  padding: 6px;
  border-radius: var(--pill);
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.seg button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  border-radius: var(--pill);
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-2);
}

.seg button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.seg.range button.is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(232, 116, 38, 0.25);
}

.billing-note {
  font-size: 0.88rem;
  color: var(--ok);
  font-weight: 600;
}

.plans {
  display: grid;
  gap: 16px;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.plan.featured {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(232, 116, 38, 0.12);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 42%);
}

.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--pill);
}

.plan-name {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  min-height: 2.4rem;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}

.price-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 6px 0 16px;
  min-height: 2.6em;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.plan li.off {
  color: #b0b6c0;
}

.plan .btn {
  margin-top: auto;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 22px;
}

.enterprise-strip {
  margin-top: 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.enterprise-strip p {
  color: #cfd3da;
}

.enterprise-strip .btn-primary {
  justify-self: start;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 20px;
}

.faq {
  background: var(--sand);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--display);
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.faq-item .chev {
  transition: transform 0.2s;
}

.faq-item.is-open .chev {
  transform: rotate(180deg);
}

.cta {
  padding: 24px 0 88px;
}

.cta-box {
  background: linear-gradient(135deg, #f07d32, #e87426 40%, #c45e18);
  color: #fff;
  border-radius: 28px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(232, 116, 38, 0.28);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-box p {
  opacity: 0.92;
  max-width: 36rem;
  margin: 0 auto 24px;
}

.cta-box .btn-dark {
  background: #fff;
  color: var(--ink);
}

.contact-end {
  padding: 0 0 88px;
}

.contact-end-box {
  display: grid;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
}

.contact-end-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 8px 0 10px;
}

.contact-end-box p:not(.eyebrow) {
  color: var(--muted);
  max-width: 36rem;
}

.contact-end-actions {
  display: grid;
  gap: 16px;
}

.contact-phone {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.contact-phone:hover {
  color: var(--orange-deep);
}

.contact-end-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-end-btns .btn svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp {
  background: #1fad5a;
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 10px 24px rgba(31, 173, 90, 0.22);
}

.btn-whatsapp:hover {
  background: #18964c;
}

.footer-contact {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
}

.footer-contact span {
  color: #9aa1ad;
  font-size: 0.85rem;
}

.footer-wa {
  color: #6ee7a8 !important;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer {
  background: #111318;
  color: #d5d8de;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2e38;
}

.footer .brand {
  color: #fff;
}

.footer p {
  color: #9aa1ad;
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 32ch;
}

.footer h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2e38;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8b929e;
}

.page-hero {
  padding: 48px 0 12px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
}

.form-layout {
  display: grid;
  gap: 24px;
  padding-bottom: 80px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(232, 116, 38, 0.35);
  border-color: var(--orange);
}

.success {
  display: none;
  text-align: center;
  padding: 28px 8px;
}

.form-send-error {
  margin: 0 0 10px;
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-card.is-sent form {
  display: none;
}

.form-card.is-sent .success {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok);
  display: grid;
  place-items: center;
}

.aside-card {
  background: var(--sand);
  border-radius: 24px;
  padding: 24px;
}

.aside-card h3 {
  margin-bottom: 10px;
}

.aside-card ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

@media (max-width: 979px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 719px) {
  .hero-visual {
    margin-top: 28px;
    padding-bottom: 8px;
  }

  .hero-band {
    height: 88px;
    border-radius: 24px 24px 0 0;
  }

  .shot-wrap {
    width: min(390px, calc(100% - 20px));
    margin: -72px auto 0;
  }

  .shot {
    border-radius: 28px;
    position: relative;
  }

  .chrome {
    justify-content: center;
    padding: 14px 14px 6px;
  }

  .chrome i {
    display: none;
  }

  .chrome::before {
    content: "";
    width: 72px;
    height: 5px;
    border-radius: 99px;
    background: #d5d0c8;
  }

  .shot::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 96px;
    height: 4px;
    border-radius: 99px;
    background: rgba(18, 20, 26, 0.18);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
  }

  .float {
    display: none;
  }
}

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

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .form-layout {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }

  .hero-band {
    height: 260px;
  }

  .shot-wrap {
    margin-top: -300px;
  }

  .float-1 {
    left: -18px;
  }

  .float-2 {
    right: -12px;
  }

  .enterprise-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }

  .hero-top {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    padding-bottom: 12px;
  }

  .hero-top .hero h1,
  .hero-top h1,
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 3.2vw, 3.15rem);
    margin-left: 0;
    margin-right: 0;
    line-height: 1.18;
  }

  .hero-copy .mark {
    display: inline-block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    padding: 0.04em 0.28em 0.1em;
    border-radius: 999px;
  }

  .hero-top .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-top .hero-cta,
  .hero-top .trust {
    justify-content: flex-start;
  }

  .hero-photo img {
    height: 540px;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento {
    grid-template-columns: 1.2fr 1fr;
  }

  .plans {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .contact-end-box {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 48px 40px;
  }

  .hero {
    padding-top: 64px;
  }
}

.legal-doc {
  max-width: 760px;
  padding-bottom: 72px;
}

.legal-doc h1 {
  margin-bottom: 8px;
}

.legal-doc .updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 20px;
}

.legal-doc h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.legal-doc p,
.legal-doc li {
  color: var(--ink-2);
  font-size: 0.98rem;
}

.legal-doc p {
  margin-bottom: 12px;
}

.legal-doc ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.legal-doc a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
