@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --purple: #673de6;
  --purple-dark: #2f1c6a;
  --purple-soft: #ebe4ff;
  --purple-light: #f4f1ff;
  --text: #1d1e20;
  --muted: #6d7081;
  --border: #ddd8f0;
  --white: #ffffff;
  --soft: #f8f7ff;
  --sky: #19bde8;
  --shadow: 0 24px 70px rgba(47, 28, 106, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: var(--purple);
  color: white;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  background: var(--purple-dark);
  color: white;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  font-weight: 800;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #eeeaf8;
  backdrop-filter: blur(16px);
}

.navbar__inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  max-width: 280px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-menu a:not(.btn):hover {
  color: var(--purple);
}

.nav-login {
  color: var(--purple-dark);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--purple-dark);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn--primary {
  color: white;
  background: var(--purple);
  box-shadow: 0 14px 28px rgba(103, 61, 230, 0.24);
}

.btn--secondary {
  color: var(--purple-dark);
  background: var(--purple-soft);
}

.btn--outline {
  color: var(--purple);
  background: white;
  border: 1px solid var(--border);
}

.btn--white {
  color: var(--purple-dark);
  background: white;
}

.btn--xl {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(25,189,232,0.22), transparent 26%),
    linear-gradient(135deg, #fff 0%, #faf8ff 45%, #f1ecff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103,61,230,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,61,230,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 84%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.sale-pill,
.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-label--light {
  color: white;
  background: rgba(255,255,255,0.14);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--purple-dark);
}

h1 {
  max-width: 820px;
  font-size: clamp(2.9rem, 6.8vw, 5.6rem);
  font-weight: 900;
  margin-top: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero__subtitle {
  max-width: 680px;
  font-size: 1.18rem;
}

.hero__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.hero__price span,
.hero__price small {
  color: var(--purple-dark);
  font-weight: 800;
}

.hero__price strong {
  color: var(--purple);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--purple-dark);
  font-weight: 800;
}

.hero__checks li::before {
  content: "✓";
  color: var(--purple);
  margin-right: 8px;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.dashboard-card {
  position: absolute;
  inset: 34px 16px auto 10px;
  min-height: 435px;
  padding: 24px;
  border-radius: 32px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #eeeaf8;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: rgba(103,61,230,0.08);
  border-radius: 999px;
}

.dashboard-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-card__header span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #ff5f57;
}

.dashboard-card__header span:nth-child(2) {
  background: #ffbd2e;
}

.dashboard-card__header span:nth-child(3) {
  background: #28c840;
  margin-right: 10px;
}

.dashboard-card__header em {
  font-style: normal;
}

.dashboard-card__hero {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding: 24px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(25,189,232,0.48), transparent 34%),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.dashboard-card__hero span {
  display: block;
  opacity: .82;
  font-weight: 800;
}

.dashboard-card__hero strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.15;
}

.dashboard-card__hero b {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .78rem;
  letter-spacing: .1em;
}

.dashboard-stats {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-stats div {
  padding: 17px;
  border-radius: 18px;
  background: #fbfaff;
  border: 1px solid #eeeaf8;
}

.dashboard-stats small,
.dashboard-stats strong {
  display: block;
}

.dashboard-stats small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-stats strong {
  color: var(--purple-dark);
  margin-top: 4px;
}

.server-lines {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.server-lines i {
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--purple-soft), white);
  border: 1px solid #eeeaf8;
}

.floating {
  position: absolute;
  z-index: 4;
  background: white;
  border: 1px solid #eeeaf8;
  border-radius: 999px;
  padding: 13px 16px;
  font-weight: 900;
  color: var(--purple-dark);
  box-shadow: 0 16px 42px rgba(47,28,106,0.14);
}

.floating--domain {
  top: 10px;
  right: 0;
}

.floating--email {
  left: 0;
  bottom: 30px;
}

.floating--ssl {
  right: 8px;
  bottom: 78px;
}

.domain-band {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}

.domain-box {
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid #eeeaf8;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 24px;
  align-items: center;
}

.domain-box h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin: 12px 0 0;
}

.domain-search {
  display: flex;
  gap: 12px;
}

.domain-search input {
  flex: 1;
  min-width: 0;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0 16px;
  font: inherit;
  outline: none;
}

.domain-search input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(103,61,230,0.12);
}

.extensions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.extensions span {
  background: var(--purple-light);
  color: var(--purple-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 48px;
}

.section-heading p {
  font-size: 1.05rem;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #eeeaf8;
  box-shadow: 0 12px 34px rgba(47,28,106,0.06);
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border: 2px solid var(--purple);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.plan-card__badge {
  align-self: flex-start;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: .8rem;
  font-weight: 900;
  border-radius: 999px;
  padding: 7px 11px;
  margin-bottom: 18px;
}

.plan-card ul {
  padding: 0;
  margin: 8px 0 24px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-card li {
  color: var(--purple-dark);
  font-weight: 700;
}

.plan-card li::before {
  content: "✓";
  color: var(--purple);
  margin-right: 8px;
}

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

.section--purple {
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(25,189,232,0.26), transparent 32%),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.section--purple h2,
.website-cta h2 {
  color: white;
}

.section--purple p,
.website-cta p {
  color: rgba(255,255,255,0.78);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 60px;
  align-items: center;
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-list div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

.package-list strong,
.package-list span {
  display: block;
}

.package-list strong {
  font-size: 1.08rem;
}

.package-list span {
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
}

.email-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.email-preview,
.lead-form {
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #eeeaf8;
  box-shadow: var(--shadow);
}

.mail-top {
  padding: 16px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  font-weight: 900;
  margin-bottom: 16px;
}

.mail-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid #eeeaf8;
  border-radius: 14px;
  margin-bottom: 10px;
}

.mail-line span {
  color: var(--muted);
  font-weight: 700;
}

.mail-line strong {
  color: var(--purple-dark);
}

.mail-message {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  background: var(--purple-light);
}

.mail-message strong {
  color: var(--purple-dark);
}

.mail-message p {
  margin-top: 8px;
  margin-bottom: 0;
}

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

.features-grid div {
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #eeeaf8;
}

.features-grid span {
  color: var(--purple);
  font-weight: 900;
}

.website-cta {
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(25,189,232,0.28), transparent 30%),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.website-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.website-cta__inner p {
  max-width: 720px;
}

.faq {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: 16px;
  background: white;
  border: 1px solid #eeeaf8;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--purple-dark);
}

details p {
  margin: 14px 0 0;
}

.contact {
  background:
    radial-gradient(circle at 20% 12%, rgba(103,61,230,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #faf8ff);
}

.lead-form h3 {
  margin-bottom: 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--purple-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form small {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}

.footer {
  padding: 56px 0 24px;
  background: var(--purple-dark);
  color: white;
}

.footer p,
.footer span {
  color: rgba(255,255,255,0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .75fr .85fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: white;
}

.footer h3 {
  font-size: 1.35rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 9px;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a.footer-credit {
  color: #f97316;
}

.footer a.footer-credit:hover {
  color: #fb923c;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  box-shadow: 0 16px 34px rgba(37,211,102,.32);
  font-size: 1.45rem;
}

@media (max-width: 1120px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 124px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid #eeeaf8;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 11px 0;
  }

  .nav-menu .btn {
    width: 100%;
    margin-top: 8px;
  }

  .hero__grid,
  .domain-box,
  .package-grid,
  .email-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .extensions {
    grid-column: auto;
  }

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

  .plan-card--featured {
    transform: none;
  }

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

@media (max-width: 760px) {
  .topbar__inner,
  .footer-bottom,
  .website-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom__links {
    justify-content: flex-start;
  }

  .topbar a {
    display: none;
  }

  .brand {
    max-width: 220px;
  }

  .brand img {
    width: 210px;
  }

  .navbar__inner {
    min-height: 72px;
  }

  .nav-menu {
    top: 112px;
  }

  .hero {
    padding: 60px 0 54px;
  }

  .hero__visual {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .hero__subtitle {
    font-size: 1.03rem;
  }

  .domain-band {
    margin-top: 0;
  }

  .domain-box {
    border-radius: 0;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 28px 16px;
  }

  .domain-search,
  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .domain-search .btn,
  .hero__actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .hosting-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}
