/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --sky: #8b5cf6;
  --sky-dark: #6d28d9;
  --sky-light: #f3efff;
  --sky-soft: #ede9fe;
  --text: #1f1f3d;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e9ddff;
  --shadow: 0 10px 30px rgba(31, 31, 61, 0.08);
  --shadow-hover: 0 18px 38px rgba(31, 31, 61, 0.14);
  --glow-shadow: 0 18px 35px rgba(109, 40, 217, 0.16), 0 0 0 2px rgba(139, 92, 246, 0.22), 0 0 20px rgba(139, 92, 246, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfbff 0%, #faf9ff 100%);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   GLOBAL UI
========================= */
section {
  padding: 64px 0;
}

.btn,
.detail-btn,
.btn-outline {
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: var(--white);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.24);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(109, 40, 217, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sky-dark);
  color: var(--sky-dark);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--white);
}

.btn-outline:hover {
  background: var(--sky-dark);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}

.section-title p {
  color: var(--muted);
  max-width: 860px;
  margin: auto;
  font-size: 16px;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background: linear-gradient(90deg, #f7f2ff 0%, #f3efff 100%);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.topbar .container,
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   HEADER / NAVBAR
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 221, 255, 0.7);
  box-shadow: 0 8px 24px rgba(31, 31, 61, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
}

.logo h1 {
  font-size: 24px;
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
}

.logo span {
  color: var(--sky-dark);
  font-size: 14px;
  display: block;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--sky-light);
  color: var(--sky-dark);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

#siteNav {
  display: flex;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-weight: 700;
  color: var(--text);
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--sky-dark);
  background: var(--sky-light);
}

/* =========================
   HERO
========================= */
.hero {
  background:
    linear-gradient(rgba(24, 18, 43, 0.58), rgba(24, 18, 43, 0.58)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 110px 0;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero {
  background: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 110px 0;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.hero h2 {
  font-size: 50px;
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero p {
  font-size: 19px;
  margin-bottom: 28px;
  color: #efe8ff;
  letter-spacing: 0.3px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #eee7ff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-hover);
  color: var(--text);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow:
    0 20px 42px rgba(109, 40, 217, 0.14),
    0 0 0 1px rgba(139, 92, 246, 0.14),
    0 0 20px rgba(139, 92, 246, 0.16);
}

.hero-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-card ul {
  padding-left: 20px;
}

/* =========================
   GRID LAYOUTS
========================= */
.grid-4,
.grid-3,
.footer-grid,
.process-steps,
.contact-grid,
.blog-list {
  display: grid;
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.process-steps {
  grid-template-columns: repeat(5, 1fr);
}

.contact-grid {
  grid-template-columns: 1fr 1.15fr;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.blog-list {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   CARDS
========================= */
.card,
.info-box,
.contact-box,
.step,
.content-box,
.blog-card,
form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 221, 255, 0.6);
  transition: var(--transition);
  text-align: left;
}

.card:hover,
.info-box:hover,
.contact-box:hover,
.step:hover,
.content-box:hover,
.blog-card:hover,
form:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow:
    0 20px 42px rgba(109, 40, 217, 0.14),
    0 0 0 1px rgba(139, 92, 246, 0.14),
    0 0 20px rgba(139, 92, 246, 0.16);
}

.card h3,
.info-box h3,
.contact-box h3,
.step h3,
.content-box h3,
.blog-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 21px;
}

.card p,
.info-box p,
.contact-box p,
.step p,
.content-box p,
.blog-card p {
  color: var(--muted);
}

.content-box ul,
.service-detail ul,
.hero-card ul,
.detail ul {
  padding-left: 20px;
  line-height: 1.8;
  text-align: left;
}

/* =========================
   SERVICES
========================= */
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.service-btn {
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: var(--sky-light);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(31, 31, 61, 0.04);
}

.service-btn:hover,
.service-btn.active {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.2);
}

.service-details-wrapper {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(233, 221, 255, 0.8);
}

.service-detail {
  display: none;
}

.service-detail.active {
  display: block;
}

.service-detail h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--text);
  text-align: center;
}

.service-detail p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: center;
}

.standard-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 24px;
}

.tile {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  padding: 22px 16px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #e8ddff;
  transition: var(--transition);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(31, 31, 61, 0.04);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tile h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.tile p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.tile:hover,
.tile.active {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #f7f2ff 0%, #efe8ff 100%);
  color: var(--sky-dark);
  border-color: #cdb9ff;
  box-shadow: var(--glow-shadow);
}

.standard-details {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.detail {
  display: none;
}

.detail.active {
  display: block;
}

.detail h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.detail p {
  color: var(--muted);
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  margin-top: 14px;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.18);
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.25);
}

/* =========================
   PROCESS / CTA
========================= */
.process {
  background: linear-gradient(180deg, #f8f5ff 0%, #f4efff 100%);
}

.step {
  text-align: center;
}

.step .number,
.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(109, 40, 217, 0.18);
}

.cta-band {
  background: linear-gradient(135deg, #7c3aed, #9f67ff, #c4b5fd);
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  padding: 46px 32px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-band::before {
  top: -80px;
  left: -80px;
}

.cta-band::after {
  bottom: -90px;
  right: -70px;
}

.cta-band h2,
.cta-band p,
.cta-band .btn {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.cta-band p {
  margin-bottom: 24px;
  color: #f7f2ff;
}

/* =========================
   CONTACT / FORM
========================= */
.contact-section {
  background: linear-gradient(180deg, #faf8ff 0%, #f6f1ff 100%);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 9px;
  border: 1px solid #ddd6fe;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fcfbff;
  color: var(--text);
  transition: var(--transition);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  background: var(--white);
}

form textarea {
  min-height: 90px;
  resize: vertical;
}

#formMsg {
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 10px;
}

.submit-btn {
  width: 100%;
}

/* =========================
   PAGE BANNERS / CONTENT
========================= */
.page-banner {
  background: linear-gradient(135deg, #f7f2ff, #ede9fe, #e7e2ff);
  padding: 60px 0;
  text-align: center;
}

.page-banner h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--text);
}

.page-banner p {
  color: #5b4b8a;
}

.content-section {
  padding: 64px 0;
}

.content-box {
  padding: 32px;
  margin-bottom: 20px;
}

.content-box h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.content-box p,
.content-box li {
  color: var(--muted);
}

.content-box ul {
  padding-left: 20px;
  line-height: 1.8;
}

.blog-card h3 {
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: linear-gradient(180deg, #1f1f3d 0%, #18182f 100%);
  color: var(--white);
  padding: 50px 0 22px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: #ddd6fe;
}

.footer-grid ul {
  list-style: none;
  text-align: left;
}

.footer-grid > div {
  text-align: left;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 24px;
  padding-top: 18px;
  text-align: center;
  color: #ddd6fe;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

/* =========================
   HOMEPAGE CARDS (SERVICES + BUYER INTENT)
========================= */
.quick-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.buyer-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.service-card,
.buyer-card {
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,248,255,0.98) 100%);
  border-radius: 22px;
  padding: 30px 26px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(233, 221, 255, 0.95);
  box-shadow:
    0 10px 30px rgba(31, 31, 61, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card::before,
.buyer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(196, 181, 253, 0.18), transparent 30%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover,
.buyer-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow:
    0 22px 45px rgba(109, 40, 217, 0.16),
    0 0 0 1px rgba(139, 92, 246, 0.16),
    0 0 24px rgba(139, 92, 246, 0.20);
}

.service-card:hover::before,
.buyer-card:hover::before {
  opacity: 1;
}

.service-card h3,
.buyer-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.service-card h3::after,
.buyer-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.95), rgba(139, 92, 246, 0.45));
}

.service-card p,
.buyer-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.buyer-card ul {
  padding-left: 20px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.buyer-card ul li {
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.center-btn {
  text-align: center;
  margin-top: 25px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .grid-4,
  .footer-grid,
  .process-steps,
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .contact-grid,
  .hero-grid,
  .standard-tiles {
    grid-template-columns: 1fr;
  }

  .quick-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  section {
    padding: 54px 0;
  }

  .topbar .container,
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  #siteNav {
    display: none !important;
    width: 100%;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    border: 1px solid var(--border);
  }

  #siteNav.active {
    display: block !important;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .grid-4,
  .grid-3,
  .footer-grid,
  .process-steps,
  .contact-grid,
  .hero-grid,
  .standard-tiles,
  .blog-list,
  .quick-path-grid,
  .buyer-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 96px 0 84px;
    text-align: center;
  }

  .hero h2,
  .section-title h2,
  .cta-band h2,
  .page-banner h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 17px;
  }

  .service-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .service-btn {
    width: 100%;
  }

  .service-details-wrapper {
    padding: 24px 18px;
  }

  .service-detail h3 {
    font-size: 26px;
  }

  .tile {
    min-height: auto;
  }

  .cta-band {
    padding: 40px 22px;
  }

  .service-card,
  .buyer-card {
    padding: 24px 20px;
  }

  .service-card h3,
  .buyer-card h3 {
    font-size: 20px;
  }

  .whatsapp-btn {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 20px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .section-title h2,
  .cta-band h2,
  .page-banner h2 {
    font-size: 26px;
  }

  form,
  .card,
  .info-box,
  .contact-box,
  .step,
  .content-box,
  .blog-card,
  .hero-card,
  .service-card,
  .buyer-card {
    padding: 22px 18px;
  }
}
/* =========================
   CERTIFICATE VERIFICATION PAGE
========================= */

.verify-banner {
  background: linear-gradient(135deg, #f7f2ff, #ede9fe, #e7e2ff);
  padding: 60px 0;
  text-align: center;
}

.verify-banner h1 {
  font-size: 42px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.verify-banner p {
  color: #5b4b8a;
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.verify-wrap {
  padding: 64px 0;
  background: linear-gradient(180deg, #fcfbff 0%, #f8f5ff 100%);
}

.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.verify-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(252,248,255,0.98) 100%);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow:
    0 10px 30px rgba(31, 31, 61, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
  border: 1px solid rgba(233, 221, 255, 0.9);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.verify-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(196, 181, 253, 0.14), transparent 30%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.verify-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow:
    0 22px 45px rgba(109, 40, 217, 0.14),
    0 0 0 1px rgba(139, 92, 246, 0.14),
    0 0 20px rgba(139, 92, 246, 0.16);
}

.verify-card:hover::before {
  opacity: 1;
}

.verify-card h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.25;
}

.verify-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.verify-card label {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.verify-card input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd6fe;
  border-radius: 12px;
  font-size: 15px;
  background: #fcfbff;
  margin-bottom: 16px;
  color: var(--text);
  transition: var(--transition);
}

.verify-card input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  background: #fff;
}

.verify-result-card {
  border-left: none;
}

.verify-status {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.verify-status.valid {
  background: #dcfce7;
  color: #166534;
}

.verify-status.invalid {
  background: #fee2e2;
  color: #991b1b;
}

.verify-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.verify-meta .meta-box {
  background: linear-gradient(180deg, #faf7ff 0%, #f6f0ff 100%);
  border: 1px solid #e9ddff;
  border-radius: 16px;
  padding: 15px;
  transition: var(--transition);
}

.verify-meta .meta-box:hover {
  transform: translateY(-3px);
  border-color: #cdb9ff;
  box-shadow:
    0 14px 28px rgba(109, 40, 217, 0.10),
    0 0 0 1px rgba(139, 92, 246, 0.10),
    0 0 14px rgba(139, 92, 246, 0.10);
}

.verify-meta .meta-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.verify-meta .meta-box span {
  color: var(--muted);
  font-size: 15px;
  word-break: break-word;
}

.verify-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Optional: make button full width only on verify form */
.verify-card form .btn {
  min-width: 180px;
}

/* =========================
   RESPONSIVE - VERIFY PAGE
========================= */
@media (max-width: 900px) {
  .verify-grid {
    grid-template-columns: 1fr;
  }

  .verify-banner h1 {
    font-size: 32px;
  }

  .verify-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .verify-banner {
    padding: 54px 0;
  }

  .verify-wrap {
    padding: 54px 0;
  }

  .verify-card {
    padding: 24px 20px;
  }

  .verify-card h2 {
    font-size: 24px;
  }

  .verify-card form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .verify-banner h1 {
    font-size: 26px;
  }

  .verify-banner p {
    font-size: 15px;
  }
}