.elementor-1491 .elementor-element.elementor-element-ffcbf75{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b42c625 *//* Regra do projeto: editar apenas este CSS e o project.html; o index.html e apenas preview local. */
.gl-mobile-page {
  --purple: #6B2FD9;
  --purple-dark: #4B1FA3;
  --purple-mid: #7C4DFF;
  --purple-light: #E9DDFD;
  --purple-soft: #F8F4FF;
  --purple-gradient: #D8C4FF;
  --dark: #160C2E;
  --text: #4D4163;
  --white: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
  background: var(--purple-soft);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  display: block;
}

/* Otimização: Aplica box-sizing de forma limpa */
.gl-mobile-page *, 
.gl-mobile-page *::before, 
.gl-mobile-page *::after {
  box-shadow: none;
  box-sizing: border-box;
}

/* Contêiner adaptável e sempre centralizado */
.gl-container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1120px;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO (Mobile-First Centered)
   ========================================================================== */
.gl-header {
  padding: 16px 0;
  position: relative;
  z-index: 10;
}

.gl-nav {
  display: flex;
  flex-direction: column; /* Força centralização vertical de blocos no mobile */
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.gl-logo {
  font-size: clamp(24px, 7vw, 32px);
  font-weight: 900;
  color: var(--purple-dark);
  letter-spacing: -1px;
  white-space: nowrap;
}

.gl-logo img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
}

.gl-menu {
  display: none; /* Escondido no mobile */
}

.gl-menu a {
  color: var(--dark);
  text-decoration: none;
}

/* ==========================================================================
   COMPONENTES (Botões, Badges, etc.)
   ========================================================================== */
.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  border: none;
  box-shadow: 0 10px 24px rgba(107, 47, 217, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%; /* Mobile friendly: botões ocupam largura total clicável */
  max-width: 320px; /* Evita que o botão fique gigante em portfólios móveis */
}

.gl-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: #5A24BD;
  box-shadow: 0 14px 28px rgba(107, 47, 217, 0.28);
}

.gl-btn-outline {
  background: transparent;
  color: var(--dark) !important;
  border: 2px solid var(--dark);
  box-shadow: none;
}

.gl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 16px;
}

/* ==========================================================================
   HERO SECTION & ALINHAMENTOS
   ========================================================================== */
.gl-hero {
  padding: 24px 0 48px;
}

/* Otimização: Flex/Grid centralizado para mobile */
.gl-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  text-align: center; /* Centraliza textos nativamente */
}

.gl-title {
  font-size: clamp(36px, 11vw, 76px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 auto 16px;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.gl-title span {
  color: var(--purple);
}

.gl-subtitle {
  font-size: clamp(15px, 4.2vw, 18px);
  line-height: 1.5;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Ações em Grid Mobile Perfeitamente Centralizado */
.gl-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* ==========================================================================
   MARQUEE / EFEITO DE CORRIDA (Trust)
   ========================================================================== */
.gl-trust {
  margin: 24px auto;
  color: #6C5F81;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  text-align: center;
}

.gl-trust-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: glTrustScroll 20s linear infinite;
}

.gl-trust-track span {
  padding-right: 48px;
  margin-top: 20px;
  flex-shrink: 0;
}

@keyframes glTrustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ==========================================================================
   MOCKUP DO CELULAR E ANIMAÇÕES
   ========================================================================== */
.gl-phone-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  width: 100%;
}

.gl-circle {
  position: absolute;
  width: min(80vw, 360px);
  height: min(80vw, 360px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-gradient));
  filter: drop-shadow(0 20px 40px rgba(107, 47, 217, 0.2));
  animation: glPulse 4s ease-in-out infinite;
}

.gl-phone {
  position: relative;
  width: min(70vw, 270px);
  height: min(135vw, 530px);
  background: #101010;
  border-radius: 36px;
  padding: 11px;
  margin-top: -25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: rotate(0deg); /* Removido rotação agressiva para melhorar UX mobile */
  z-index: 2;
  animation: glFloat 5s ease-in-out infinite;
}

.gl-screen {
  background: #FBF8FF;
  height: 100%;
  border-radius: 26px;
  padding: 16px;
  overflow: hidden;
}

.gl-app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
}

.gl-app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
}

.gl-card-visual {
  background: linear-gradient(135deg, var(--dark), var(--purple));
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.gl-card-visual strong {
  font-size: clamp(20px, 6vw, 26px);
  letter-spacing: -1px;
}

.gl-app-row {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 6px 16px rgba(22, 12, 46, 0.05);
  text-align: left;
}

.gl-floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  font-weight: 900;
  color: var(--dark);
  font-size: 11px;
  animation: glPopFloat 4s ease-in-out infinite;
}

.gl-floating-card.one { top: 20px; right: 10px; }
.gl-floating-card.two { bottom: 20px; left: 10px; animation-delay: 0.8s; }

/* ==========================================================================
   SEÇÕES GERAIS, CAROUSEL & GRIDS
   ========================================================================== */
.gl-section {
  padding: 48px 0;
  text-align: center;
}

.gl-section-white {
  background: #fff;
}

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

.gl-section-title {
  font-size: clamp(28px, 9vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 auto 14px;
  font-weight: 900;
  max-width: 680px;
}

.gl-section-text {
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.55;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Configuração do Grid de Benefícios */
.gl-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

/* Modificado para agir como um CARD físico estilizado */
.gl-feature {
  background: #ffffff; /* Fundo branco para destacar do fundo da página */
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(22, 12, 46, 0.06); /* Sombra elegante de elevação */
  border: 1px solid rgba(107, 47, 217, 0.05); /* Borda sutil para dar acabamento */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gl-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107, 47, 217, 0.12);
}

.gl-feature h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--dark);
}

.gl-feature p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Elementos Secundários (Steps, List-items) */
.gl-steps, .gl-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.gl-step, .gl-list-item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(22, 12, 46, 0.05);
}

.gl-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--purple-light); /* Fundo mais suave para o ícone contrastar com o card */
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* Listas customizadas */
.gl-list {
  display: grid;
  gap: 12px;
  width: 100%;
}

.gl-list-item {
  flex-direction: column;
  gap: 8px;
}

.gl-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}

/* Box de Imagem Adaptativo */
.gl-image-box {
  background: linear-gradient(135deg, var(--purple-light), #ffffff);
  border-radius: 24px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px;
  width: 100%;
}

.gl-big-card {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(22, 12, 46, 0.2);
  text-align: center;
}

.gl-progress {
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  margin: 16px 0;
  overflow: hidden;
}

.gl-progress span {
  display: block;
  height: 100%;
  width: 72%;
  background: var(--purple);
}

/* Contador de Passos */
.gl-steps { counter-reset: steps; }
.gl-step::before {
  content: counter(steps);
  counter-increment: steps;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ==========================================================================
   CAROUSEL SIMPLIFICADO E TOUCH FRIENDLY (Mobile)
   ========================================================================== */
.gl-app-carousel-wrap, .gl-social-carousel-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gl-app-carousel-wrap::-webkit-scrollbar, .gl-social-carousel-wrap::-webkit-scrollbar {
  display: none;
}

.gl-app-carousel-track, .gl-social-carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  justify-content: flex-start;
}

.gl-app-slide {
  width: 260px;
  min-width: 260px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(22, 12, 46, 0.06);
}

.gl-real-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  background: #0f0f12;
  border-radius: 28px;
  padding: 8px;
}

.gl-real-phone-screen {
  width: 100%;
  height: 100%;
  background: #FBF8FF;
  border-radius: 22px;
  overflow: hidden;
}

.gl-testimonial-card {
  width: 280px;
  min-width: 280px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(22, 12, 46, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gl-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gl-cta {
  background: var(--dark);
  color: #fff;
  border-radius: 24px;
  padding: 40px 16px;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.gl-cta h2 {
  font-size: clamp(30px, 9vw, 48px);
  margin: 0 0 12px;
  font-weight: 900;
}
.gl-cta p {
  color: #D8C4FF;
  font-size: 15px;
  margin-bottom: 24px;
}

.gl-pricing-shell {
  background: linear-gradient(160deg, #1b1037 0%, #24114d 52%, #160c2e 100%);
  border-radius: 32px;
  padding: 24px 16px 28px;
  box-shadow: 0 24px 60px rgba(22, 12, 46, 0.16);
  border: 1px solid rgba(233, 221, 253, 0.12);
  overflow: hidden;
}

.gl-pricing-header {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.gl-pricing-eyebrow {
  margin-bottom: 14px;
}

.gl-pricing-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 8.5vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gl-pricing-header p {
  margin: 14px auto 0;
  max-width: 700px;
  color: #E9DDFD;
  font-size: 15px;
  line-height: 1.6;
}

.gl-pricing-grid {
  display: grid;
  gap: 16px;
}

.gl-pricing-card {
  background: #fff;
  border-radius: 28px;
  padding: 24px 20px;
  box-shadow: 0 16px 36px rgba(22, 12, 46, 0.1);
}

.gl-pricing-package-card,
.gl-pricing-bonus-card {
  background: linear-gradient(180deg, #31235c 0%, #28194e 100%);
  color: #fff;
  border: 1px solid rgba(122, 87, 255, 0.4);
  box-shadow: 0 18px 40px rgba(22, 12, 46, 0.22);
}

.gl-pricing-package-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gl-pricing-final-card {
  background: #FBF8FF;
  border: 1px solid rgba(107, 47, 217, 0.1);
  text-align: center;
  box-shadow: 0 18px 40px rgba(22, 12, 46, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.gl-pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #F0E8FF;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
}

.gl-pricing-guarantee-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  flex: none;
}

.gl-pricing-kicker {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gl-pricing-price-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gl-pricing-original {
  color: #7C748E;
  font-size: clamp(30px, 7vw, 44px);
  line-height: 1;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 4px;
}

.gl-pricing-promotional {
  color: var(--purple-dark);
  font-size: clamp(44px, 11vw, 72px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.gl-pricing-final-price {
  font-size: clamp(48px, 12vw, 80px);
}

.gl-pricing-total {
  color: #160C2E;
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: -0.04em;
}

.gl-pricing-total-note {
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: -2px;
}

.gl-pricing-installment {
  color: var(--dark);
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.2;
  font-weight: 900;
}

.gl-pricing-or-line {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.gl-pricing-cta {
  width: 100%;
  max-width: none;
}

.gl-pricing-caption {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.gl-pricing-bonus-card {
  padding-top: 26px;
}

.gl-pricing-bonus-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

.gl-pricing-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.gl-pricing-bonus-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.gl-pricing-bonus-list li:last-child {
  border-bottom: none;
}

.gl-pricing-bonus-icon {
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  width: 28px;
  height: 28px;
  text-align: center;
  flex: none;
  justify-self: center;
}

.gl-pricing-bonus-list li strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.gl-pricing-bonus-list li div {
  width: 100%;
  text-align: center;
}

.gl-pricing-bonus-list li div span {
  display: block;
  color: #FFB029;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  margin-top: 4px;
  text-align: center;
}

.gl-pricing-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gl-pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.gl-pricing-row-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #85c35d;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  flex: none;
  color: #fff;
  justify-self: center;
}

.gl-pricing-row-content {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.gl-pricing-row-content strong {
  display: block;
  color: #fff;
  text-transform: none;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  padding-left: 0;
}

.gl-pricing-row-price {
  display: block;
  margin-top: 4px;
  color: #FFB029;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  padding-left: 0;
}

.gl-pricing-support {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(107, 47, 217, 0.08);
  color: var(--dark);
}

.gl-pricing-support strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-dark);
  font-size: 15px;
}

.gl-pricing-support p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .gl-pricing-shell {
    padding: 32px;
  }

  .gl-pricing-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .gl-pricing-card {
    padding: 26px 24px;
    width: min(100%, 760px);
  }

  .gl-pricing-package-card,
  .gl-pricing-bonus-card,
  .gl-pricing-final-card {
    width: min(100%, 760px);
  }

  .gl-pricing-row-content strong {
    font-size: 16px;
  }

  .gl-pricing-header p {
    font-size: 16px;
  }
}

/* Cards brancos dentro da oferta: texto escuro para manter legibilidade */
.gl-cta .gl-list-item,
.gl-cta .gl-list-item strong,
.gl-cta .gl-list-item span {
  color: var(--dark) !important;
}

.gl-cta-compare {
  background: var(--dark);
  color: #ffffff;
}

.gl-cta-compare h2,
.gl-cta-compare p,
.gl-cta-compare .gl-list-item,
.gl-cta-compare .gl-list-item strong,
.gl-cta-compare .gl-list-item span {
  color: inherit;
}

.gl-cta-compare .gl-list-item {
  background: #ffffff !important;
  border: 1px solid rgba(107, 47, 217, 0.08);
  color: var(--dark) !important;
}

.gl-cta-compare .gl-check {
  color: #ffffff !important;
  background: var(--purple) !important;
}

.gl-cta-compare .gl-badge {
  background: #E9DDFD;
  color: #4B1FA3;
}

.gl-footer {
  padding: 24px 0;
  text-align: center;
  color: var(--text);
  font-size: 12px;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes glPopIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes glFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glFloatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes glPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes glPopFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gl-pop { animation: glPopIn 0.6s ease both; }
.gl-delay-1 { animation-delay: 0.1s; }
.gl-delay-2 { animation-delay: 0.2s; }
.gl-delay-3 { animation-delay: 0.3s; }
.gl-delay-4 { animation-delay: 0.4s; }


/* ==========================================================================
   MEDIA QUERIES (Ajustes Progressivos para Telas Maiores)
   ========================================================================== */
@media (min-width: 480px) {
  .gl-list-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .gl-hero,
  .gl-header {
    overflow-x: clip;
  }

  .gl-hero-grid > div,
  .gl-nav,
  .gl-logo {
    min-width: 0;
    width: 100%;
  }

  .gl-logo {
    max-width: 100%;
  }

  .gl-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    padding-inline: 4px;
    text-wrap: balance;
  }

  .gl-subtitle {
    max-width: 100%;
    padding-inline: 4px;
  }

  .gl-logo img {
    max-width: 100%;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .gl-nav {
    flex-direction: row;
    justify-content: space-between;
  }
  .gl-menu {
    display: flex;
    gap: 24px;
  }
  .gl-actions {
    flex-direction: row;
    justify-content: center;
  }
  .gl-btn {
    width: auto;
  }
  .gl-hero-grid {
    text-align: left;
    align-items: center;
  }
  
  .gl-features { grid-template-columns: repeat(2, 1fr); }
  .gl-steps { grid-template-columns: repeat(3, 1fr); }
  
  .gl-feature, .gl-step, .gl-testimonial-card {
    text-align: left;
    align-items: flex-start;
  }
  .gl-testimonial-card { align-items: center; }
  .gl-user { flex-direction: row; }
  
  .gl-app-carousel-track, .gl-social-carousel-track {
    padding: 0 calc((100vw - 1120px) / 2 + 16px);
  }
  .gl-phone { transform: rotate(3deg); }
}

@media (min-width: 1024px) {
  .gl-hero { padding: 60px 0; }
  .gl-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
  .gl-section { padding: 80px 0; }
  .gl-features { grid-template-columns: repeat(4, 1fr); }
  .gl-split { grid-template-columns: 1fr 1fr; gap: 48px; }
  .gl-image-box { min-height: 480px; }
  .gl-cta { border-radius: 32px; padding: 60px 40px; }
}/* End custom CSS */