:root {
  --primary: #5b3df5;
  --primary-dark: #3820c9;
  --coral: #ff6b5e;
  --lime: #c7f36b;
  --ink: #17152b;
  --soft: #f7f5ff;
  --white: #fff;
  --line: #dedaf2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav-shell {
  height: 84px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 8px;
  color: var(--primary);
}
.brand-doa {
  font-size: 37px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -3px;
}
.brand-estudio {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  padding-bottom: 2px;
}
.brand-image {
  width: 148px;
  display: block;
}
.brand-image img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-shell nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.nav-shell nav a {
  opacity: 0.66;
  transition: 0.2s;
}
.nav-shell nav a:hover {
  opacity: 1;
  color: var(--primary);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--primary);
  color: white;
  padding: 18px 25px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(91, 61, 245, 0.2);
  transition: 0.2s;
}
.button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.button-small {
  padding: 12px 18px;
  gap: 18px;
  border-radius: 12px;
}
.hero {
  position: relative;
  max-width: 1240px;
  min-height: 690px;
  margin: auto;
  padding: 78px 28px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -160px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(1px);
  opacity: 0.5;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
}
.eyebrow span {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
}
.hero h1,
.section h2,
.cta-section h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
}
.hero h1 {
  font-size: clamp(55px, 6.2vw, 86px);
  line-height: 0.94;
  margin: 25px 0;
}
.hero h1 em,
.section h2 em,
.cta-section h2 em {
  color: var(--primary);
  font-style: normal;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  color: #5d5875;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 2px solid var(--coral);
  padding: 12px 0;
}
.text-link span {
  margin-left: 15px;
  color: var(--coral);
}
.hero-art {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 42% 58% 64% 36%;
  background: linear-gradient(135deg, var(--coral), #ff9b69);
  transform: rotate(8deg);
}
.browser-card {
  position: relative;
  width: 95%;
  background: white;
  border: 1px solid #e4e0f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(35, 25, 94, 0.2);
  transform: rotate(2deg);
}
.browser-top {
  height: 43px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f3ff;
  border-bottom: 1px solid #e4e0f6;
}
.browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.browser-top i:nth-child(1) {
  background: var(--coral);
}
.browser-top i:nth-child(2) {
  background: #ffc75e;
}
.browser-top i:nth-child(3) {
  background: var(--lime);
}
.browser-top span {
  margin-left: 16px;
  font-size: 8px;
  color: #817c9a;
}
.browser-content {
  padding: 55px;
}
.browser-content small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
}
.browser-content b {
  display: block;
  font-size: 31px;
  line-height: 1.1;
  margin: 22px 0;
  font-weight: 900;
  letter-spacing: -1px;
}
.browser-lines {
  display: grid;
  gap: 7px;
}
.browser-lines span {
  height: 6px;
  width: 75%;
  border-radius: 10px;
  background: #eae7f8;
}
.browser-lines span:nth-child(2) {
  width: 62%;
}
.browser-lines span:nth-child(3) {
  width: 50%;
}
.browser-button {
  display: inline-block;
  margin-top: 27px;
  background: var(--primary);
  color: white;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
}
.metric-card {
  position: absolute;
  right: -5px;
  bottom: 20px;
  background: var(--lime);
  color: var(--ink);
  padding: 20px 26px;
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(35, 25, 94, 0.18);
  transform: rotate(-3deg);
}
.metric-card strong,
.metric-card span {
  display: block;
}
.metric-card strong {
  font-size: 18px;
  font-weight: 900;
}
.metric-card span {
  font-size: 9px;
  margin-top: 6px;
}
.trust-strip {
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.trust-strip span {
  padding: 22px 38px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-strip span + span:before {
  content: "✦";
  margin-right: 38px;
  color: var(--lime);
}
.section {
  padding: 110px max(28px, calc((100vw - 1184px) / 2));
}
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}
.section h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  margin: 20px 0 0;
}
.section-heading > p,
.plans-heading > p {
  color: #67617d;
  line-height: 1.7;
  font-size: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-grid article {
  position: relative;
  background: white;
  padding: 28px;
  border-radius: 20px;
  min-height: 280px;
  box-shadow: 0 12px 35px rgba(49, 35, 123, 0.07);
  transition: 0.25s;
}
.service-grid article:hover {
  transform: translateY(-7px);
}
.service-grid article:nth-child(2) {
  background: #fff1ef;
}
.service-grid article:nth-child(3) {
  background: #efffcf;
}
.service-grid article:nth-child(4) {
  background: #ebe7ff;
}
.service-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.service-grid h3 {
  font-size: 25px;
  font-weight: 900;
  margin: 54px 0 14px;
  letter-spacing: -1px;
}
.service-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: #67617d;
}
.plans-section {
  background: linear-gradient(145deg, #4e30e8 0%, #7554ff 65%, #8a68ff 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.plans-section:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--coral);
  right: -180px;
  top: -190px;
  opacity: 0.9;
}
.plans-heading {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 58px;
}
.plans-heading .eyebrow {
  justify-content: center;
}
.plans-heading h2 {
  margin-bottom: 22px;
}
.plans-heading > p {
  color: rgba(255, 255, 255, 0.78);
}
.eyebrow.light {
  color: white;
}
.plan-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1000px;
  margin: auto;
}
.plan-card {
  position: relative;
  background: #fff;
  color: var(--ink);
  padding: 38px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 545px;
  box-shadow: 0 20px 50px rgba(29, 16, 92, 0.2);
}
.plan-card.featured {
  outline: 4px solid var(--lime);
}
.plan-card.custom {
  background: var(--ink);
  color: white;
}
.popular {
  position: absolute;
  right: 24px;
  top: 22px;
  background: var(--lime);
  color: var(--ink);
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}
.plan-kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
  color: var(--primary);
  font-weight: 900;
}
.custom .plan-kicker {
  color: var(--lime);
}
.plan-card h3 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 12px 0;
}
.plan-description {
  font-size: 13px;
  line-height: 1.65;
  color: #6b657f;
  min-height: 50px;
}
.custom .plan-description {
  color: #aaa5be;
}
.price {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.custom .price {
  border-color: #37334d;
}
.price small {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 9px;
}
.price strong {
  color: var(--primary);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: -1.5px;
}
.custom .price strong {
  color: var(--lime);
}
.price span {
  font-size: 9px;
  margin-bottom: 6px;
  color: #6d6880;
}
.plan-card ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.plan-card li {
  font-size: 12px;
  display: flex;
  gap: 10px;
}
.plan-card li span {
  color: var(--coral);
  font-weight: 900;
}
.plan-card > a {
  margin-top: auto;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 15px 17px;
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.featured > a {
  background: var(--primary);
  color: white;
}
.custom > a {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.plan-notes {
  position: relative;
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.plan-notes p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.55;
}
.plan-notes strong {
  color: var(--lime);
}
.process ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process li {
  background: white;
  padding: 25px;
  border-radius: 18px;
}
.process li:nth-child(even) {
  transform: translateY(18px);
}
.process li > span {
  font-size: 11px;
  font-weight: 900;
  color: var(--coral);
}
.process h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 42px 0 8px;
}
.process li p {
  font-size: 12px;
  color: #716b84;
}
.cta-section {
  text-align: center;
  background: var(--coral);
  color: var(--ink);
  padding: 105px 28px;
  position: relative;
  overflow: hidden;
}
.cta-section:before,
.cta-section:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
}
.cta-section:before {
  width: 220px;
  height: 220px;
  left: -80px;
  top: -90px;
}
.cta-section:after {
  width: 120px;
  height: 120px;
  right: 7%;
  bottom: -60px;
}
.cta-section .eyebrow {
  position: relative;
  justify-content: center;
  color: var(--ink);
}
.cta-section h2 {
  position: relative;
  font-size: clamp(45px, 5vw, 68px);
  line-height: 0.98;
  margin: 24px 0;
}
.cta-section p:not(.eyebrow) {
  position: relative;
  max-width: 540px;
  margin: 0 auto 32px;
  color: #563531;
  line-height: 1.7;
}
.button-light {
  position: relative;
  background: var(--ink);
  color: white;
  box-shadow: none;
}
.button-light:hover {
  background: var(--primary);
}
.cta-section h2 em {
  color: white;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  background: white;
}
.contact-copy h2 {
  margin-bottom: 25px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  color: #67617d;
  line-height: 1.7;
}
.contact-detail {
  display: grid;
  gap: 9px;
  margin-top: 45px;
}
.contact-detail small {
  margin-bottom: 5px;
  color: #827c98;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-detail a {
  font-weight: 800;
  color: var(--primary);
}
.contact-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  border-radius: 24px;
  background: var(--soft);
  box-shadow: 0 18px 50px rgba(49, 35, 123, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d4ee;
  border-radius: 11px;
  background: white;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  font-size: 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.12);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}
.website-field {
  position: absolute !important;
  left: -9999px !important;
}
.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #073d1d;
  box-shadow: 0 12px 35px rgba(12, 79, 38, 0.28);
  font-size: 12px;
  transition: 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
}
.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  font-size: 20px;
  font-weight: 900;
}
.whatsapp-float b {
  font-weight: 900;
}
footer {
  background: var(--ink);
  color: white;
  padding: 70px max(28px, calc((100vw - 1184px) / 2)) 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 45px;
  align-items: start;
}
.footer-brand {
  padding: 9px 12px;
  border-radius: 12px;
  background: white;
}
footer p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}
footer div {
  display: grid;
  gap: 10px;
  font-size: 12px;
  text-align: right;
  color: #bdb8d0;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  margin-top: 30px;
  color: #716b84;
  font-size: 9px;
}
@media (max-width: 850px) {
  .nav-shell nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
    gap: 30px;
  }
  .hero-art {
    min-height: 400px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-grid,
  .process ol {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip {
    justify-content: flex-start;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  footer p {
    grid-column: 1/-1;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .nav-shell {
    height: 72px;
    padding: 0 20px;
  }
  .button-small {
    padding: 11px 13px;
  }
  .hero {
    padding: 45px 20px 55px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .hero-art {
    min-height: 330px;
  }
  .browser-content {
    padding: 35px 28px;
  }
  .browser-content b {
    font-size: 24px;
  }
  .metric-card {
    right: 0;
  }
  .section {
    padding: 80px 20px;
  }
  .section h2 {
    font-size: 42px;
  }
  .service-grid,
  .plan-grid,
  .process ol {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 230px;
  }
  .service-grid h3 {
    margin-top: 35px;
  }
  .plan-card {
    min-height: auto;
  }
  .plan-card ul {
    margin-bottom: 22px;
  }
  .plan-notes,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding-right: 10px;
  }
  .whatsapp-float b {
    display: none;
  }
  .process li:nth-child(even) {
    transform: none;
  }
  .cta-section {
    padding: 80px 20px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 60px 20px 25px;
  }
  footer p {
    grid-column: auto;
  }
  footer div {
    text-align: left;
  }
}
