:root {
  --navy: #1D1A39;
  --purple: #451952;
  --wine: #662549;
  --rose: #AE445A;
  --apricot: #F39F5A;
  --blush: #E8BCB9;
  --bg: #161428;
  --surface: #211D3B;
  --surface-2: #2A2447;
  --line: rgba(232, 188, 185, 0.14);
  --text-dim: rgba(232, 188, 185, 0.68);
  --text-dimmer: rgba(232, 188, 185, 0.42);
  --gradient: linear-gradient(120deg, var(--apricot) 0%, var(--rose) 55%, var(--purple) 100%);
  --sunset: linear-gradient(190deg, var(--apricot) 0%, var(--rose) 30%, var(--wine) 55%, var(--purple) 78%, var(--navy) 100%);
  --display: "Montserrat", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: #fff;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--gradient);
}

.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline {
  border-color: rgba(232, 188, 185, 0.28);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(232, 188, 185, 0.6);
}

/* nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 20, 40, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

.brand span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.24rem;
  color: #fff;
}

footer .brand img {
  height: 30px;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta a.ghost {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* hero */
.hero {
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 3.8vw, 3.7rem);
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 1.06rem;
  color: var(--text-dim);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45));
}

/* bands */
.band {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.band.alt {
  background: var(--surface);
}

.sec-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.sec-head p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

.step .n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1rem;
}

.step h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-dimmer);
  font-size: 0.88rem;
}

/* templates */
.rubro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rubro-chip {
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

/* features */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.feat-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card .icon-box svg {
  width: 21px;
  height: 21px;
  color: var(--apricot);
}

.feat-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feat-card p {
  color: var(--text-dimmer);
  font-size: 0.87rem;
  line-height: 1.5;
}

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--apricot);
  box-shadow: 0 20px 40px -18px rgba(243, 159, 90, 0.25);
  position: relative;
}

.price-card.featured::before {
  content: "Más elegido";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.price-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.price-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.1rem;
  margin: 14px 0 4px;
  color: #fff;
}

.price-card .price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dimmer);
}

.price-card .desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
}

.price-card li {
  font-size: 0.86rem;
  color: var(--text-dim);
  padding: 9px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li:first-child {
  border-top: none;
}

.price-card li svg {
  width: 15px;
  height: 15px;
  color: var(--apricot);
  flex-shrink: 0;
}

.price-card .btn {
  justify-content: center;
  width: 100%;
}

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}

.testi p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-who .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
}

.testi-who b {
  font-size: 0.85rem;
  display: block;
}

.testi-who span {
  font-size: 0.75rem;
  color: var(--text-dimmer);
}

/* cta */
.cta-band {
  background: var(--sunset);
  border-radius: 28px;
  padding: 70px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  max-width: 440px;
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-family: var(--body);
  font-weight: 400;
}

.cta-band .btn-primary {
  background: var(--navy);
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}

footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
}

.foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.foot-top p {
  color: var(--text-dimmer);
  font-size: 0.85rem;
  max-width: 250px;
  margin-top: 12px;
  line-height: 1.5;
}

.foot-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dimmer);
  flex-wrap: wrap;
  gap: 10px;
}

/* help center */
.help-hero {
  padding: 72px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.help-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.help-hero .lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.help-search {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 22px;
}

.help-search svg {
  width: 18px;
  height: 18px;
  color: var(--apricot);
  flex-shrink: 0;
}

.help-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--body);
  font-size: 0.95rem;
}

.help-search input::placeholder {
  color: var(--text-dimmer);
}

.help-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.help-cat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.help-cat:hover {
  border-color: rgba(243, 159, 90, 0.45);
  transform: translateY(-2px);
}

.help-cat .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.help-cat .icon-box svg {
  width: 21px;
  height: 21px;
  color: var(--apricot);
}

.help-cat h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}

.help-cat p {
  color: var(--text-dimmer);
  font-size: 0.87rem;
  line-height: 1.5;
}

.help-faq-wrap {
  max-width: 780px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 20px 28px 20px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--apricot);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 0 0 20px;
  max-width: 640px;
}

.help-contact {
  background: var(--sunset);
  border-radius: 28px;
  padding: 56px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.help-contact h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 8px;
}

.help-contact p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  line-height: 1.5;
}

.help-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.help-contact .btn-primary {
  background: var(--navy);
}

.help-contact .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}

/* legal pages */
.legal-hero {
  padding: 72px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}

.legal-hero .lead {
  color: var(--text-dimmer);
  font-size: 0.92rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content article {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 12px 1.2rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--apricot);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dimmer) !important;
  font-size: 0.85rem !important;
}

.foot-bottom a:hover {
  color: #fff;
}

/* auth — Shopify-like structure, Webssy brand */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0c0a14;
  color: #fff;
  padding: 40px 20px 32px;
}

.auth-shell {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-decoration: none;
  color: #fff;
}

.auth-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.auth-logo span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
}

.auth-intro {
  text-align: center;
  margin-bottom: 22px;
}

.auth-intro h1 {
  font-size: clamp(1.7rem, 4vw, 2.05rem);
  color: #fff;
  margin-bottom: 10px;
}

.auth-intro p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
}

.auth-card {
  width: 100%;
  background: #fff;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.auth-card h1 {
  font-size: 1.65rem;
  color: #111;
  margin-bottom: 6px;
}

.auth-card .auth-sub {
  color: #6b6b6b;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.auth-step {
  display: none;
}

.auth-domain-preview {
  font-size: 0.86rem;
  color: #6b6b6b;
  margin: -6px 0 18px;
}

.auth-domain-preview strong {
  color: inherit;
  font-weight: 700;
}

.auth-rubro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-rubro-option {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  padding: 14px 12px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}

.auth-rubro-option:hover {
  border-color: #1d1a39;
}

.auth-rubro-option.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.auth-step.is-active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-float {
  position: relative;
  display: block;
  border: 1.5px solid #c8c8c8;
  border-radius: 12px;
  padding: 18px 14px 10px;
  background: #fff;
  transition: border-color 0.15s ease;
}

.auth-float:focus-within {
  border-color: #111;
}

.auth-float span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #6b6b6b;
  pointer-events: none;
  transition: 0.15s ease;
}

.auth-float input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--body);
  font-size: 1rem;
  color: #111;
  padding: 0;
  padding-right: 36px;
}

.auth-float input:focus + span,
.auth-float input:not(:placeholder-shown) + span {
  top: 10px;
  transform: none;
  font-size: 0.72rem;
  color: #6b6b6b;
}

.auth-float .auth-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  color: #555;
  display: inline-flex;
}

.auth-float .auth-eye svg {
  width: 20px;
  height: 20px;
}

.auth-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: #1d1a39;
  color: #fff;
}

.auth-btn:hover {
  filter: brightness(1.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: #8a8a8a;
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e4e4e4;
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-social-btn {
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid #d8d8d8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth-social-btn:hover {
  background: #f7f7f7;
}

.auth-social-btn svg {
  width: 22px;
  height: 22px;
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #4a4a4a;
}

.auth-switch a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-email-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.auth-email-chip strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: #222;
  word-break: break-all;
}

.auth-email-chip button {
  border: none;
  background: none;
  color: #ae445a;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.auth-email-chip button:hover {
  text-decoration: underline;
}

.auth-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}

.auth-pass-wrap {
  position: relative;
}

.auth-pass-wrap input {
  width: 100%;
  border: 1.5px solid #c8c8c8;
  border-radius: 12px;
  padding: 14px 44px 14px 14px;
  font-family: var(--body);
  font-size: 1rem;
  color: #111;
  outline: none;
  background: #f6f6f6;
}

.auth-pass-wrap input:focus {
  border-color: #ae445a;
  background: #fff;
}

.auth-pass-wrap .auth-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  color: #555;
  display: inline-flex;
}

.auth-pass-wrap .auth-eye svg {
  width: 20px;
  height: 20px;
}

.auth-forgot {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 18px;
  color: #ae445a;
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-strength {
  margin-top: 10px;
  display: none;
}

.auth-strength.is-visible {
  display: block;
}

.auth-strength-bar {
  height: 3px;
  border-radius: 99px;
  background: #e5e5e5;
  overflow: hidden;
  margin-bottom: 8px;
}

.auth-strength-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: #c44;
  transition: width 0.2s ease, background 0.2s ease;
}

.auth-strength[data-level="1"] .auth-strength-bar i {
  width: 33%;
  background: #c44;
}

.auth-strength[data-level="2"] .auth-strength-bar i {
  width: 66%;
  background: #e0a000;
}

.auth-strength[data-level="3"] .auth-strength-bar i {
  width: 100%;
  background: #1a7f37;
}

.auth-strength-msg {
  font-size: 0.85rem;
  color: #666;
}

.auth-strength[data-level="3"] .auth-strength-msg {
  color: #1a7f37;
}

.auth-help {
  margin-top: 22px;
  text-align: center;
}

.auth-help a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.auth-help a:hover {
  color: #fff;
}

.auth-legal {
  margin-top: auto;
  padding-top: 28px;
  max-width: 460px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

.auth-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

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

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

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

  .help-cats {
    grid-template-columns: 1fr;
  }

  .help-contact {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

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

  .auth-rubro-grid {
    grid-template-columns: 1fr;
  }

  .auth-top {
    padding: 22px 20px;
  }

  .auth-main {
    padding: 12px 20px 48px;
  }

  .auth-card {
    padding: 32px 22px;
  }
}
