/* ===== TRUCKFIN - GLOBAL STYLES ===== */

/* ===== SELF-HOSTED FONTS (Inter + Outfit) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, sans-serif;
  background: #0b162c;
  color: white;
  overflow-x: hidden;
}

/* ===== HERO CARD ===== */
.hero-card {
  background: #1df29d;
  width: 100%;
  border-radius: 2.5rem;
  padding: 2.5rem 3rem 12rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  min-height: 680px;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 30;
  min-height: 48px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b162c;
  cursor: pointer;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-family: Outfit, sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.8;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: #0b162c;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 12px;
  transition: opacity 0.2s;
}

.login-link:hover {
  opacity: 0.7;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b162c;
  color: white;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.hero-section {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 30;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  color: #0b162c;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-arrow {
  background: #0b162c;
  color: white;
  border-radius: 9999px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 56rem;
  letter-spacing: -0.025em;
  font-family: Outfit, sans-serif;
  color: #0b162c;
}

.hero-highlight {
  background: #0b162c;
  color: #1df29d;
  padding: 8px 24px;
  border-radius: 1rem;
  display: inline-block;
  margin-top: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  max-width: 42rem;
  padding: 0 16px;
  color: #0b162c;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2.5rem;
}

.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #0b162c;
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1rem;
}

.btn-dark:hover {
  transform: scale(1.05);
}

.btn-white {
  background: white;
  color: #0b162c;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1rem;
}

.btn-white:hover {
  transform: scale(1.05);
}

/* ===== SPARKLES ===== */
.sparkle {
  position: absolute;
  pointer-events: none;
}

.sparkle-1 {
  top: 192px;
  left: 128px;
  width: 48px;
  height: 48px;
  opacity: 0.8;
}

.sparkle-2 {
  top: 160px;
  right: 192px;
  width: 64px;
  height: 64px;
  opacity: 0.9;
}

/* ===== FLOATING CARDS ===== */
.floating-card {
  position: absolute;
  width: 192px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.floating-left {
  left: 5%;
  top: 45%;
  transform: rotate(-12deg);
}

.floating-right {
  right: 5%;
  top: 55%;
  transform: rotate(12deg);
}

.fc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fc-header h4 {
  color: #0b162c;
  font-weight: 700;
  font-size: 0.75rem;
}

.fc-sub {
  color: rgba(11, 22, 44, 0.7);
  font-size: 10px;
  margin-top: 2px;
}

.fc-badge {
  color: #1df29d;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 6px;
  border-radius: 9999px;
  font-size: 8px;
  font-weight: 700;
}

.fc-value {
  margin-top: 12px;
  text-align: center;
}

.fc-value h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0b162c;
}

.fc-value h2 span {
  font-size: 1.25rem;
}

.fc-value p {
  color: rgba(11, 22, 44, 0.6);
  font-size: 10px;
  font-weight: 500;
  margin-top: 4px;
}

.fc-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 32px;
  margin: 12px 0 8px;
  opacity: 0.5;
}

.fc-bars div {
  width: 6px;
  background: #0b162c;
  border-radius: 2px 2px 0 0;
}

.fc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(11, 22, 44, 0.1);
}

.fc-amount {
  font-size: 10px;
  font-weight: 700;
  color: #0b162c;
}

.fc-label {
  font-size: 8px;
  color: rgba(11, 22, 44, 0.6);
}

/* ===== ACTIVE USERS ===== */
.active-users {
  position: absolute;
  bottom: 130px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 30;
}

.user-avatars {
  display: flex;
}

.user-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid #1df29d;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-left: -12px;
}

.user-avatars img:first-child {
  margin-left: 0;
}

.au-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  display: block;
  color: #0b162c;
}

.au-count {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #0b162c;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  min-height: 140px;
  background: #0b162c;
  border-top-left-radius: 3rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  color: white;
}

.stats-curve {
  display: block;
  position: absolute;
  left: -47px;
  bottom: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 10;
}

.stats-info {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 45%;
}

.stats-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 6px solid rgba(29, 242, 157, 0.2);
  background: #0b162c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.stats-desc {
  font-size: 0.75rem;
  color: #d1d5db;
  line-height: 1.625;
  font-weight: 500;
}

.stats-numbers {
  display: flex;
  width: 50%;
  justify-content: space-around;
  align-items: center;
}

.stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 4px;
  display: block;
}

/* ===== FEATURES ===== */
.features-section {
  margin-top: 8rem;
  margin-bottom: 6rem;
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: Outfit, sans-serif;
}

.green {
  color: #1df29d;
}

.section-desc {
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #1df29d;
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 242, 157, 0.1);
  color: #1df29d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 20px;
  flex: 1;
}

.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #d1d5db;
  font-size: 0.75rem;
  font-weight: 500;
}

.feature-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  color: #1df29d;
}

.check-dark {
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing-section {
  margin-bottom: 6rem;
  width: 100%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1;
  max-width: 400px;
  min-width: 300px;
}

.price-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.price span {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 400;
}

.price.big {
  font-size: 3.75rem;
  font-weight: 900;
  color: #0b162c;
}

.price.big span {
  color: rgba(11, 22, 44, 0.7);
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card.popular {
  background: #1df29d;
  border-radius: 1.5rem;
  padding: 2rem;
  transform: scale(1.05);
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(29, 242, 157, 0.15);
}

.price-card.popular h3 {
  color: #0b162c;
  font-weight: 800;
}

.price-card.popular ul {
  color: #0b162c;
  font-weight: 600;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background: #0b162c;
  color: white;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-btn {
  width: 100%;
  padding: 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.price-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.price-btn-dark {
  width: 100%;
  padding: 16px;
  border-radius: 9999px;
  background: #0b162c;
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.price-btn-dark:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(11, 22, 44, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ===== AUTH PAGES ===== */
.auth-left {
  display: none;
  flex: 1;
  background: #1df29d;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem;
  position: relative;
  overflow: hidden;
}

.auth-bg-blur-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(100px);
  border-radius: 9999px;
}

.auth-bg-blur-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(11, 22, 44, 0.1);
  filter: blur(80px);
  border-radius: 9999px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b162c;
  cursor: pointer;
  transition: opacity 0.2s;
}

.auth-logo:hover {
  opacity: 0.8;
}

.auth-badge {
  background: #0b162c;
  color: #1df29d;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(11, 22, 44, 0.2);
}

.auth-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: #0b162c;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: Outfit, sans-serif;
  letter-spacing: -0.025em;
}

.auth-subtitle {
  color: rgba(11, 22, 44, 0.75);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0b162c;
  font-weight: 700;
  font-size: 1rem;
}

.auth-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: #0b162c;
  color: #1df29d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-social-proof {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-right {
  width: 100%;
  background: #0b162c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.auth-right-glow {
  position: absolute;
  top: 5%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(29, 242, 157, 0.05);
  filter: blur(100px);
  border-radius: 9999px;
  z-index: 0;
}

.auth-mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.auth-form-container {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 10;
}

.auth-form-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  font-family: Outfit, sans-serif;
  margin-bottom: 8px;
}

.auth-form-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px 14px 48px;
  color: white;
  outline: none;
  font-size: 0.875rem;
  transition: all 0.2s;
  font-family: Inter, sans-serif;
}

.form-input:focus {
  border-color: #1df29d;
  box-shadow: 0 0 0 4px rgba(29, 242, 157, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.form-input::placeholder {
  color: #6b7280;
}

.phone-prefix {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 12px;
  padding-left: 8px;
  pointer-events: none;
}

.toggle-pw {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: transparent;
  border: none;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.toggle-pw:hover {
  color: white;
}

.form-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox {
  accent-color: #1df29d;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.875rem;
  color: #9ca3af;
  user-select: none;
}

.forgot-link {
  font-size: 0.875rem;
  color: #1df29d;
  font-weight: 500;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.terms-group {
  display: flex;
  align-items: flex-start;
  margin: 8px 0 16px;
  gap: 12px;
}

.terms-label {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.5;
  cursor: pointer;
}

.terms-label a {
  color: #1df29d;
  text-decoration: none;
}

.terms-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: #1df29d;
  color: #0b162c;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: Inter, sans-serif;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(29, 242, 157, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.auth-switch {
  margin-top: 2rem;
  text-align: center;
}

.auth-switch span {
  color: #9ca3af;
  font-size: 0.875rem;
}

.auth-switch a {
  color: #1df29d;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ===== ALERTS ===== */
.alert {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-error {
  background: rgba(233, 0, 100, 0.1);
  border: 1px solid rgba(233, 0, 100, 0.3);
  color: #e90064;
}

.alert-success {
  background: rgba(29, 242, 157, 0.1);
  border: 1px solid rgba(29, 242, 157, 0.3);
  color: #1df29d;
}

/* ===== RESPONSIVE ===== */
.hide-mobile {
  display: none;
}

@media(min-width:768px) {
  .hide-mobile {
    display: block;
  }

  .hero-card {
    padding: 2.5rem 3rem 12rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .stats-bar {
    flex-direction: row;
  }

  .active-users {
    bottom: 160px;
    left: 48px;
  }
}

@media(min-width:1024px) {
  .auth-left {
    display: flex;
  }

  .auth-right {
    width: 500px;
  }

  .auth-mobile-logo {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .floating-card {
    display: flex;
  }
}

@media(max-width:1023px) {
  .nav-links {
    display: none;
  }

  .floating-card {
    display: none !important;
  }

  .stats-bar {
    width: 100%;
    flex-direction: column;
    border-top-left-radius: 0;
    gap: 1.5rem;
  }

  .stats-curve {
    display: none;
  }

  .stats-info {
    width: 100%;
  }

  .stats-numbers {
    width: 100%;
    justify-content: space-between;
  }

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

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

  .price-card.popular {
    transform: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .auth-title {
    font-size: 2.5rem;
  }
}

@media(min-width:1024px) and (max-width:1279px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1280px) {
  .auth-right {
    width: 600px;
  }

  .auth-left {
    padding: 5rem;
  }

  .auth-title {
    font-size: 3.75rem;
  }
}