/* ==========================================================================
   LANDING PAGE — Premium Overrides for ChatGPT Visibility Service
   Inspired by Stripe, Linear, Vercel — minimal, spacious, conversion-focused
   ========================================================================== */

/* --- Variables --- */
:root {
  --lp-black: #0a0a0b;
  --lp-dark: #1c1c1c;
  --lp-gray-600: #54545f;
  --lp-gray-400: #8d8e99;
  --lp-gray-200: #e8e8ed;
  --lp-gray-100: #f5f5f7;
  --lp-white: #ffffff;
  --lp-purple: #7153d9;
  --lp-purple-dark: #4526b1;
  --lp-purple-light: #a78bfa;
  --lp-radius: 12px;
  --lp-radius-sm: 8px;
}

/* --- Base resets for landing look --- */
body {
  background: var(--lp-white);
  color: var(--lp-gray-600);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.lp-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .lp-section { padding: 60px 0; }
}

/* --- Typography --- */
.lp-heading-xl {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--lp-black);
  margin: 0;
}

.lp-heading-lg {
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lp-black);
  margin: 0;
}

.lp-heading-md {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--lp-black);
  margin: 0;
}

.lp-text-lg {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--lp-gray-400);
  max-width: 540px;
}

.lp-text-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lp-gray-400);
}

.lp-text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-gray-400);
}

/* --- Labels / tags --- */
.lp-label {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-purple);
  margin-bottom: 20px;
}

/* --- Grid helpers --- */
.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .lp-grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .lp-grid-3 { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Buttons --- */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-black);
  color: var(--lp-white) !important;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.lp-btn-primary:hover {
  background: #2a2a2b;
  transform: translateY(-1px);
  color: var(--lp-white) !important;
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lp-black) !important;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid var(--lp-gray-200);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.lp-btn-secondary:hover {
  border-color: var(--lp-black);
  background: var(--lp-gray-100);
  color: var(--lp-black) !important;
}

.lp-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.lp-btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff !important;
}

/* --- Header (using template classes: .header-wrapper.sticky-header) --- */
.header-wrapper.sticky-header.sticky {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.call-meta_number {
  font-family: "Jost", sans-serif;
}

/* --- Hero --- */
.lp-hero {
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-hero { padding: 100px 0 60px; min-height: auto; }
}

.lp-hero .lp-heading-xl {
  max-width: 780px;
  margin-bottom: 24px;
}

.lp-hero-text {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--lp-gray-400);
  max-width: 540px;
  margin-bottom: 40px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.lp-hero-footnote {
  font-size: 0.85rem;
  color: var(--lp-gray-400);
  max-width: 480px;
}

/* --- Hero Chat Simulation --- */
.lp-chat {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  max-width: 420px;
  margin: 0 auto;
}
.lp-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lp-gray-200);
  margin-bottom: 16px;
}
.lp-chat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.lp-chat-dot:nth-child(1) { background: #fe5f57; }
.lp-chat-dot:nth-child(2) { background: #febc2e; }
.lp-chat-dot:nth-child(3) { background: #2bc840; }
.lp-chat-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lp-gray-400);
  margin-left: 8px;
}

.lp-bubble {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 90%;
}
.lp-bubble-user {
  background: var(--lp-gray-100);
  color: var(--lp-black);
  border-bottom-left-radius: 4px;
  margin-right: auto;
}
.lp-bubble-ai {
  background: var(--lp-purple);
  color: white;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.lp-bubble-ai strong {
  color: white;
  font-weight: 600;
}
.lp-bubble-ai ul {
  margin: 8px 0 4px;
  padding-left: 20px;
}
.lp-bubble-ai li {
  list-style: disc;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.lp-bubble-ai .lp-highlight {
  color: #ffd700;
  font-weight: 600;
}
.lp-chat-ellipsis {
  display: flex;
  gap: 6px;
  padding: 8px 0 4px 8px;
}
.lp-chat-ellipsis span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lp-gray-200);
  animation: pulse-dot 1.4s infinite;
}
.lp-chat-ellipsis span:nth-child(2) { animation-delay: 0.2s; }
.lp-chat-ellipsis span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.4; transform: scale(0.9); }
  40% { opacity: 1; transform: scale(1); }
}

/* --- Problem Section --- */
.lp-problem {
  background: var(--lp-gray-100);
}

.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .lp-compare { grid-template-columns: 1fr; gap: 24px; }
}

.lp-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  padding: 40px;
  transition: box-shadow 0.3s;
}
.lp-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.lp-card-label {
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.lp-card-label.is-bad { color: #ef4444; }
.lp-card-label.is-good { color: #22c55e; }

.lp-list {
  padding: 0;
  margin: 0;
}
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--lp-gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-gray-100);
}
.lp-list li:last-child { border-bottom: none; }
.lp-list li i {
  margin-top: 2px;
  font-size: 0.8rem;
}
.lp-list li .is-bad { color: #ef4444; }
.lp-list li .is-good { color: #22c55e; }

.lp-highlight-block {
  background: var(--lp-black);
  color: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
.lp-highlight-block p {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--lp-white);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Process Section --- */
.lp-process-item {
  position: relative;
  padding-top: 48px;
}
.lp-process-number {
  font-family: "Jost", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--lp-gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.lp-process-item h3 {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--lp-black);
  margin-bottom: 8px;
}
.lp-process-item p {
  font-size: 0.95rem;
  color: var(--lp-gray-400);
  max-width: 320px;
}

/* --- Proof Section --- */
.lp-proof {
  background: #4526b1;
  color: var(--lp-white);
}
.lp-proof .lp-heading-lg,
.lp-proof .lp-label { color: var(--lp-white); }
.lp-proof .lp-label { color: var(--lp-purple-light); }

.lp-number-large {
  font-family: "Jost", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lp-white);
  margin: 0;
}

.lp-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .lp-proof-stats { grid-template-columns: 1fr; gap: 32px; }
}

.lp-proof-stat strong {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--lp-white);
  margin-bottom: 4px;
}
.lp-proof-stat span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* --- Form Section --- */
.lp-form-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-form-group label {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-black);
}

.lp-form-group input,
.lp-form-group textarea {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1.5px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-white);
  color: var(--lp-black);
  transition: border-color 0.2s;
  width: 100%;
}
.lp-form-group input:focus,
.lp-form-group textarea:focus {
  outline: none;
  border-color: var(--lp-purple);
  box-shadow: 0 0 0 3px rgba(113, 83, 217, 0.1);
}
.lp-form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.lp-form-note {
  font-size: 0.8rem;
  color: var(--lp-gray-400);
  text-align: center;
  margin-top: 12px;
}

.lp-btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* --- Contact alternatives --- */
.lp-contact-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .lp-contact-alt { grid-template-columns: 1fr; }
}

.lp-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1.5px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
}
.lp-contact-card:hover {
  border-color: var(--lp-purple);
  background: rgba(113, 83, 217, 0.03);
}
.lp-contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--lp-purple);
}
.lp-contact-card-text strong {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lp-black);
}
.lp-contact-card-text span {
  font-size: 0.8rem;
  color: var(--lp-gray-400);
}

/* --- Footer minimal --- */
.lp-footer {
  border-top: 1px solid var(--lp-gray-200);
  padding: 32px 0;
}
.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--lp-gray-400);
}
@media (max-width: 640px) {
  .lp-footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* --- FAQ compact --- */
.lp-faq-item {
  border-bottom: 1px solid var(--lp-gray-200);
  padding: 20px 0;
}
.lp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-black);
  cursor: pointer;
  padding: 0;
}
.lp-faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--lp-gray-400);
  transition: transform 0.2s;
}
.lp-faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.lp-faq-answer {
  font-size: 0.9rem;
  color: var(--lp-gray-400);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.lp-faq-answer.is-open {
  max-height: 300px;
  padding-top: 12px;
}

/* --- Stagger animation helper --- */
.lp-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.lp-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.lp-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.lp-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }

/* --- Utility --- */
.lp-mt-16 { margin-top: 16px; }
.lp-mt-24 { margin-top: 24px; }
.lp-mt-32 { margin-top: 32px; }
.lp-mt-48 { margin-top: 48px; }
.lp-mb-16 { margin-bottom: 16px; }
.lp-mb-24 { margin-bottom: 24px; }
.lp-mb-32 { margin-bottom: 32px; }

.lp-center {
  text-align: center;
}
.lp-center .lp-text-lg,
.lp-center .lp-text-md {
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
  .lp-card {
    padding: 28px 24px;
  }
  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-hero-actions a {
    justify-content: center;
  }
  .lp-highlight-block {
    padding: 28px 20px;
  }
  .lp-header-cta .lp-btn-primary {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

/* --- Dark section overrides --- */
@media (prefers-color-scheme: light) {
  /* keep light mode always — design is light */
}

/* --- Scroll-triggered reveal (simple polyfill for .lp-reveal) --- */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Divider --- */
.lp-divider {
  width: 40px;
  height: 3px;
  background: var(--lp-purple);
  border-radius: 2px;
}

/* --- Hero Image (ChatGPT Search) --- */
.lp-hero-image {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.lp-img-floating {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp-img-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* --- Proof Image (AI Performance) --- */
.lp-proof-image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.lp-img-shadow {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* --- Proof Metrics --- */
.lp-proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .lp-proof-metrics {
    grid-template-columns: 1fr;
  }
}

.lp-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-metric-number {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.lp-metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

/* --- Cost block --- */
.lp-cost-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 24px 28px;
}
.lp-cost-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.lp-cost-text strong {
  color: #fff;
  font-weight: 500;
}

/* --- Testimonial inline --- */
.lp-testimonial-inline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.lp-testimonial-inline .lp-ti-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lp-testimonial-inline .lp-ti-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.lp-testimonial-inline .lp-ti-text strong {
  color: #fff;
}
.lp-testimonial-inline .lp-ti-text .lp-ti-name {
  color: #a78bfa;
  font-weight: 500;
}

/* --- Urgency section --- */
.lp-urgency {
  background: var(--lp-white);
  border: 1.5px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  padding: 48px;
}
@media (max-width: 768px) {
  .lp-urgency { padding: 32px 24px; }
}

/* --- Form Card (stil icode.md premium) --- */
.form-card {
  background: #fff;
  border: 1.5px solid #e8e8ed;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.form-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-card-header {
  margin-bottom: 24px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.form-card-title {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a0a0b;
  margin-bottom: 6px;
  line-height: 1.3;
}

.form-card-sub {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #8d8e99;
  margin: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.form-fields .lp-form-group label {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0a0a0b;
}

.form-fields .lp-form-group input {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1.5px solid #e8e8ed;
  border-radius: 12px;
  background: #f8f9fa;
  color: #0a0a0b;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-fields .lp-form-group input:focus {
  outline: none;
  border-color: #7153d9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(113, 83, 217, 0.1);
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #4526b1 0%, #5435be 45%, #7153d9 66%);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(69, 38, 177, 0.25);
}
.btn-form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.btn-form-submit:hover svg {
  transform: translateX(3px);
}

.form-card-footer {
  margin-top: 20px;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  background: #f8f9fa;
  padding: 10px 16px;
  border-radius: 10px;
}
.form-trust span {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 400;
}
.form-trust svg {
  flex-shrink: 0;
  stroke: #9ca3af;
  width: 14px;
  height: 14px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #d0d0d7;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8ed;
}
.form-divider span {
  white-space: nowrap;
}

.form-alternatives {
  display: flex;
  gap: 10px;
}
@media (max-width: 400px) {
  .form-alternatives {
    flex-direction: column;
  }
}

.form-alt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid #e8e8ed;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #0a0a0b;
  transition: all 0.25s ease;
  background: #fff;
}
.form-alt-link:hover {
  border-color: #7153d9;
  background: rgba(113, 83, 217, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(113, 83, 217, 0.08);
}
.form-alt-link span {
  color: #0a0a0b;
}
.form-alt-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
