/* ============================================================
   MQ — MenuQR Landing Page Stylesheet
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:          #04091A;
  --bg-2:        #060C1F;
  --bg-card:     rgba(255,255,255,0.03);
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.14);
  --blue:        #0EA5E9;
  --blue-d:      #0284C7;
  --purple:      #8B5CF6;
  --cyan:        #22D3EE;
  --green:       #10B981;
  --yellow:      #F59E0B;
  --pink:        #EC4899;
  --text:        #F1F5F9;
  --muted:       #64748B;
  --muted-l:     #94A3B8;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 24px 64px rgba(0,0,0,0.5);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans Myanmar', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm{ max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.section     { padding: 100px 0; }
.grad-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.25s ease;
  border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-glow { box-shadow: 0 0 28px rgba(14,165,233,0.35); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(14,165,233,0.55); }
.btn-ghost {
  background: transparent; color: var(--muted-l);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-h); color: var(--text); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.btn-lg   { padding: 15px 32px; font-size: 1rem; }
.btn-nav  {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; padding: 9px 20px; font-size: 0.875rem; border-radius: 8px;
}

/* ── Section Heads ───────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block; padding: 5px 14px;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25);
  border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section-sub { color: var(--muted-l); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(4, 9, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }

/* Square icon only — used in navbar */
.logo-icon-only {
  height: 38px; width: 38px;
  object-fit: cover; flex-shrink: 0;
  border-radius: 10px;
}

/* Full wordmark — used in footer */
.logo-img-full {
  height: 40px; width: auto;
  object-fit: contain; flex-shrink: 0;
  border-radius: 8px;
}

.logo-text { font-weight: 800; font-size: 1rem; color: var(--text); letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; color: var(--muted-l); font-size: 0.9rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
/* ── Language Toggle ─────────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; gap: 2px;
  cursor: pointer; flex-shrink: 0;
  height: 36px;
}
.lang-toggle span {
  padding: 0 10px; height: 28px; display: flex; align-items: center;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  border-radius: 5px; transition: background 0.2s, color 0.2s;
  font-family: 'Inter', 'Noto Sans Myanmar', sans-serif;
  white-space: nowrap; user-select: none;
}
.lang-toggle span.active {
  background: var(--blue); color: #fff;
}
.lang-toggle-mobile {
  width: 100%; height: 44px; justify-content: center;
  margin: 4px 0;
}
.lang-toggle-mobile span {
  flex: 1; justify-content: center; font-size: 0.88rem;
  padding: 0 16px; height: 36px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted-l); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: rgba(4,9,26,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; max-width: 1160px; margin: 0 auto;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px; border-radius: 10px; color: var(--muted-l);
  font-size: 1rem; transition: all 0.2s;
}
.mobile-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-cta { margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  top: -150px; left: -100px;
  animation-duration: 9s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  bottom: -100px; right: -80px;
  animation-duration: 11s; animation-delay: -3s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  top: 50%; left: 50%;
  animation-duration: 13s; animation-delay: -6s;
  opacity: 0.1;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,30px) scale(0.97); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
  border-radius: 999px; padding: 7px 16px;
  font-size: 0.82rem; font-weight: 500; color: var(--cyan); margin-bottom: 28px;
  animation: fade-up 0.7s 0.1s both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--cyan);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.6); }
  50%     { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
}
/* Hero full-wordmark logo shown above headline */
.hero-logo-full {
  margin-bottom: 20px;
  animation: fade-up 0.7s 0.05s both;
}
.hero-logo-full img {
  /* logo-full-dark.jpg is a square image — show as a branded pill/badge */
  height: 56px; width: 56px;
  object-fit: cover; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(14,165,233,0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
  overflow: hidden;
}
.hero-title .line { display: block; animation: fade-up 0.7s both; }
.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) { animation-delay: 0.5s; }
.hero-title em { font-style: normal; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  color: var(--muted-l); font-size: 1.1rem; max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
  animation: fade-up 0.7s 0.6s both;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fade-up 0.7s 0.75s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fade-up 0.7s 0.9s both;
}
.stat { text-align: left; }
.stat-val { font-size: 2rem; font-weight: 900; color: var(--text); }
.stat-unit { font-size: 1.4rem; font-weight: 700; color: var(--blue); }
.stat p { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ── Phone Mockup ─────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; animation: fade-up 0.8s 0.4s both; }
.phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.phone {
  width: 240px; height: 480px;
  background: linear-gradient(160deg, #111827, #0F172A);
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden; position: relative; z-index: 2;
}
.phone-notch {
  width: 80px; height: 22px; background: #0A0F1E;
  border-radius: 0 0 14px 14px; margin: 0 auto;
  position: relative; z-index: 3;
}
.phone-screen {
  position: absolute; inset: 0; top: 22px; overflow: hidden;
  background: #0A1628;
}
.screen-slide {
  position: absolute; inset: 0; padding: 18px 16px;
  opacity: 0; transition: opacity 0.5s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.screen-slide.active { opacity: 1; }
.screen-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.screen-logo-img {
  width: 30px; height: 30px; object-fit: contain; border-radius: 6px;
}
.screen-loc { font-size: 0.62rem; color: var(--muted-l); }

/* Slide 0 - QR */
.qr-box {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.qr-grid {
  width: 120px; height: 120px; position: relative;
  background: rgba(255,255,255,0.04); border-radius: 14px;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 10px; padding: 14px;
}
.qr-corner {
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  opacity: 0.7;
}
.qr-inner {
  grid-column: 1/-1; grid-row: 1/-1; position: absolute;
  inset: 36px; background: repeating-linear-gradient(
    45deg, rgba(14,165,233,0.15) 0px, rgba(14,165,233,0.15) 2px,
    transparent 2px, transparent 8px
  ); border-radius: 4px;
}
.qr-scan-line {
  position: absolute; left: 50%; top: 50%;
  transform: translateX(-50%); width: 130px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--cyan);
}
@keyframes scan {
  0%   { top: 30%; }
  50%  { top: 70%; }
  100% { top: 30%; }
}
.screen-caption { text-align: center; font-size: 0.65rem; color: var(--muted-l); }

/* Slide 1 - Menu */
.menu-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 8px 10px;
  border: 1px solid var(--border);
}
.menu-img {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
}
.mi-1 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.mi-2 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.mi-3 { background: linear-gradient(135deg, #10B981, #0EA5E9); }
.menu-info { flex: 1; }
.menu-info span { display: block; font-size: 0.62rem; font-weight: 600; color: var(--text); }
.menu-info small { font-size: 0.58rem; color: var(--muted-l); }
.menu-add {
  width: 22px; height: 22px; background: rgba(14,165,233,0.15);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--blue); font-weight: 700; flex-shrink: 0;
}
.menu-add.active { background: var(--green); color: #fff; font-size: 0.6rem; }

/* Slide 2 - Confirm */
.order-confirm {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
}
.check-ring {
  width: 64px; height: 64px;
  background: rgba(16,185,129,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(16,185,129,0.4);
  animation: pop-in 0.5s ease both;
}
@keyframes pop-in {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.check-icon { font-size: 1.5rem; color: var(--green); }
.order-ref { font-size: 0.75rem; font-weight: 700; color: var(--text); }
.order-status-bar { display: flex; gap: 4px; }
.obar {
  width: 28px; height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 2px; transition: background 0.4s;
}
.obar.active { background: var(--green); }
.order-labels { display: flex; gap: 4px; }
.ol { font-size: 0.5rem; color: var(--muted); flex: 1; text-align: center; }
.ol.active { color: var(--green); font-weight: 600; }

/* Phone glow */
.phone-glow {
  position: absolute; inset: -30px; z-index: 1;
  background: radial-gradient(circle at 50% 60%, rgba(14,165,233,0.2), transparent 65%);
  border-radius: 50%; filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Float tags */
.float-tag {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(15,23,42,0.92);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  white-space: nowrap; z-index: 3;
  font-size: 0.72rem;
}
.ft-1 { top: 30px; right: -80px; animation: float-tag1 5s ease-in-out infinite; }
.ft-2 { bottom: 60px; left: -80px; animation: float-tag2 5s ease-in-out infinite; }
@keyframes float-tag1 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-tag2 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(8px) rotate(-1deg); }
}
.ft-icon { font-size: 1rem; }
.ft-text { line-height: 1.3; color: var(--muted-l); }
.ft-text strong { display: block; color: var(--text); font-size: 0.73rem; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.75rem; z-index: 1;
  animation: fade-up 1s 1.2s both;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid var(--muted);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 6px; background: var(--muted);
  border-radius: 2px; animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { transform: translateY(0); opacity: 1; }
  100%    { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0; overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.trust-label {
  text-align: center; font-size: 0.78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.trust-logos {
  display: flex; gap: 48px;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.trust-logo {
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  white-space: nowrap; transition: color 0.2s;
}
.trust-logo:hover { color: var(--muted-l); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.fc-icon-wrap {
  width: 48px; height: 48px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--c);
  transition: background 0.3s;
}
.feature-card:hover .fc-icon-wrap {
  background: color-mix(in srgb, var(--c) 20%, transparent);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 0.88rem; color: var(--muted-l); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--bg-2); }
.steps-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; position: relative; padding-top: 20px;
}
.steps-line {
  position: absolute; top: 70px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0.4;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  font-size: 3.5rem; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: 8px;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s; flex: 1;
}
.step-card:hover { border-color: var(--border-h); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.step-icon {
  --sc: var(--blue);
  width: 56px; height: 56px;
  background: color-mix(in srgb, var(--sc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 25%, transparent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sc); margin: 0 auto 18px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 0.875rem; color: var(--muted-l); line-height: 1.65; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.plan-card {
  width: 100%; max-width: 680px;
  background: linear-gradient(160deg, rgba(14,165,233,0.06), rgba(139,92,246,0.04));
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 24px; padding: 40px 44px;
  box-shadow: 0 0 80px rgba(14,165,233,0.08);
  position: relative;
}
.plan-badge {
  display: inline-block; padding: 5px 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.plan-price {
  display: flex; align-items: flex-end; gap: 8px; margin-bottom: 16px;
}
.price-val {
  font-size: 3.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--muted-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-right { display: flex; flex-direction: column; padding-bottom: 6px; }
.price-cur { font-size: 1rem; font-weight: 700; color: var(--muted-l); line-height: 1; }
.price-per { font-size: 0.8rem; color: var(--muted); }
.plan-desc { color: var(--muted-l); font-size: 0.93rem; margin-bottom: 24px; max-width: 480px; }
.plan-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.plan-divider { height: 1px; background: var(--border); margin: 28px 0; }
.plan-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.pf { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; color: var(--muted-l); }
.pf-check { color: var(--green); flex-shrink: 0; font-weight: 700; }

.addons-wrap { width: 100%; max-width: 860px; }
.addons-title {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; text-align: center;
}
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.addon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.3s, transform 0.3s;
}
.addon-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.highlight-addon {
  border-color: rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.04);
}
.addon-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.addon-desc { font-size: 0.77rem; color: var(--muted); line-height: 1.4; }
.addon-price {
  font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-top: auto;
}
.addon-price small { font-size: 0.68rem; font-weight: 400; color: var(--muted); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: var(--border-h); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 0.9rem; color: var(--muted-l); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in srgb, var(--av) 20%, transparent);
  border: 2px solid color-mix(in srgb, var(--av) 40%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; color: var(--av);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer small  { font-size: 0.77rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-h); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  text-align: left; color: var(--text); font-size: 0.97rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.faq-arrow {
  font-size: 1.3rem; color: var(--muted); transition: transform 0.3s, color 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); color: var(--blue); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; color: var(--muted-l); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative; padding: 120px 0; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #060D20 100%);
}
.orb-cta-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  top: -100px; left: -80px; opacity: 0.12; animation-duration: 10s;
}
.orb-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  bottom: -80px; right: -60px; opacity: 0.1; animation-duration: 12s;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  text-align: center; padding: 0 24px;
}
.cta-logo {
  margin: 0 auto 32px;
  display: flex; justify-content: center;
}
.cta-logo img {
  /* logo-full-dark.jpg is white on brand navy — no filter, just display */
  height: 80px; width: auto; object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(14,165,233,0.25);
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.cta-inner p { color: var(--muted-l); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-price {
  margin-top: 20px; font-size: 0.8rem; color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px; background: var(--bg-2);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p {
  color: var(--muted); font-size: 0.87rem; line-height: 1.65;
  margin-top: 14px; max-width: 260px;
}
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  font-size: 0.8rem; color: var(--muted); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 6px;
  transition: all 0.2s;
}
.social-link:hover { color: var(--text); border-color: var(--border-h); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col a {
  display: block; font-size: 0.87rem; color: var(--muted);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--muted-l); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--muted-l); }

/* ============================================================
   MYANMAR LANGUAGE TYPOGRAPHY
   Myanmar script has tall combining diacritics above and below
   every base character — default tight line-heights cause overlap.
   ============================================================ */
html[lang="my"] .hero-title {
  line-height: 1.65;
  font-size: clamp(2rem, 3.8vw, 3rem);
}
html[lang="my"] .section-title {
  line-height: 1.6;
}
html[lang="my"] .hero-sub,
html[lang="my"] .section-sub,
html[lang="my"] .feature-card p,
html[lang="my"] .step-card p,
html[lang="my"] .plan-desc,
html[lang="my"] .review-card p,
html[lang="my"] .faq-a p,
html[lang="my"] .cta-inner p,
html[lang="my"] .footer-brand p,
html[lang="my"] .mobile-link {
  line-height: 1.95;
}
html[lang="my"] .feature-card h3,
html[lang="my"] .step-card h3,
html[lang="my"] .addon-name,
html[lang="my"] .addons-title,
html[lang="my"] .cta-inner h2,
html[lang="my"] .faq-q span {
  line-height: 1.55;
}
html[lang="my"] .hero-badge,
html[lang="my"] .stat p,
html[lang="my"] .pf,
html[lang="my"] .addon-desc,
html[lang="my"] .reviewer small,
html[lang="my"] .plan-note,
html[lang="my"] .cta-price,
html[lang="my"] .footer-col a,
html[lang="my"] .footer-bottom p {
  line-height: 1.85;
}
html[lang="my"] .nav-links a,
html[lang="my"] .btn {
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content  { order: 1; display: flex; flex-direction: column; align-items: center; }
  .hero-sub      { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-visual   { order: 2; }
  .float-tag     { display: none; }
  .addons-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section       { padding: 70px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger     { display: flex; }
  .hero-title    { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-wrap    { grid-template-columns: 1fr; gap: 20px; }
  .steps-line    { display: none; }
  .plan-card     { padding: 28px 22px; }
  .plan-features { grid-template-columns: 1fr; }
  .addons-grid   { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-stats    { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-div      { display: none; }
  .phone-wrap    { transform: scale(0.85); }
}

@media (max-width: 480px) {
  .hero-cta  { flex-direction: column; }
  .btn       { width: 100%; justify-content: center; }
  .addons-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .plan-price .price-val { font-size: 2.4rem; }
}
