/* ===== Call History Check - Production Styles ===== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #eef2ff;
  --secondary: #0ea5e9;
  --secondary-light: #f0f9ff;
  --accent: #f59e0b;
  --accent-light: #fffbeb;
  --success: #10b981;
  --success-light: #ecfdf5;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== Header ===== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

@media (min-width: 768px) {
  .header {
    padding: 16px 0;
  }
}

.header-content {
  display: flex;
  justify-content: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .logo-section {
    gap: 16px;
  }
}

/* Logo in Circle - Fixed */
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--white);
  display: block;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }
}

.logo-text h1 {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .logo-text h1 {
    font-size: 22px;
  }
}

.logo-text p {
  font-size: 11px;
  color: var(--gray-500);
  margin: 2px 0 0 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .logo-text p {
    font-size: 13px;
  }
}

/* ===== Main Content ===== */
.main-content {
  padding: 20px 0 40px;
}

@media (min-width: 768px) {
  .main-content {
    padding: 40px 0 60px;
  }
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .page-grid {
    grid-template-columns: 480px 1fr;
    gap: 40px;
    max-width: 100%;
  }
}

/* ===== Main Card ===== */
.main-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px 16px 20px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 480px) {
  .main-card {
    padding: 28px 20px 24px;
  }
}

@media (min-width: 768px) {
  .main-card {
    padding: 32px 28px 32px;
  }
}

.card-top-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .card-top-icon {
    top: -40px;
  }
}

.icon-circle {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
  border: 5px solid var(--white);
}

@media (min-width: 768px) {
  .icon-circle {
    width: 80px;
    height: 80px;
  }
}

.icon-circle img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

@media (min-width: 768px) {
  .icon-circle img {
    width: 40px;
    height: 40px;
  }
}

.card-header {
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .card-header {
    margin-bottom: 24px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-logo .logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-100);
}

@media (min-width: 768px) {
  .header-logo .logo-img {
    width: 48px;
    height: 48px;
  }
}

.header-logo h2 {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .header-logo h2 {
    font-size: 24px;
  }
}

.header-logo .subtitle {
  font-size: 12px;
  color: var(--gray-500);
  margin: 4px 0 0 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .header-logo .subtitle {
    font-size: 13px;
  }
}

.banner-wrapper {
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .banner-wrapper {
    margin-bottom: 24px;
  }
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Form Section ===== */
.form-section {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-section {
    margin-bottom: 24px;
  }
}

.input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .input-label {
    font-size: 14px;
  }
}

.phone-input-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--white);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .phone-input-box {
    margin-bottom: 16px;
  }
}

.phone-input-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-right: 2px solid var(--gray-200);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--gray-50);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .country-code {
    padding: 16px;
    font-size: 16px;
  }
}

.flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .flag {
    width: 26px;
    height: 18px;
  }
}

.phone-input {
  flex: 1;
  border: none;
  padding: 14px 12px;
  font-size: 15px;
  outline: none;
  color: var(--gray-700);
  font-family: inherit;
  background: transparent;
  min-width: 0;
}

@media (min-width: 768px) {
  .phone-input {
    padding: 16px;
    font-size: 17px;
  }
}

.phone-input::placeholder {
  color: var(--gray-400);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

@media (min-width: 768px) {
  .submit-btn {
    padding: 18px;
    font-size: 17px;
  }
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== Networks Box - No Icon Colors ===== */
.networks-box {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .networks-box {
    padding: 22px;
    margin-bottom: 18px;
  }
}

.networks-label {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .networks-label {
    font-size: 11px;
    margin-bottom: 18px;
  }
}

.network-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .network-logos {
    gap: 16px;
  }
}

.net-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .net-item {
    padding: 14px 18px;
  }
}

.net-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.net-item img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: none !important;
}

@media (min-width: 768px) {
  .net-item img {
    height: 34px;
  }
}

.terms-text {
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
  padding: 0 8px;
}

@media (min-width: 768px) {
  .terms-text {
    font-size: 13px;
  }
}

.terms-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

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

/* ===== Right Column ===== */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-icon.blue {
  background: var(--secondary-light);
  color: var(--secondary);
}

.info-icon.green {
  background: var(--success-light);
  color: var(--success);
}

.info-icon.yellow {
  background: var(--accent-light);
  color: var(--accent);
}

.info-icon.purple {
  background: var(--primary-light);
  color: var(--primary);
}

.info-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 4px 0;
}

.info-body p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

.details-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.details-card h3 {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 14px 0;
}

.details-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--gray-200);
}

.tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.security-banner {
  background: var(--success-light);
  border: 2px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.shield-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.security-banner p {
  font-size: 13px;
  color: #065f46;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0 28px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-col p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-nets {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nets img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: none !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.75;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  background: var(--white);
  margin: 5% auto;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 95%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
}

/* Modal Header Bar - Fixed positioning */
.modal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.close-btn {
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  color: var(--gray-600);
  line-height: 1;
  background: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.close-btn:hover {
  color: var(--gray-800);
  background: var(--gray-100);
}

/* Fixed Back Button - Better Design */
.modal-back-btn {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.modal-back-btn:hover {
  background: var(--gray-200);
  border-color: var(--primary);
  color: var(--primary);
}

.modal-back-btn::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'%3E%3C/path%3E%3Cpath d='M12 19l-7-7 7-7'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  flex: 1;
  text-align: center;
  margin: 0 12px;
}

/* ===== Loading Modal ===== */
.fetching-modal {
  padding: 48px 28px;
  text-align: center;
}

/* Themed Loading Modal */
.fetching-modal.themed-loading .fetching-spinner.themed-spinner {
  --spinner-border: var(--theme-accent, #4f46e5);
}

.fetching-spinner.themed-spinner .spinner-ring {
  border-color: var(--theme-accent, #4f46e5)30;
  border-top-color: var(--theme-accent, #4f46e5);
}

.spinner-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.fetching-modal.themed-loading h3 {
  background: var(--theme-gradient, linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fetching-modal.themed-loading .progress-bar.themed-progress-bar {
  background: var(--progress-bg, #e2e8f0);
}

.fetching-modal.themed-loading .progress-fill {
  background: var(--theme-gradient, linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%));
}

.fetching-spinner {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.spinner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.fetching-modal h3 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 800;
}

.fetching-status {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 18px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 3px;
  transition: width 0.1s;
}

.secure-text {
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
}

/* ===== Almost There Screen ===== */
.almost-there-screen {
  padding: 40px 28px;
  text-align: center;
}

.success-icon {
  margin-bottom: 20px;
}

.almost-there-screen h2 {
  color: var(--success);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.phone-display {
  display: inline-block;
  background: var(--success-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 24px;
  border: 2px solid #a7f3d0;
}

.info-card-green {
  background: var(--success-light);
  border: 2px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #065f46;
  font-size: 15px;
  margin-bottom: 12px;
}

.info-card-header span {
  font-size: 15px;
}

.info-card-green p {
  color: #065f46;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.warning-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.warning-icon {
  font-size: 18px;
}

.warning-box span {
  font-size: 14px;
  color: var(--gray-600);
}

.ready-text {
  font-weight: 700;
  color: #065f46;
  margin: 0;
  font-size: 15px;
}

.continue-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  transition: all 0.3s;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* ===== Blurred Preview with Dropdown ===== */
.blurred-preview {
  background: var(--white);
  padding-bottom: 20px;
  padding-top: 8px;
}

/* Themed Blurred Preview */
.blurred-preview-themed {
  background: var(--theme-bg, #f8fafc);
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.preview-header-themed {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.preview-icon {
  font-size: 32px;
}

.preview-content-blurred {
  padding: 24px 20px;
}

.blur-message {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
}

.sample-items-blurred {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blurred-item {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* New blurred item card styles */
.blurred-item-card {
  background: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blurred-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.blurred-item-sub {
  display: flex;
  align-items: center;
}

.blurred-line.medium {
  width: 70%;
}

.unlock-hint {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  font-style: italic;
}

.blurred-line {
  height: 12px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

.blurred-line.long {
  width: 100%;
}

.blurred-line.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.continue-premium-btn {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.continue-premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.preview-tabs {
  padding: 14px 18px;
  border-bottom: 2px solid var(--gray-200);
}

.platform-dropdown {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  transition: all 0.2s;
}

.platform-dropdown:hover {
  border-color: var(--primary);
}

.platform-dropdown:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.call-list-blurred {
  padding: 10px 0;
}

.call-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
}

.call-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-info {
  flex: 1;
  filter: blur(4px);
}

.call-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-700);
}

.call-meta {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.call-type {
  font-size: 13px;
  font-weight: 700;
}

.call-type.incoming,
.call-type.outgoing {
  color: var(--success);
}

.call-type.missed {
  color: var(--danger);
}

.call-time {
  font-size: 13px;
  color: var(--gray-500);
}

.call-duration {
  font-size: 14px;
  color: var(--gray-500);
  filter: blur(4px);
}

.preview-cta {
  width: calc(100% - 36px);
  margin: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  transition: all 0.3s;
}

.preview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* ===== Account Input Modal (Instagram/Facebook) ===== */
.account-input-modal {
  background: var(--white);
  padding: 28px;
}

.account-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.account-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.account-modal-icon.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.account-modal-icon.facebook {
  background: #1877f2;
  color: white;
}

.account-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.account-modal-header p {
  font-size: 14px;
  color: var(--gray-500);
}

.account-input-group {
  margin-bottom: 20px;
}

.account-input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.account-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
}

.account-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.account-input::placeholder {
  color: var(--gray-400);
}

.account-modal-cta {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.account-modal-cta.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.account-modal-cta.facebook {
  background: #1877f2;
  color: white;
}

.account-modal-cta:hover {
  transform: translateY(-2px);
}

.account-modal-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ===== Premium Screen - Enhanced ===== */
.premium-screen-new {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, var(--secondary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  min-height: 100vh;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.premium-header-new {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--white);
}

.premium-header-new img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.premium-title h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
}

.premium-title p {
  font-size: 13px;
  opacity: 0.9;
  margin: 3px 0 0 0;
}

.close-premium {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.close-premium:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Featured Plan Card */
.featured-plan {
  background: var(--white);
  margin: 18px;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 3px solid var(--success);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.featured-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--success), var(--primary), var(--secondary));
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.featured-plan-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.featured-plan-header h2 {
  font-size: 19px;
  color: var(--gray-800);
  margin: 0;
  font-weight: 800;
}

.tool-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
}

.check-icon {
  color: var(--success);
  font-weight: 800;
  font-size: 18px;
}

.featured-price {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 16px;
  animation: pulsePrice 2s ease infinite;
}

@keyframes pulsePrice {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.featured-price .rupee {
  font-size: 24px;
}

.plan-validity {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Plan Tabs */
.plan-tabs {
  display: flex;
  gap: 12px;
  padding: 0 18px 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.plan-tabs::-webkit-scrollbar {
  display: none;
}

.plan-tab {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.plan-tab:hover {
  background: rgba(255, 255, 255, 0.25);
}

.plan-tab.active {
  background: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.plan-tab.recommended {
  background: var(--white);
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.plan-tab-name {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.plan-tab.active .plan-tab-name,
.plan-tab.recommended .plan-tab-name {
  color: var(--gray-700);
}

.plan-tab-price {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.plan-tab.active .plan-tab-price,
.plan-tab.recommended .plan-tab-price {
  color: var(--gray-700);
  font-weight: 800;
}

.plan-tab-duration {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.plan-tab.active .plan-tab-duration,
.plan-tab.recommended .plan-tab-duration {
  color: var(--gray-500);
}

.buy-now-btn {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.india-flag {
  font-size: 18px;
}

.premium-banner {
  margin: 0 18px 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.premium-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Payment Form ===== */
.payment-form-screen {
  background: var(--white);
}

.payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 2px solid var(--gray-200);
}

.back-button {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-button:hover {
  background: var(--gray-200);
  border-color: var(--primary);
  color: var(--primary);
}

.payment-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}

.payment-plan-summary {
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  margin: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--primary);
}

.payment-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
}

.payment-plan-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

/* UPI QR Section */
.upi-qr-section {
  background: var(--gray-50);
  margin: 0 18px 18px;
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-light);
  text-align: center;
}

.qr-code-container {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 16px;
  border: 2px solid var(--gray-200);
}

.qr-code-img {
  width: 200px;
  height: 200px;
  display: block;
}

.qr-instruction {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 500;
}

.open-upi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.open-upi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.open-upi-btn svg {
  width: 20px;
  height: 20px;
}

.payer-section {
  background: var(--gray-50);
  margin: 0 18px 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.payer-section label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.payer-input-new {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
}

.payer-input-new:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.helper-text-new {
  font-size: 13px;
  color: var(--gray-500);
  margin: 8px 0 0 0;
}

.confirm-pay-btn {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: all 0.3s;
}

.confirm-pay-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.confirm-pay-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.secure-note {
  text-align: center;
  padding: 0 18px 18px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== Payment Success ===== */
.payment-success {
  padding: 40px 28px;
  text-align: center;
}

.success-animation {
  margin-bottom: 24px;
}

.payment-success h2 {
  color: var(--success);
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
}

.payment-success>p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.success-details {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.detail-item span {
  color: var(--gray-600);
}

.detail-item strong {
  color: var(--gray-800);
}

/* ===== Result Screen ===== */
.result-screen {
  padding: 28px;
}

.result-header {
  text-align: center;
  margin-bottom: 24px;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.result-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.result-header p {
  font-size: 15px;
  color: var(--gray-500);
}

.result-section {
  margin-bottom: 24px;
}

.result-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-item {
  background: var(--gray-50);
  padding: 14px;
  border-radius: var(--radius);
}

.result-item.full-width {
  grid-column: span 2;
}

.result-item .label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.result-item .value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.status-badge.active {
  background: var(--success-light);
  color: var(--success);
}

.status-badge.inactive {
  background: var(--danger-light);
  color: var(--danger);
}

.close-result-btn {
  width: 100%;
  background: var(--gray-100);
  color: var(--gray-700);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.close-result-btn:hover {
  background: var(--gray-200);
}

/* ===== Error Screen ===== */
.error-screen {
  padding: 40px 28px;
  text-align: center;
}

.error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.error-screen h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.error-screen p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.try-again-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.try-again-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== Responsive - Mobile First ===== */
@media (max-width: 1023px) {
  .page-grid {
    max-width: 100%;
    padding-bottom: 20px;
  }

  .right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
  }

  .right-col>* {
    margin: 0;
  }

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

  .result-item.full-width {
    grid-column: span 1;
  }

  .plan-tabs {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px 18px;
  }

  .plan-tab {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 12px 16px;
  }

  .plan-tab.recommended {
    transform: scale(1);
  }

  .featured-plan {
    margin: 12px;
    padding: 16px;
  }

  .buy-now-btn {
    width: calc(100% - 36px);
    margin: 0 18px 18px;
  }

  .premium-banner {
    margin: 0 18px 18px;
  }

  .payment-plan-summary {
    margin: 12px;
    padding: 16px;
  }

  .upi-qr-section,
  .payer-section {
    margin: 0 18px 18px;
    padding: 18px;
  }

  .qr-code-img {
    width: 180px;
    height: 180px;
  }

  .confirm-pay-btn {
    width: calc(100% - 36px);
    margin: 0 18px 18px;
  }

  .secure-note {
    padding: 0 18px 18px;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 95vh;
  }
}

@media (max-width: 380px) {
  .logo-section {
    gap: 10px;
  }

  .logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .main-card {
    padding: 44px 16px 16px;
  }

  .icon-circle {
    width: 68px;
    height: 68px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
  }

  .header-logo h2 {
    font-size: 18px;
  }

  .network-logos {
    gap: 8px;
  }

  .net-item {
    padding: 8px 10px;
  }

  .net-item img {
    height: 22px;
  }
}

/* ===== Social Media Popup Styles ===== */
.social-media-popup {
  padding: 30px 20px;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
}

/* Themed Social Media Popup */
.social-media-popup.themed-popup .popup-header.themed-header {
  margin: -30px -20px 20px;
  padding: 24px 20px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.social-media-popup.themed-popup .input-group.themed-input-group {
  transition: all 0.3s;
}

.social-media-popup.themed-popup input.themed-input:focus {
  box-shadow: 0 0 0 3px var(--theme-border, #e1306c)30;
}

.social-media-popup.themed-popup button.themed-submit-btn {
  transition: all 0.3s;
}

.social-media-popup.themed-popup button.themed-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.popup-icon {
  font-size: 36px;
  line-height: 1;
}

.popup-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.popup-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.input-group {
  text-align: left;
  margin-bottom: 25px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

.social-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.social-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-hint {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 8px;
  margin-bottom: 0;
}

.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.cancel-btn,
.submit-social-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Inter', sans-serif;
}

.cancel-btn {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.cancel-btn:hover {
  background: #e2e8f0;
  color: #475569;
}

.submit-social-btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.submit-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.privacy-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

/* Mobile Responsive for Social Popup */
@media (max-width: 480px) {
  .social-media-popup {
    padding: 20px 15px;
  }
  
  .popup-header h3 {
    font-size: 18px;
  }
  
  .popup-icon {
    font-size: 28px;
  }
  
  .input-group {
    padding: 15px;
  }
  
  .popup-actions {
    flex-direction: column;
  }
  
  .cancel-btn,
  .submit-social-btn {
    width: 100%;
  }
}