:root {
  --black: #000000;
  --white: #ffffff;
  --green: #5ec899;
  --dark-gray: #0f171f;
  --alt-dark-gray: #10171f;
  --light-gray: #dddddd;
  --alt-light-gray: #e8e6e2;
  --light-white: #e4e2dd;
  --light-blue: #c3d1e0;
  --dark-blue: #5377a0;
  --dark-gray-blue: #2b3d53;
  --overlay: rgba(0, 0, 0, 0.31);
  --title-font: "Space Grotesk", sans-serif;
  --content-font: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--light-gray);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: var(--dark-gray);
}

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

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

button {
  font: inherit;
}

.landing-shell {
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-shell::-webkit-scrollbar {
  display: none;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  overflow: clip;
}

.navbar {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: fit-content;
  font-family: var(--title-font);
}

.brand-link {
  align-self: flex-start;
}

.brand-logo {
  width: 180px;
  height: 100px;
  margin-left: 3%;
  cursor: pointer;
}

.menu-toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  z-index: 100;
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 40px;
  height: 40px;
}

.nav-drawer {
  position: relative;
  display: contents;
  z-index: 2;
}

.nav-group {
  position: relative;
  top: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: var(--title-font);
}

.nav-group-actions {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  height: fit-content;
  margin: 0 10px;
  padding-right: 10px;
  padding-bottom: 3px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 19px;
  cursor: pointer;
  transition: color 300ms ease-in-out;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link-underline {
  font-size: 18px;
  text-decoration: underline;
}

.mobile-divider {
  display: none;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--green);
  opacity: 0.3;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: grayscale(50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background: #2a3c51;
  mix-blend-mode: multiply;
}

.hero-cta {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  gap: 2.5rem;
  transform: translateY(-50%);
  font-family: var(--title-font);
  font-weight: 400;
}

.hero-line {
  align-self: center;
  width: auto;
  max-width: 100%;
  height: min-content;
  overflow-x: hidden;
}

.hero-copy {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20rem;
  min-height: 25rem;
  color: var(--green);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: 76px;
  line-height: 1;
  font-weight: 400;
}

.hero-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.hero-copy p {
  margin: 0.3rem 0 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

.primary-cta,
.trial-cta,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--dark-gray);
  cursor: pointer;
  transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out;
}

.primary-cta {
  margin-top: 5rem;
  padding: 1rem 2rem;
  font-family: var(--content-font);
  font-size: 18px;
}

.primary-cta:hover,
.trial-cta:hover {
  background: #4db483;
}

.whatsapp-button {
  position: absolute;
  right: 3.5rem;
  bottom: 2.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  background: var(--green);
  font-family: var(--content-font);
  font-size: 0.875rem;
}

.whatsapp-button img {
  width: 1rem;
  height: 1rem;
  margin-right: 5px;
  background: transparent;
}

.benefits-section,
.phone-section,
.about-section {
  background: var(--alt-light-gray);
}

.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 3rem;
  font-family: var(--content-font);
}

.benefits-mockup {
  width: 400px;
}

.section-heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-heading-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.section-heading-brand img,
.section-symbol {
  width: 3rem;
  height: 3rem;
}

.section-heading-brand h2,
.phone-title,
.integration-title,
.about-header h2,
.pricing-header h2,
.trial-content h2 {
  margin: 0;
  color: var(--dark-gray);
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 400;
}

.section-heading-brand h2 {
  text-transform: uppercase;
}

.section-heading-rule {
  display: none;
  width: 100%;
  height: 2px;
  background: var(--light-blue);
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  margin-top: 3rem;
}

.text-column h3,
.step-copy h3,
.about-text-shell h3,
.about-values-copy h3 {
  margin: 0;
  color: var(--dark-gray);
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 400;
}

.text-column p,
.phone-text,
.step-copy p,
.support-card p,
.trial-content p,
.about-text-shell p,
.about-values-copy p,
.plan-feature,
.site-footer p,
.site-footer a {
  color: #243446;
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.text-column p {
  margin: 2rem 0 0;
}

.phone-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 3rem 2rem;
}

.section-symbol {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  z-index: 10;
}

.phone-title {
  z-index: 10;
  max-width: 700px;
  color: var(--dark-gray);
  text-align: center;
  white-space: pre-line;
}

.phone-mockup-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.phone-circle {
  display: none;
}

.phone-mockup {
  position: relative;
  z-index: 10;
  max-width: 100%;
}

.phone-text {
  z-index: 10;
  max-width: 700px;
  margin-top: -10px;
  color: #243446;
  text-align: center;
  white-space: pre-line;
}

.integration-section,
.pricing-section {
  overflow-x: hidden;
  background: var(--light-white);
  font-family: var(--content-font);
}

.integration-section {
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
}

.integration-inner {
  width: 100%;
  max-width: 1400px;
  text-align: center;
}

.integration-symbol {
  width: 6rem;
  margin-right: auto;
  margin-left: auto;
}

.integration-title {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.integration-grid {
  display: grid;
  gap: 3rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 150px 150px 100px 100px;
  background: var(--alt-light-gray);
  text-align: left;
}

.step-icon-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  border-radius: 150px 150px 70px 70px;
  background: #ebe9e5;
}

.step-icon-shell img {
  max-width: 6rem;
}

.step-copy {
  display: flex;
  flex-direction: column;
  padding: 0 2rem 3rem;
}

.step-copy h3 {
  margin-top: 1rem;
}

.step-copy p {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.support-card {
  align-self: start;
  border-radius: 100px;
  background: var(--alt-dark-gray);
  padding: 3rem;
  text-align: left;
  box-shadow: 0 20px 60px rgba(16, 23, 31, 0.12);
}

.support-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #c9d6e3;
}

.support-label svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.support-label p,
.integrations-label,
.integrations-note {
  margin: 0;
  font-family: var(--title-font);
  letter-spacing: 4px;
  text-transform: lowercase;
}

.support-label p {
  color: var(--green);
  font-size: 1rem;
}

.support-card h3 {
  margin-top: 1rem;
  color: var(--green);
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
}

.support-card p:last-child {
  margin-top: 2rem;
  color: var(--alt-light-gray);
  line-height: 1.65;
}

.integrations-footer {
  text-align: center;
}

.integrations-label {
  margin-top: 3rem;
  color: #243446;
  font-size: 1rem;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.integration-logos img {
  width: auto;
  max-height: 42px;
}

.unicopag-logo {
  max-height: 36px;
  padding: 3px 10px;
  border-radius: 10px;
  background: var(--alt-dark-gray);
}

.integrations-note {
  width: 100%;
  margin: 2rem auto 0;
  color: #243446;
  font-size: 0.875rem;
  letter-spacing: 3px;
}

.trial-section {
  padding: 3rem 2rem;
  background: var(--alt-dark-gray);
  font-family: var(--content-font);
}

.trial-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--alt-dark-gray);
}

.trial-banner-image {
  display: none;
  width: 100%;
  height: auto;
}

.trial-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.trial-mobile-symbol {
  width: 6rem;
  margin: 0 auto 2rem;
}

.trial-label {
  color: #7fd3aa !important;
  font-family: var(--title-font);
  font-size: 1rem;
  letter-spacing: 2px;
}

.trial-content h2 {
  color: #f5efe4;
}

.trial-content p:last-of-type {
  max-width: 560px;
  margin-top: 1rem;
  color: #d6dee8;
  line-height: 1.65;
}

.trial-cta {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  font-family: var(--content-font);
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-header h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.about-layout {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.about-text-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-text-shell > p {
  margin-top: 1.25rem;
}

.about-values {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  width: 100%;
  margin-top: 2rem;
}

.about-values-rule {
  position: relative;
  align-self: stretch;
  width: 6px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--light-blue);
}

.about-values-rule::before,
.about-values-rule::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 6px;
  background: var(--light-blue);
}

.about-values-rule::before {
  top: 0;
}

.about-values-rule::after {
  bottom: 0;
}

.about-values-copy {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-values-copy p {
  margin-top: 0;
}

.about-values-copy h3 {
  margin-top: 2rem;
}

.about-values-copy h3:first-child {
  margin-top: 0;
}

.about-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-phone img {
  width: 310px;
  height: 470px;
  max-width: 100%;
}

.pricing-section {
  padding-bottom: 5rem;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.pricing-header h2 {
  text-align: center;
  font-weight: 500;
}

.pricing-group {
  display: none;
  gap: 1rem;
  align-items: center;
  overflow-x: auto;
  margin: 3rem 0;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pricing-group::-webkit-scrollbar {
  display: none;
}

.pricing-group.is-active {
  display: flex;
}

.pricing-group-static {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-card {
  display: flex;
  flex: 0 0 280px;
  flex-direction: column;
  min-height: 550px;
  padding: 2rem;
  border: 1px solid var(--light-blue);
  border-radius: 2rem;
  background: var(--alt-light-gray);
  text-align: center;
  scroll-snap-align: center;
}

.plan-card-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.plan-card-top img {
  width: 50px;
  height: 50px;
  margin-top: 1rem;
}

.plan-name {
  margin-top: 1rem;
  color: var(--dark-gray);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 500;
}

.plan-price {
  margin: 2rem 0 0;
  color: var(--dark-gray-blue);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 500;
}

.plan-billing {
  margin: 0 0 2rem;
  color: var(--dark-blue);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 300;
}

.plan-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.plan-feature::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
}

.plan-card-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem;
}

.pricing-note {
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--dark-gray);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.plan-button {
  white-space: nowrap;
  padding: 1rem 2rem;
  font-family: var(--content-font);
}

.plan-button:hover {
  border: 1px solid currentColor;
  color: var(--white);
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem;
  background: var(--alt-dark-gray);
  color: var(--alt-light-gray);
  font-family: var(--content-font);
  font-weight: 300;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--alt-light-gray);
}

.auth-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(94, 200, 153, 0.16), transparent 20%),
    radial-gradient(circle at bottom right, rgba(83, 119, 160, 0.18), transparent 20%),
    linear-gradient(180deg, #081018, #0f171f);
}

.auth-main-page {
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.72), rgba(15, 23, 31, 0.94));
  font-family: var(--content-font);
  font-size: 0.65rem;
}

.auth-logo-mark {
  width: 6rem;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.auth-logo-text {
  width: 20rem;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
}

.auth-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 200, 153, 0.28);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(22, 33, 44, 0.95), rgba(13, 23, 32, 0.98));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.auth-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(94, 200, 153, 0.1);
  filter: blur(22px);
}

.auth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.auth-card-signup {
  padding: 0.5rem;
}

.auth-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.25rem 1.25rem;
}

.auth-form-signup {
  width: 100%;
}

.auth-intro {
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(232, 230, 226, 0.94);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.signup-fields-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem 0;
  width: 100%;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.auth-field-half {
  width: 45%;
}

.auth-field label {
  color: rgba(232, 230, 226, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-input,
.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--alt-light-gray);
  transition: background-color 9999s ease-in-out 0s;
}

.auth-input {
  padding: 1rem 1rem;
  border: 1.5px solid rgba(195, 209, 224, 0.12);
  border-radius: 0.95rem;
  background: rgba(8, 16, 24, 0.56);
  color: var(--alt-light-gray);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 400;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 20px rgba(0, 0, 0, 0.14);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.auth-input::placeholder {
  color: rgba(232, 230, 226, 0.36);
}

.auth-input:focus {
  outline: none;
  border-color: rgba(94, 200, 153, 0.95);
  background: rgba(8, 16, 24, 0.8);
  box-shadow:
    0 0 0 4px rgba(94, 200, 153, 0.18),
    0 14px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.auth-submit-button {
  align-self: center;
  min-width: 13rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 1rem;
  background: var(--green);
  color: var(--dark-gray);
  font-family: var(--content-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(94, 200, 153, 0.22);
  transition:
    background 300ms ease-in-out,
    opacity 300ms ease-in-out,
    transform 200ms ease-in-out,
    box-shadow 200ms ease-in-out;
}

.auth-submit-button:hover {
  background: #74d5a5;
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(94, 200, 153, 0.2);
}

.auth-secondary-link {
  align-self: center;
  color: rgba(232, 230, 226, 0.62);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  transition: color 200ms ease-in-out;
}

.auth-secondary-link:hover {
  color: var(--green);
}

.footer-col {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links a {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .brand-logo {
    width: 250px;
  }

  .section-heading-brand {
    min-width: 500px;
  }

  .section-heading-brand img {
    width: 4rem;
    height: 4rem;
  }

  .step-card {
    flex-direction: row;
    padding-right: 2rem;
    border-radius: 999px;
  }

  .step-icon-shell {
    border-radius: 999px;
  }

  .step-copy {
    padding: 1rem 2rem;
  }

  .about-phone img {
    width: 340px;
    height: 500px;
  }

  .auth-main-page {
    font-size: 1rem;
  }

  .auth-logo-mark {
    width: 9rem;
  }

  .auth-logo-text {
    width: 28rem;
  }

  .auth-card-signup {
    padding: 0.5rem;
  }

  .auth-form-signup {
    width: 600px;
  }
}

@media (min-width: 768px) {
  .benefits-section,
  .integration-section,
  .trial-section,
  .about-section {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .benefits-section {
    padding-bottom: 3rem;
  }

  .benefits-grid {
    flex-direction: row;
    gap: 5rem;
  }

  .phone-section {
    padding: 3rem;
  }

  .phone-mockup-wrapper {
    margin-top: -30px;
    margin-bottom: 0;
  }

  .phone-text {
    text-align: left;
  }

  .pricing-group {
    justify-content: center;
    overflow: visible;
    padding: 0 2rem;
  }

  .plan-card {
    flex: 1 1 calc(33.333% - 0.66rem);
    max-width: 400px;
    min-height: 700px;
    padding: 1.5rem;
  }

  .plan-card-top img {
    margin-top: 2.5rem;
  }

  .plan-name {
    font-size: 1.625rem;
  }

  .plan-price {
    margin-top: 3rem;
    font-size: 3.125rem;
  }

  .plan-billing {
    margin-bottom: 3rem;
  }

  .plan-feature {
    font-size: 1.125rem;
  }

  .site-footer {
    flex-direction: row;
    align-items: flex-start;
    padding: 5rem;
    font-size: 1.25rem;
  }

  .auth-card-signup {
    padding: 0.5rem;
  }

  .footer-col-left {
    text-align: left;
  }

  .footer-col-right {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .navbar {
    min-height: 100px;
  }

  .trial-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .trial-banner {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }

  .trial-banner-image {
    display: block;
  }

  .trial-content {
    position: absolute;
    top: 0;
    right: 150px;
    bottom: 0;
    max-width: 45%;
    padding: 3rem 2rem;
  }

  .trial-mobile-symbol {
    display: none;
  }

  .trial-cta {
    width: 350px;
  }

  .about-header h2 {
    margin-bottom: 5rem;
  }

  .about-layout {
    flex-direction: row;
    gap: 2rem;
  }

  .about-text-shell {
    width: 70%;
  }

  .about-phone {
    width: 60%;
  }

  .about-phone img {
    width: 420px;
    height: 600px;
  }

  .integration-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .support-card {
    position: sticky;
    top: 2rem;
  }

  .integrations-note {
    width: 50%;
  }
}

@media (min-width: 1050px) {
  .plan-card {
    min-height: 600px;
  }
}

@media (min-width: 1280px) {
  .about-text-shell::before {
    content: "";
    position: absolute;
    top: -12.5%;
    left: -25%;
    z-index: -1;
    display: block;
    width: 140%;
    height: 120%;
    border-radius: 999px;
    background: #e5e3df;
  }
}

@media (min-width: 1536px) {
  .phone-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #e5e3df;
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  .phone-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #e5e3df;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .phone-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #e5e3df;
  }
}

@media (max-width: 1023px) {
  .navbar {
    overflow: visible;
  }

  .menu-toggle {
    display: block;
  }

  .nav-drawer {
    position: absolute;
    top: 0;
    right: -300px;
    bottom: auto;
    z-index: 120;
    display: flex;
    flex-direction: column;
    width: 200px;
    height: auto;
    padding-top: 60px;
    padding-bottom: 10px;
    background: rgba(91, 111, 111, 0.92);
    opacity: 0;
    pointer-events: auto;
    transition:
      opacity 800ms ease-in-out,
      right 800ms ease-in-out;
  }

  .nav-drawer.is-open {
    right: 0;
    opacity: 0.7;
  }

  .mobile-divider {
    display: block;
  }

  .nav-group {
    top: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
  }

  .hero-cta {
    width: calc(100% - 2rem);
    justify-content: center;
    gap: 1rem;
  }

  .hero-line {
    width: 20%;
  }
}

@media (max-width: 639px) {
  .hero-line {
    display: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 20rem;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-copy h2 {
    font-size: 24px;
  }

  .whatsapp-button {
    right: 1rem;
    bottom: 1rem;
    padding: 12px 18px;
  }

  .auth-main-page {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    gap: 1.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .auth-logo-mark {
    width: 5rem;
  }

  .auth-logo-text {
    width: min(20rem, calc(100% - 2rem));
  }

  .auth-card-signup {
    width: min(100%, 30rem);
  }

  .auth-form {
    gap: 1.35rem;
    padding: 1.5rem 1rem;
  }

  .signup-fields-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .auth-field-half {
    width: 100%;
  }

  .auth-intro {
    font-size: 0.95rem;
  }

  .auth-submit-button {
    width: 100%;
  }
}
