/* ===== ROOT ===== */
:root {
  --dark: #252f2d;
  --black: #000;
  --white: #fff;
  --border: #e5e7eb;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: #fff;
  color: var(--dark);
}

/* ===== HEADER ===== */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.header-wrap {
  max-width: 1400px;
  margin: auto;
  padding: 18px 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand img {
  height: 90px;
}

/* Nav */
.top-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.top-nav a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
}

.top-nav a.active {
  color: var(--black);
  border-bottom: 2px solid var(--black);
  padding-bottom: 6px;
}

/* Actions */
.header-actions {
  display: flex;
  gap: 12px;
}

.btn-dark {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid #9ca3af;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dark);
}

/* ===== HERO ===== */
.hero-saas {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#f1f5f9 1px, transparent 1px),
    linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #111;
}

.underscore {
  font-weight: 700;
}

/* Subtitle */
.hero-sub {
  margin-top: 20px;
  color: #6b7280;
  font-size: 18px;
}

/* Logos */
/* ===== TRUST LOGOS SLIDER ===== */
.trusted-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
  position: relative;
}

.trusted-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.trusted-track span {
  font-size: 20px;
  font-weight: 500;
  color: #9aa0a6;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.8;
}

/* smooth infinite scroll */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* subtle fade edges (premium touch) */
.trusted-slider::before,
.trusted-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.trusted-slider::before {
  left: 0;
  
}

.trusted-slider::after {
  right: 0;
  
}


/* ===== FLOATING CTA ===== */
.floating-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  z-index: 3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .floating-cta {
    flex-direction: column;
    border-radius: 24px;
  }
}




/* ===== FOUNDER HERO ===== */
/* ===== HERO LAYOUT ===== */

/* ===== HERO CONTAINER ===== */


/* ===== FOUNDER GRID ===== */
.hero-founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 64px;
  align-items: center;
}

/* ===== LEFT CONTENT ===== */
.founder-left h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.founder-left p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 560px;
}

/* ===== RIGHT IMAGE ===== */
.founder-right {
  text-align: center;
}

.founder-img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

/* ===== NAME ===== */
.founder-name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 18px;
}

.founder-role {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    padding: 80px 20px;
  }

  .hero-founder {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .founder-left h1 {
    font-size: 32px;
  }

  .founder-left p {
    margin-left: auto;
    margin-right: auto;
  }
}







/* ================= FLOATING SOCIAL LINKS ================= */
.social-fixed {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

/* Individual icon buttons */
.social-fixed a {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* SVG size normalization */
.social-fixed svg {
  width: 20px;
  height: 20px;
}

/* Hover effect */
.social-fixed a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Accessibility focus */
.social-fixed a:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .social-fixed {
    right: 12px;
  }

  .social-fixed a {
    width: 38px;
    height: 38px;
  }

  .social-fixed svg {
    width: 18px;
    height: 18px;
  }
}

/* Hide on very small screens (optional) */
@media (max-width: 420px) {
  .social-fixed {
    display: none;
  }
}






/* ================= FOOTER ================= */
.site-footer {
  background: #252f2d;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 28px;
  font-family: "Poppins", sans-serif;
}

/* Container */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

/* Brand section */
.footer-col.brand h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col.brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.75);
}

/* Section titles */
.footer-col h4 {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 500;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* Links */
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.25s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* Contact info */
.contact-info li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info i {
  font-size: 14px;
  color: #ffffff;
}

/* CTA */
.footer-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: #ffffff;
  color: #252f2d;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* ================= SOCIAL ICONS ================= */
.site-footer .social_icon {
  margin-top: 18px;
}

.site-footer .social_icon ul {
  display: flex;
  gap: 12px;
}

.site-footer .social_icon ul li a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.25s ease;
}

.site-footer .social_icon ul li a:hover {
  background: #ffffff;
  color: #252f2d;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  padding-left: 50px;
  padding-right: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* Footer Logo */
.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  display: block;
}



.site-footer .social_icon ul {
  display: flex;
  gap: 12px;
  padding: 0;     /* ✅ FIX */
  margin: 0;      /* ✅ FIX */
  list-style: none;
}











/* ================= PLANS ================= */
.plans {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.plans h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.plans .subtitle {
  max-width: 620px;
  margin: 0 auto 64px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.plan-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 42px 32px;
  text-align: left;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* PRICE */
.price {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
}

.currency {
  font-size: 18px;
  vertical-align: top;
  margin-right: 4px;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.features li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

/* POPULAR */
.plan-card.popular {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #ffffff;
  transform: scale(1.05);
}

.plan-card.popular .plan-desc,
.plan-card.popular .features li {
  color: rgba(255, 255, 255, 0.8);
}

.plan-card.popular .badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: #22c55e;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #111827;
  color: #ffffff;
}

.btn-dark {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .plans h2 {
    font-size: 32px;
  }
}






/* ================= SERVICES ================= */
.services {
  padding: 0 20px;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.services .subtitle {
  max-width: 700px;
  margin: 0 auto 72px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.service-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 24px;
  padding: 42px 32px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* ICON */
.service-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card i {
  font-size: 22px;
  color: #2563eb;
}

/* TEXT */
.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 32px;
  }
}






/* ================= CLIENTS ================= */
.clients {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  text-align: center;
}

.clients h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.clients .subtitle {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* LOGOS GRID */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 16px;
  font-weight: 600;
  font-size: 15px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* STATS */
.client-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}

.stat p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients h2 {
    font-size: 32px;
  }

  .client-stats {
    gap: 40px;
  }
}






/* ================= CONNECT POPUP ================= */
.connect-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

/* OVERLAY */
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(6px);
}

/* CARD */
.popup-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
  animation: popupScale 0.4s ease;
  z-index: 1;
}

@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}

/* TEXT */
.popup-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.popup-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ACTIONS */
.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: #111827;
  color: #ffffff;
}

/* TRUST */
.popup-trust {
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .popup-card {
    padding: 36px 26px;
    border-radius: 22px;
  }
}






/* ================= COMPANY INFO ================= */
/* ================= COMPANY INFO ================= */
.company-info {
  padding: 120px 20px;
  background: #ffffff;
}

.company-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* LEFT */
.company-left {
  text-align: center;
}

.company-logo-box {
  
}

.company-logo {
  max-width: 220px;
  width: 100%;
}

.company-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
}

/* RIGHT */
.company-right h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 18px 0;
}

.company-right p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 640px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .company-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-right p {
    margin-left: auto;
    margin-right: auto;
  }
}





/* ================= CONTACT & LOCATION ================= */
.am-contact-location {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  text-align: center;
}

.am-contact-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.am-contact-subtitle {
  max-width: 720px;
  margin: 0 auto 72px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.am-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

/* CONTACT INFO */
.am-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.am-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.am-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.am-info-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.am-info-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* MAP */
.am-map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.am-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .am-contact-grid {
    grid-template-columns: 1fr;
  }

  .am-contact-info {
    grid-template-columns: 1fr;
  }

  .am-contact-title {
    font-size: 32px;
  }
}






/* ================= BUSINESS VERIFICATION ================= */
.am-verification {
  padding: 0 20px;
  background: #ffffff;
  text-align: center;
}

.am-verification-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}

.am-verification-subtitle {
  max-width: 760px;
  margin: 0 auto 72px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.am-verification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.am-doc-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 24px;
  padding: 42px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.am-doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.1);
}

/* ICON */
.am-doc-icon {
  font-size: 30px;
  margin-bottom: 16px;
}

/* TEXT */
.am-doc-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.am-doc-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* LINK */
.am-doc-link {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.am-doc-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .am-verification-grid {
    grid-template-columns: 1fr;
  }

  .am-verification-title {
    font-size: 32px;
  }
}




/* ================= AUTH ================= */
/* ================= AUTH PAGE ================= */
.auth-page {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.auth-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.auth-info {
  animation: fadeUp 0.6s ease;
}

.auth-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.auth-info h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.auth-info h1 span {
  color: #2563eb;
}

.auth-lead {
  font-size: 16px;
  color: #4b5563;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.auth-points {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.auth-points li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
}

/* TRUST STATS */
.auth-trust {
  display: flex;
  gap: 48px;
}

.auth-trust strong {
  font-size: 28px;
  color: #2563eb;
  display: block;
}

.auth-trust span {
  font-size: 13px;
  color: #6b7280;
}

/* ================= AUTH CARD ================= */
.auth-wrapper {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 34px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  animation: fadeScale 0.5s ease;
}

/* ================= TOGGLE ================= */
.auth-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 34px;
}

.toggle-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 12px 10px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  color: #6b7280;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* ================= FORMS ================= */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.auth-form h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 26px;
}

/* ================= INPUTS ================= */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ================= EXTRA ================= */
.auth-extra {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.auth-extra a {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* ================= BUTTON ================= */
.auth-btn {
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.4);
}

/* ================= MESSAGE ================= */
.form-msg {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  color: #dc2626;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .auth-info {
    text-align: center;
  }

  .auth-info h1 {
    font-size: 34px;
  }

  .auth-trust {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .auth-card {
    padding: 32px 24px;
    border-radius: 22px;
  }
}




/* ================= VERIFY POPUP ================= */
.verify-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.verify-box {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 24px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
  animation: popupScale 0.35s ease;
}

.verify-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.verify-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.verify-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
}

@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

