/* ===== COLORS =====
#EBEBF6 - background
#141A3D - fonts
#FFFFFF - header

*/

/* ============ BASE ============ */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: #EBEBF6;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}



/* ============ HEADER ============ */
.site-header {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---- Logo ---- */
.logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: start;
}

.logo-link {
  display: inline-block;
  position: relative;
  overflow: visible;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background-color: white;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.logo-link:hover::after {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  0% { left: -75%; opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

/* ---- Site title ("Bura") ---- */
.site-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.8rem;
  font-weight: 700;
  color: #141A3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-title:hover {
  color: #AEADE0;
}

/* ---- Nav ---- */

.nav-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3px;
  color: #141A3D;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
  }

.nav-link:hover{
  animation: navPop 0.35s ease;
}

.nav-link:active {
  transform: scale(0.92);
}

@keyframes navPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  100% { transform: scale(1.05); }
}

/* ---- Right side: partner button + language switch ---- */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.lang-switch {
  position: relative;
}

.lang-current {
  background: transparent;
  border: 1px solid #1E2358;
  color: #2C106A;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-current:hover {
  background-color: white;
  color: rgb(84, 1, 129);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 90px;
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  color: rgb(84, 1, 129);
  transition: background-color 0.2s ease;
}

.lang-menu button:hover {
  background-color: rgba(84, 1, 129, 0.08);
}

/* ---- Mobile nav toggle (hidden on desktop) ---- */
.nav-toggle {
  display: none;
}

/* ============ PAGE CONTENT WRAPPER ============ */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-title {
  color: white;
  font-family: "Inter", serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ============ FAQ ACCORDION ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  position: middle;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-trigger {
  font-family: "Inter", ExtraBold;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: "Inter", medium;
  font-size: 1.05rem;
  font-weight: 500;
  color: black;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-panel p {
  font-family: "Inter", Regular;
  color: #141A3D;
  line-height: 1.6;
  padding-bottom: 20px;
  padding-right: 30px;
}

.accordion-item.open .accordion-panel {
  max-height: 600px;
}

/* ============ PLACEHOLDER CONTENT BLOCK (used on stub pages) ============ */
.placeholder-block {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */
.site-footer {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 40px 32px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 800px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-right .btn-partner {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}


/* ============ HOMEPAGE TEXT ============ */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.hero-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.15;
  margin: 0 0 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-subtitle {
  font-family: "Canela", italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: #141A3D;
  opacity: 0;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.25s;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  font-family: "Inter", regular;
  font-size: 0.875rem;
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.btn-hero {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-hero:active {
  transform: scale(0.94);
}

.btn-hero-outline {
  background: transparent;
  color: #141A3D;
  border: 2px solid #141A3D;
}

.btn-hero-outline:hover {
  background-color: #141A3D;
  color: white;
  animation: navPop 0.35s ease;
}

.btn-hero-filled {
  background-color: #141A3D;
  color: white;
  border: 2px solid #141A3D;
}

.btn-hero-filled:hover {
  background-color: #2C106A;
  border-color: #2C106A;
  animation: navPop 0.35s ease;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    text-align: center;
  }
}

.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0;
  padding: 60px 24px;
  text-align: left;
}

.about-title {
  font-family: "Inter", ExtraBold;
  font-size: 3rem;
  font-weight: 800;
  color: #141A3D;
  line-height: 1.2;
  margin: 0 0 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.about-subtitle {
  font-family: "Inter", medium;
  font-size: clamp(1.0rem, 1.5vw, 1.7rem);
  font-weight: 400;
  color: #141A3D;
  opacity: 0;
  max-width: 760px;
  margin: 0;
  line-height: 1.6;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.25s;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  justify-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: 60vh;
  margin: 0;
  padding: 0;
}

.mv-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  box-sizing: border-box;
}

.mv-left,
.mv-right {
  align-items: flex-start;
  text-align: left;
}

.mv-label {
  font-family: "Inter", medium;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 20px;
}

.mv-text {
  font-family: "Inter", ExtraBold; 
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.35;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 700px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

.core-values {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}

.cv-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
}

.cv-heading {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #141A3D;
  margin: 0 0 60px;
  line-height: 1.2;
}

.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cv-box {
  background-color: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.14);
}

.cv-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #AEADE0;
  margin-bottom: 20px;
}

.cv-title {
  font-family: "Inter", Regular;
  font-size: 1.3rem;
  font-weight: 700;
  color: #141A3D;
  margin: 0 0 12px;
}

.cv-text {
  font-family: "Inter", Regular;
  font-size: 1.3rem;
  font-weight: 700;
  color: #141A3D;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 800px) {
  .cv-grid {
    grid-template-columns: 1fr;
  }
}

.partners-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0;
  padding: 60px 24px;
  text-align: left;
}

.ph-label {
  font-family: "Inter", medium;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.ph-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.2;
  margin: 0 0 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
}

.ph-subtitle {
  font-family: "Inter", Regular;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: #141A3D;
  opacity: 0;
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.btn-apply {
  font-family: "Inter", Regular;
  display: inline-block;
  margin-top: 32px;
  padding: 14px 30px;
  border-radius: 999px;
  background-color: #141A3D;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.45s;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.pr-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
}

.pr-heading {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #141A3D;
  margin: 0 0 60px;
  line-height: 1.2;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.pr-box {
  background-color: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.14);
}

.pr-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #AEADE0;
  margin-bottom: 16px;
}

.pr-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.15rem;
  font-weight: 700;
  color: #141A3D;
  margin: 0 0 10px;
}

.pr-text {
  font-family: "Inter", Regular;
  font-size: 0.95rem;
  font-weight: 400;
  color: #141A3D;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }
}

.process {
  max-width: 1200px;
  margin: 0;
  padding: 100px 24px;
  text-align: left;
}

.pr-label {
  text-align: left;
}

.pr-heading {
  text-align: left;
}

.pr-grid {
  justify-content: start;
}

.pr-box {
  text-align: left;
}

/* ---- Operating system (replaces the old Benefits section) ---- */
.operating-system {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.os-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.os-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
}

.os-heading {
  font-family: "Inter", ExtraBold;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.25;
  margin: 0 0 18px;
}

.os-subtext {
  font-family: "Inter", Regular;
  font-size: 1.05rem;
  color: #141A3D;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.os-box {
  background-color: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.os-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.14);
}

.os-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background-color: rgba(174, 173, 224, 0.25);
  color: #2C106A;
  margin-bottom: 16px;
}

.os-icon svg {
  width: 20px;
  height: 20px;
}

.os-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.05rem;
  font-weight: 700;
  color: #141A3D;
  margin: 0 0 8px;
}

.os-text {
  font-family: "Inter", Regular;
  font-size: 0.9rem;
  color: #141A3D;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .os-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .os-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0;
  padding: 60px 24px;
  text-align: left;
}

.ch-label {
  font-family: "Inter", medium;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.ch-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.2;
  margin: 0 0 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
}

.ch-subtitle {
  font-family: "Inter", Regular;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: #141A3D;
  opacity: 0;
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}

/* ---- LEFT SIDE ---- */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: "Inter", medium;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
}

.contact-value {
  font-family: "Inter", Regular;
  font-size: 1.25rem;
  font-weight: 600;
  color: #141A3D;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-value:hover {
  color: #AEADE0;
}

/* ---- Copy-to-clipboard fallback for email links.
   mailto: links only work if the device has a mail app configured — on many
   phones nothing happens when tapped. This gives a reliable alternative. ---- */
.email-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(174, 173, 224, 0.18);
  color: #2C106A;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.copy-email-btn:hover {
  background: rgba(174, 173, 224, 0.35);
}

.copy-email-btn svg {
  width: 14px;
  height: 14px;
}

.copy-email-btn.copied {
  background: #141A3D;
  color: white;
}

.copy-email-btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.copy-email-btn--light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.copy-email-btn--light.copied {
  background: #AEADE0;
  color: #141A3D;
}

.copy-email-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #141A3D;
  color: white;
  font-family: "Inter", medium;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-email-btn {
  position: relative;
}

.copy-email-btn.copied .copy-email-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- RIGHT SIDE: FORM ---- */
.contact-right {
  background-color: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
}

.contact-form-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.6rem;
  font-weight: 700;
  color: #141A3D;
  margin: 0 0 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

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

.form-field label {
  font-family: "Inter", ExtraBold;
  font-size: 0.95rem;
  font-weight: 600;
  color: #141A3D;
}

.req {
  color: #E4572E;
}

.form-field input,
.form-field select {
  padding: 12px 14px;
  border: 1px solid #D8D8E8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #141A3D;
  background-color: white;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #2C106A;
}

.btn-demo {
  font-family: "Inter", Regular;
  margin-top: 12px;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  background-color: #141A3D;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-demo:hover {
  background-color: #2C106A;
  animation: navPop 0.35s ease;
}

.btn-demo:active {
  transform: scale(0.94);
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  min-height: 80vh;
}

/* This must come after both .contact-page redefinitions above so the
   responsive collapse to one column isn't silently overridden by the
   later unconditional rule (that exact bug caused real overflow on mobile). */
@media (max-width: 850px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 32px 24px;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .header-right .btn-partner {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #141A3D;
    cursor: pointer;
    padding: 4px 8px;
  }
}

@media (min-width: 801px) {
  .nav-toggle {
    display: none;
  }
}

.site-header {
  position: relative;
}

.accordion-panel p {
  white-space: pre-line;
}

.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}

.pricing-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background-color: #EDEBF9;
  border-radius: 14px;
  padding: 14px 24px;
  margin: 0 auto 60px;
  max-width: 800px;
  text-align: center;
}

.pricing-banner-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #141A3D;
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-banner p {
  font-family: "Inter", Regular;
  margin: 0;
  font-size: 0.95rem;
  color: #141A3D;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.14);
}

.pricing-popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2C106A;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 999px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background-color: #EDEBF9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.pricing-tier {
  font-family: "Inter", ExtraBold;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #141A3D;
  margin: 0 0 10px;
}

.pricing-desc {
  font-family: "Inter", Regular;
  font-size: 0.9rem;
  color: #141A3D;
  opacity: 0.7;
  line-height: 1.5;
  margin: 0 0 24px;
  min-height: 42px;
}

.pricing-divider {
  height: 1px;
  background-color: rgba(20, 26, 61, 0.1);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: "Inter", ExtraBold;
  font-size: 2rem;
  font-weight: 800;
  color: #141A3D;
  margin: 0;
}

.pricing-price span {
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-price small {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-commission {
  font-family: "Inter", Regular;
  font-size: 0.9rem;
  font-weight: 600;
  color: #AEADE0;
  margin: 6px 0 28px;
}

.pricing-everything {
  font-family: "Inter", ExtraBold;
  font-size: 0.9rem;
  font-weight: 700;
  color: #141A3D;
  text-align: left;
  margin: 0 0 16px;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-family: "Inter", Regular;
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: #141A3D;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #AEADE0;
  color: white;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-popular {
    transform: none;
  }

  .pricing-popular:hover {
    transform: translateY(-6px);
  }
}

.why-bura {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}

.wb-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
}

.wb-heading {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #141A3D;
  margin: 0 0 60px;
  line-height: 1.2;
  max-width: 700px;
}

.wb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wb-box {
  background-color: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wb-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.14);
}

.wb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(174, 173, 224, 0.25);
  color: #2C106A;
  margin-bottom: 18px;
}

.wb-icon svg {
  width: 22px;
  height: 22px;
}

.wb-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.25rem;
  font-weight: 700;
  color: #141A3D;
  margin: 0 0 14px;
}

.wb-text {
  font-family: "Inter", Regular;
  font-size: 1rem;
  color: #141A3D;
  opacity: 0.75;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 800px) {
  .wb-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- App highlights: AskBura + BuraPoints ---- */
.app-highlights {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.ah-askbura {
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(20, 26, 61, 0.08);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.ah-phone {
  flex: 0 0 auto;
}

.ah-phone img {
  display: block;
  height: 260px;
  width: auto;
  border-radius: 9%;
  box-shadow: 0 16px 32px rgba(20, 26, 61, 0.18);
}

.ah-body {
  flex: 1;
  min-width: 0;
}

.ah-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 14px;
}

.ah-label-light {
  color: #AEADE0;
}

.ah-title {
  font-family: "Inter", ExtraBold;
  font-size: 1.4rem;
  font-weight: 800;
  color: #141A3D;
  line-height: 1.25;
  margin: 0 0 12px;
}

.ah-title-light {
  color: white;
}

.ah-text {
  font-family: "Inter", Regular;
  font-size: 0.98rem;
  color: #141A3D;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}

.ah-text-light {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.ah-burapoints {
  position: relative;
  background: radial-gradient(120% 140% at 100% 0%, #232b5c 0%, #141A3D 55%), #141A3D;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ah-burapoints::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 173, 224, 0.28) 0%, rgba(174, 173, 224, 0) 70%);
  pointer-events: none;
}

.ah-pill {
  display: inline-block;
  width: fit-content;
  background: rgba(174, 173, 224, 0.15);
  border: 1px solid rgba(174, 173, 224, 0.4);
  color: #AEADE0;
  font-family: "Inter", ExtraBold;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin: 20px 0 16px;
  position: relative;
}

.ah-learn-more {
  font-family: "Inter", ExtraBold;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  width: fit-content;
  position: relative;
  transition: opacity 0.2s ease;
}

.ah-learn-more:hover {
  opacity: 0.75;
}

@media (max-width: 800px) {
  .app-highlights {
    grid-template-columns: 1fr;
  }

  .ah-askbura {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ---- Integrated payments / ePOS ---- */
.epos-payments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 100px;
}

.epos-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #2C106A;
  margin-bottom: 16px;
}

.epos-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: 720px;
}

.epos-subtitle {
  font-family: "Inter", Regular;
  font-size: 1.05rem;
  color: #141A3D;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.epos-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 56px;
}

.epos-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.epos-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #141A3D;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", ExtraBold;
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.epos-step-label {
  font-family: "Inter", Regular;
  font-size: 0.88rem;
  font-weight: 600;
  color: #141A3D;
  line-height: 1.35;
}

.epos-arrow {
  color: #AEADE0;
  font-size: 1.3rem;
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .epos-steps {
    flex-wrap: wrap;
    row-gap: 32px;
  }

  .epos-step {
    flex: 0 0 calc(33.333% - 16px);
  }

  .epos-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .epos-step {
    flex: 0 0 calc(50% - 12px);
  }
}

.for-guests {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 24px;
}

.fg-left {
  text-align: left;
}

.fg-label {
  font-family: "Inter", medium;
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #AEADE0;
  margin-bottom: 20px;
}

.fg-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #141A3D;
  line-height: 1.15;
  margin: 0 0 24px;
}

.fg-title em {
  font-style: italic;
  font-weight: 500;
  color: #AEADE0;
}

.fg-subtitle {
  font-family: "Inter", Regular;
  font-size: 1.05rem;
  color: #141A3D;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 420px;
}

.fg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.fg-list li {
  font-family: "Inter", Regular;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #141A3D;
}

.fg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #AEADE0;
}

/* ---- PHONES ---- */
.fg-right {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.phone-mock {
  width: 260px;
  background-color: #141A3D;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(20, 26, 61, 0.3);
}

.phone-notch {
  width: 90px;
  height: 20px;
  background-color: #141A3D;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px 4px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-content {
  background-color: white;
  border-radius: 24px;
  padding: 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* chat phone */
.chat-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #141A3D;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.chat-avatar-sm {
  width: 24px;
  height: 24px;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.chat-points {
  background-color: #EDEBF9;
  color: #2C106A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.chat-points small {
  font-weight: 500;
}

.chat-bubble-bot {
  display: flex;
  gap: 8px;
  background-color: #F4F3FB;
  border-radius: 14px;
  padding: 12px;
}

.chat-bubble-bot p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #141A3D;
}

.chat-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-chips button {
  text-align: left;
  background: white;
  border: 1px solid #D8D8E8;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2C106A;
  cursor: default;
}

.chat-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: #F4F3FB;
  border-radius: 14px;
  padding: 10px 12px;
}

.chat-input span {
  font-size: 0.7rem;
  color: rgba(20, 26, 61, 0.5);
  line-height: 1.4;
}

.chat-send {
  flex-shrink: 0;
  background-color: #141A3D;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* wallet phone */
.wallet-balance {
  background-color: #141A3D;
  border-radius: 16px;
  padding: 18px;
  color: white;
}

.wallet-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.wallet-amount {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 4px 0;
}

.wallet-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.wallet-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.wallet-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wallet-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
}

.wallet-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
}

.wallet-stat-warning {
  color: #F2B84B;
}

.wallet-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background-color: #FDF3E0;
  border-radius: 12px;
  padding: 10px 12px;
}

.wallet-alert p {
  margin: 0;
  font-size: 0.75rem;
  color: #8A5A00;
  line-height: 1.4;
}

.wallet-qr-card {
  border: 1px solid #E4E2F0;
  border-radius: 14px;
  padding: 14px;
}

.wallet-qr-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #141A3D;
}

.wallet-qr-card p {
  font-size: 0.75rem;
  color: rgba(20, 26, 61, 0.6);
  line-height: 1.5;
  margin: 0 0 14px;
}

.wallet-qr-buttons {
  display: flex;
  gap: 8px;
}

.wallet-btn-primary {
  flex: 1;
  background-color: #141A3D;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.wallet-btn-secondary {
  flex: 1;
  background-color: #F4F3FB;
  color: #141A3D;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .for-guests {
    grid-template-columns: 1fr;
  }

  .fg-right {
    order: -1;
  }
}

.grow-hero {
  background-color: #141A3D;
  border-radius: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 60px;
}

.grow-left {
  text-align: left;
}

.grow-label {
  form-family: "Inter", medium;
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #AEADE0;
  margin-bottom: 20px;
}

.grow-title {
  font-family: "Inter", ExtraBold;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 0 0 24px;
}

.grow-title em {
  font-style: italic;
  font-weight: 500;
  color: #AEADE0;
}

.grow-subtitle {
  font-family: "Inter", Regular;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
}

.grow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.grow-list li {
  font-family: "Inter", Regular;
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.grow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #AEADE0;
}

/* ---- Dashboard mockup ---- */
.grow-right {
  display: flex;
  justify-content: center;
}

.dashboard-mock {
  background-color: white;
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(20, 26, 61, 0.08);
}

.dashboard-topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D8D8E8;
}

.dashboard-url {
  font-family: "Inter", Regular;
  margin-left: 12px;
  font-size: 0.85rem;
  color: rgba(20, 26, 61, 0.6);
}

.dashboard-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .grow-hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
}

.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.pr-label {
  text-align: left;
}

.pr-heading {
  text-align: left;
}

.pr-grid {
  justify-content: center;
}

.pr-box {
  text-align: left;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 801px) {

}

.nav-close {
  position: absolute;
  top: 24px;
  right: 52px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #141A3D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.main-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  border-bottom: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.main-nav .nav-link:hover {
  color: #AEADE0;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .header-right .btn-partner {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #141A3D;
    cursor: pointer;
    padding: 4px 8px;
  }
}

@media (min-width: 801px) {
  .main-nav {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: auto;
  }

  .main-nav .nav-link {
    color: #141A3D;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .nav-close {
    display: none;
  }
}

.wallet-qr-buttons {
  display: flex;
  gap: 8px;
}

.wallet-btn-primary,
.wallet-btn-secondary {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

.wallet-btn-primary {
  background-color: #141A3D;
  color: white;
}

.wallet-btn-secondary {
  background-color: #F4F3FB;
  color: #141A3D;
}

.wallet-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.wallet-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.wallet-stat-label {
  display: block;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
}

.wallet-stat-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}

.wallet-stat-warning {
  color: #F2B84B;
}

    .fg-right {
      display: flex;
      gap: 30px; 
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    /* Hardware phone simulation */
    .phone-mock {
      width: 270px !important;
      aspect-ratio: 10.4 / 19.5;
      background: #ffffff !important;
      box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
      border-radius: 44px; 
      border: 14px solid #111827 !important; 
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 0 !important;
      box-sizing: border-box; 
      height: auto;
    }
    
    /* Simulated camera notch / Dynamic Island */
    .phone-mock::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 75px;
      height: 22px;
      background: #111827;
      border-radius: 20px;
      z-index: 10;
    }
 
    .phone-mock img {
      width: 100%;
      height: 900px;
      display: block;
      object-fit: contain; /* Prevents the sides from being cropped */
      object-position: top center;
      border-radius: 18px; 
      margin-top: 50px; /* Slightly lowers the image so the notch doesn't block top text */
    }
 
    /* ---------------- Footer ---------------- */
    .site-footer {
      background: #0a0e26;
      color: #ffffff;
      padding: 72px 64px 0;
    }
 
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 48px;
      max-width: 1280px;
      margin: 0 auto;
      padding-bottom: 56px;
    }
 
    .footer-brand {
      max-width: 320px;
    }
 
    .footer-logo-group {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      margin-bottom: 18px;
    }
 
    .footer-logo-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #6366f1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', ExtraBold;
      font-size: 20px;
      color: #ffffff;
      flex-shrink: 0;
    }
 
    .footer-site-title {
      font-family: 'Inter', ExtraBold;
      font-size: 26px;
      color: #ffffff;
      text-decoration: none;
    }
 
    .footer-tagline {
      font-family: 'Inter', sans-serif;
      color: #9ca3af;
      font-size: 15px;
      line-height: 1.5;
      margin: 0;
    }
 
    .footer-col-title {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin: 0 0 14px;
    }
 
    .footer-col-underline {
      display: block;
      width: 28px;
      height: 3px;
      background: #6366f1;
      border-radius: 2px;
      margin-bottom: 24px;
    }
 
    .footer-links {
      font-family: 'Plus Jakarta Sans', sans-serif;
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 15px;
      transition: color 0.2s ease;
    }
 
    .footer-links a:hover {
      color: #ffffff;
    }
 
    .footer-contact-list {
      font-family: 'Plus Jakarta Sans', sans-serif;
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
 
    .footer-contact-list li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      color: #e5e7eb;
      font-size: 15px;
      max-width: 100%;
    }

    .footer-contact-list a {
      word-break: break-all;
    }
 
    .footer-contact-list a {
      color: #e5e7eb;
      text-decoration: none;
    }
 
    .footer-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid #4b5563;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .footer-icon svg {
      width: 16px;
      height: 16px;
      stroke: #818cf8;
    }
 
    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.12);
      padding: 24px 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
 
    .footer-copyright {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: #9ca3af;
      font-size: 14px;
      margin: 0;
    }
 
    .footer-legal {
      font-family: 'Plus Jakarta Sans', sans-serif;
      display: flex;
      gap: 32px;
    }
 
    .footer-legal a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 14px;
    }
 
    .footer-legal a:hover {
      color: #ffffff;
    }
 
    @media (max-width: 640px) {
      .site-footer {
        padding: 56px 24px 0;
      }
      .footer-bottom {
        justify-content: flex-start;
      }
    }
.legal-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    justify-content: center;
    align-items: center;

    padding: 20px;
    box-sizing: border-box;
}

.legal-modal-content {
    background: #fff;

    width: 100%;
    max-width: 900px;
    max-height: 85vh;

    padding: 40px;

    border-radius: 20px;

    position: relative;

    overflow-y: auto;

    box-sizing: border-box;
}

.legal-close {
    position: absolute;

    top: 15px;
    right: 20px;

    border: none;
    background: none;

    font-size: 32px;
    cursor: pointer;

    color: #333;
}

.legal-close:hover {
    color: #000;
}

#legalTitle {
    font-size: 28px;
    margin-bottom: 25px;
}

.legal-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.legal-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}