/* ============================================
   Micro Dragon Technologies - MDT Website
   Premium static site styles
   ============================================ */

:root {
  --primary-red: #c41e3a;
  --primary-red-dark: #a01830;
  --primary-red-light: #fce8ec;
  --dark-blue: #0a1f38;
  --dark-blue-mid: #123052;
  --dark-blue-light: #1a4068;
  --white: #ffffff;
  --light-bg: #f0f3f8;
  --light-bg-2: #e8ecf2;
  --text-dark: #152232;
  --text-muted: #5a6d80;
  --border-color: #d8e0ea;
  --shadow-sm: 0 2px 12px rgba(10, 31, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 31, 56, 0.1);
  --shadow-lg: 0 24px 56px rgba(10, 31, 56, 0.14);
  --shadow-red: 0 12px 32px rgba(196, 30, 58, 0.22);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container-max: 1180px;
  --header-height: 76px;
  --section-pad: clamp(64px, 8vw, 96px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.125rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.section-title { text-align: center; margin-bottom: 14px; }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--light-bg); }
.section-tight { padding: clamp(48px, 6vw, 72px) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-secondary {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
  box-shadow: 0 4px 14px rgba(10, 31, 56, 0.25);
}

.btn-secondary:hover {
  background: var(--dark-blue-light);
  border-color: var(--dark-blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: var(--white);
  color: var(--dark-blue);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark-blue);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-nav-resto {
  padding: 10px 18px;
  font-size: 0.875rem;
  background: var(--primary-red);
  color: var(--white) !important;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
}

.btn-nav-resto:hover {
  background: var(--primary-red-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

@import url("https://fonts.googleapis.com/css2?family=Padauk:wght@400;700&display=swap");

html[lang="my"] body {
  font-family: "Padauk", var(--font-sans);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover {
  color: var(--dark-blue);
}

.lang-btn.active {
  background: var(--white);
  color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .lang-switch { display: none; }
  .nav-mobile .lang-switch-mobile {
    display: inline-flex;
    margin: 8px 0 16px;
  }
}

@media (min-width: 769px) {
  .nav-mobile .lang-switch-mobile { display: none; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-blue);
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.logo:hover { opacity: 0.88; }

.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-mdt {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--dark-blue);
  line-height: 1.15;
  margin-bottom: 1px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--primary-red) 0%, var(--dark-blue) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* legacy fallback if logo-mark used without image */
.logo:has(.logo-icon) .logo-mark { display: none; }

.logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a:not(.btn-nav-resto) {
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-desktop a:not(.btn-nav-resto):hover,
.nav-desktop a:not(.btn-nav-resto).active {
  color: var(--primary-red);
  background: var(--primary-red-light);
}

.nav-resto-link { color: var(--primary-red) !important; font-weight: 700 !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover { border-color: var(--primary-red); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: var(--transition);
  margin: 0 auto;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 12px clamp(16px, 4vw, 28px) 24px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary-red);
  background: var(--primary-red-light);
}

.nav-mobile .nav-mobile-resto {
  margin-top: 8px;
  background: var(--primary-red);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-sm);
}

.nav-mobile .nav-mobile-resto:hover { background: var(--primary-red-dark); }

/* ---- Hero (Homepage - Resto) ---- */
.hero {
  background: linear-gradient(155deg, var(--dark-blue) 0%, var(--dark-blue-mid) 45%, #1a4a78 100%);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(196, 30, 58, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-red);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
  line-height: 1.45;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-slogan {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #ffe0e6;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-red);
}

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.hero-card:hover { transform: translateY(-6px); }

.hero-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--primary-red), #e8354f);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-red);
}

.hero-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.35rem; }
.hero-card p { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; line-height: 1.6; }

.hero-card-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0 5px 22px;
  position: relative;
}

.hero-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffb3c0;
  font-weight: 700;
}

/* Hero stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
}

.hero-stat {
  background: var(--white);
  padding: clamp(20px, 3vw, 28px) 20px;
  text-align: center;
  transition: background var(--transition);
}

.hero-stat:hover { background: var(--primary-red-light); }

.hero-stat strong {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--primary-red);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Resto spotlight band */
.resto-spotlight {
  background: linear-gradient(90deg, var(--primary-red-light) 0%, var(--white) 50%, var(--light-bg) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: clamp(40px, 6vw, 56px) 0;
}

.resto-spotlight-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.resto-spotlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, var(--primary-red), var(--dark-blue));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}

.resto-spotlight h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 8px;
}

.resto-spotlight p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
}

.resto-spotlight .myanmar-inline {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary-red);
  font-size: 1.05rem;
}

/* Trust highlights (3-up) */
.trust-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.trust-highlight {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.25);
}

.trust-highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-highlight h3 { margin-bottom: 8px; font-size: 1.1rem; }
.trust-highlight p { color: var(--text-muted); font-size: 0.9rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(155deg, var(--dark-blue), var(--dark-blue-mid));
  color: var(--white);
  padding: clamp(56px, 8vw, 88px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 14px; }

.page-hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 0 auto 14px;
  font-weight: 500;
}

.page-hero .description {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero .myanmar-slogan {
  display: inline-block;
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffe0e6;
  padding: 12px 20px;
  background: rgba(196, 30, 58, 0.25);
  border-radius: var(--radius-sm);
}

.page-hero.resto-hero { padding: clamp(72px, 10vw, 100px) 0; }

.page-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.page-breadcrumb a:hover { color: var(--white); }

/* ---- Cards & grids ---- */
.card-grid { display: grid; gap: 22px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card,
.product-card,
.industry-card,
.customer-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 30px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover,
.product-card:hover,
.industry-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.22);
}

.feature-icon,
.product-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, var(--primary-red-light), rgba(15, 39, 68, 0.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.06); }

.feature-card h3, .product-card h3 { margin-bottom: 10px; }
.feature-card p, .product-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

/* Flagship product card */
.product-card.flagship {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  border: 2px solid var(--primary-red);
  background: linear-gradient(135deg, #fff 0%, #fef6f8 50%, #fff 100%);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.12);
}

.product-card.flagship::before {
  content: "★ Flagship Product";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 50px;
}

.product-card.flagship .product-icon {
  width: 80px;
  height: 80px;
  font-size: 2.1rem;
  background: linear-gradient(145deg, var(--primary-red), var(--dark-blue));
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.product-card.flagship h3 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }

.product-features { margin: 14px 0 18px; }

.product-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 5px 0 5px 22px;
  position: relative;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 800;
}

/* Product family - homepage */
.product-family-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
}

.product-family-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-family-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-family-card.flagship-family {
  grid-row: span 2;
  border: 2px solid var(--primary-red);
  background: linear-gradient(180deg, #fff 0%, #fef5f7 40%, #fff8f9 100%);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.14);
  position: relative;
  overflow: hidden;
}

.product-family-card.flagship-family::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-family-card.flagship-family .pf-icon {
  width: 72px;
  height: 72px;
  font-size: 2.1rem;
  background: linear-gradient(145deg, var(--primary-red), var(--dark-blue));
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.product-family-card .pf-badge {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.pf-icon {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.product-family-card h3 { margin-bottom: 10px; position: relative; }
.product-family-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; line-height: 1.6; }
.product-family-card .btn { align-self: flex-start; }

.product-family-card:not(.flagship-family) { opacity: 0.98; }
.product-family-card:not(.flagship-family):hover { opacity: 1; }

/* Customers section */
.customers-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.customer-card {
  text-align: center;
  padding: 28px 18px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.customer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--dark-blue));
  opacity: 0;
  transition: opacity var(--transition);
}

.customer-card:hover::before { opacity: 1; }

.customer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.2);
}

.customer-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  background: var(--light-bg);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.customer-logo-text {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.customer-card:hover .customer-logo {
  border-color: var(--primary-red);
  border-style: solid;
  background: var(--primary-red-light);
}

.customer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  border-radius: var(--radius-md);
}

.customer-name {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.35;
}

.customer-name a {
  color: inherit;
  text-decoration: none;
}

.customer-name a:hover {
  color: var(--primary-red);
}

.customer-product {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.customer-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--primary-red-light);
  border-radius: 50px;
}

.resto-logo-img {
  display: block;
  height: auto;
  object-fit: contain;
}

.resto-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.hero-resto-logo {
  max-width: 280px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero-card-icon img,
.resto-spotlight-icon img,
.product-family-card.flagship-family .pf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-icon,
.resto-spotlight-icon,
.product-family-card.flagship-family .pf-icon {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
}

.page-hero .hero-resto-logo-light {
  max-width: 220px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
}

.product-card.flagship .product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-card.flagship .product-icon {
  background: var(--white);
  padding: 8px;
}

.product-icon img,
.pf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.page-hero .product-hero-logo {
  display: block;
  max-width: 340px;
  width: 100%;
  margin: 0 auto 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Industry cards */
.industry-card { text-align: center; padding: 28px 16px; }
.industry-card .industry-icon { font-size: 2.25rem; margin-bottom: 14px; display: block; }
.industry-card h3 { font-size: 1rem; }

/* CTA */
.cta-section {
  background: linear-gradient(155deg, var(--dark-blue), var(--dark-blue-mid));
  color: var(--white);
  padding: clamp(64px, 8vw, 88px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 30, 58, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-section p.cta-desc { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Content */
.content-block { max-width: 780px; margin: 0 auto 48px; }
.content-block p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }

.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.about-section { margin-bottom: clamp(40px, 6vw, 56px); }

.about-section h2 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-red);
  display: inline-block;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.feature-list li {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-list li:hover {
  border-color: var(--primary-red);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-list li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: 800;
  flex-shrink: 0;
}

.suitable-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.suitable-tags span {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-blue);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.suitable-tags span:hover {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.process-step {
  text-align: center;
  padding: 24px 14px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step .step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--primary-red), var(--primary-red-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.process-step h4 { font-size: 0.85rem; color: var(--dark-blue); line-height: 1.35; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.contact-info-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-color);
}

.contact-info-item { margin-bottom: 26px; }

.contact-info-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-red);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-info-item p, .contact-info-item a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-info-item a:hover { color: var(--primary-red); }

.contact-hero-email {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-hero-email span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-hero-email a {
  color: var(--primary-red);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.contact-hero-email a:hover {
  color: var(--dark-blue);
}

.contact-info-email {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.contact-email-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.contact-email-link:hover {
  color: var(--primary-red);
}

.contact-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cta-contact-email {
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-contact-email a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-contact-email a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status-success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-status-error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-section .section-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--text-muted);
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background: var(--light-bg);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 50vw, 450px);
  border: 0;
}

.contact-map-link {
  text-align: center;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--dark-blue-mid) 0%, var(--dark-blue) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 0 0 28px;
}

.footer-resto-bar {
  background: linear-gradient(90deg, var(--primary-red), #d42a48);
  padding: 18px 0;
  text-align: center;
}

.footer-resto-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.footer-resto-bar a {
  color: var(--white);
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-resto-bar a:hover {
  background: var(--white);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.footer-main { padding: clamp(48px, 6vw, 64px) 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 44px);
}

.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo-mdt { color: var(--white); }
.footer-brand .logo-icon { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2)); }
.footer-brand .logo-mark { background: var(--primary-red); box-shadow: var(--shadow-red); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 11px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-col .footer-resto-item a {
  color: #ffb8c4;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-slogan {
  color: rgba(255, 200, 210, 0.9);
  font-weight: 600;
}

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }

.why-grid .info-card h3 { margin-bottom: 10px; font-size: 1.05rem; }

.products-page-grid { display: flex; flex-direction: column; gap: 32px; }

.products-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.products-secondary-grid .product-card {
  display: flex;
  flex-direction: column;
}

.products-secondary-grid .product-card .btn { margin-top: auto; align-self: flex-start; }

.resto-highlight {
  background: linear-gradient(135deg, var(--primary-red-light), rgba(15, 39, 68, 0.04));
  border-left: 4px solid var(--primary-red);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}

.resto-highlight p { color: var(--text-muted); line-height: 1.75; font-size: 1.02rem; }

/* Product page mini nav */
.product-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.product-page-links a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--light-bg);
  border-radius: 50px;
  color: var(--text-muted);
  transition: var(--transition);
}

.product-page-links a:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* ---- Myanmar (Padauk) — lift small text readability ---- */
html[lang="my"] .section-eyebrow { font-size: 0.875rem; }
html[lang="my"] .logo-text span { font-size: 0.75rem; }

/* Myanmar header: two rows so full nav labels stay on one line each */
@media (min-width: 769px) {
  html[lang="my"] {
    --header-height: 124px;
  }

  html[lang="my"] .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  html[lang="my"] .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0 12px;
    row-gap: 10px;
    align-items: center;
  }

  html[lang="my"] .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 120px);
  }

  html[lang="my"] .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  html[lang="my"] .nav-desktop {
    order: 10;
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
  }

  html[lang="my"] .nav-desktop a:not(.btn-nav-resto),
  html[lang="my"] .btn-nav-resto {
    font-size: 0.875rem;
    padding: 8px 12px;
    white-space: nowrap;
    line-height: 1.25;
  }
}

html[lang="my"] .nav-mobile a { font-size: 1rem; }
html[lang="my"] .btn { font-size: 1rem; }

html[lang="my"] .hero-badge { font-size: 0.8125rem; }
html[lang="my"] .hero-card p { font-size: 1.025rem; }
html[lang="my"] .hero-card-features li { font-size: 0.9375rem; }
html[lang="my"] .hero-stat span { font-size: 0.9rem; }

html[lang="my"] .trust-highlight p { font-size: 1rem; }
html[lang="my"] .page-breadcrumb { font-size: 0.9rem; }

html[lang="my"] .feature-card p,
html[lang="my"] .product-card p { font-size: 1.025rem; }
html[lang="my"] .product-features li { font-size: 0.975rem; }
html[lang="my"] .product-family-card p { font-size: 1rem; }
html[lang="my"] .product-family-card .pf-badge { font-size: 0.75rem; }
html[lang="my"] .product-card.flagship::before { font-size: 0.78rem; }

html[lang="my"] .customer-product { font-size: 0.875rem; }
html[lang="my"] .customer-label { font-size: 0.78rem; }
html[lang="my"] .industry-card h3 { font-size: 1.1rem; }

html[lang="my"] .feature-list li { font-size: 1rem; }
html[lang="my"] .suitable-tags span {
  font-size: 0.875rem;
  white-space: nowrap;
}
html[lang="my"] .process-step h4 { font-size: 0.9375rem; }
html[lang="my"] .process-step .step-num { font-size: 0.975rem; }
html[lang="my"] .product-page-links a {
  font-size: 0.875rem;
  white-space: nowrap;
}

html[lang="my"] .content-block p { font-size: 1.0625rem; }
html[lang="my"] .info-card p { font-size: 1.025rem; }
html[lang="my"] .section-subtitle { font-size: 1.125rem; }

html[lang="my"] .contact-info-item h4 { font-size: 0.875rem; }
html[lang="my"] .contact-info-item p,
html[lang="my"] .contact-info-item a { font-size: 1.025rem; }
html[lang="my"] .contact-hero-email span { font-size: 0.9375rem; }
html[lang="my"] .form-group label { font-size: 0.9375rem; }
html[lang="my"] .form-group input,
html[lang="my"] .form-group select,
html[lang="my"] .form-group textarea { font-size: 1rem; }
html[lang="my"] .form-status { font-size: 1rem; }
html[lang="my"] .contact-map-section .section-desc { font-size: 1.025rem; }

html[lang="my"] .footer-resto-bar-inner {
  font-size: 1rem;
  line-height: 1.5;
}

html[lang="my"] .footer-resto-bar a { font-size: 0.9375rem; }
html[lang="my"] .footer-brand p { font-size: 0.975rem; }
html[lang="my"] .footer-col h4 { font-size: 0.875rem; }
html[lang="my"] .footer-col a,
html[lang="my"] .footer-col li { font-size: 0.975rem; }
html[lang="my"] .footer-bottom { font-size: 0.9rem; }

html[lang="my"] .resto-highlight p { font-size: 1.0625rem; }
html[lang="my"] .resto-spotlight p { font-size: 1.0625rem; }
html[lang="my"] .page-hero .description { font-size: 1.0625rem; }
html[lang="my"] .cta-section p.cta-desc { font-size: 1.0625rem; }
html[lang="my"] .contact-note { font-size: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-family-grid { grid-template-columns: 1fr 1fr; }
  .product-family-card.flagship-family { grid-column: 1 / -1; grid-row: span 1; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-slogan { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-visual { order: -1; }
  .resto-spotlight-inner { grid-template-columns: 1fr; text-align: center; }
  .resto-spotlight .btn { justify-content: center; width: 100%; }
  .trust-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-card.flagship {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-card.flagship .product-icon { margin: 0 auto 16px; }
  .product-card.flagship .btn { width: 100%; justify-content: center; }
  .product-card.flagship::before { position: static; display: inline-block; margin-bottom: 16px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .product-family-grid { grid-template-columns: 1fr; }
  .two-col-content, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-secondary-grid { grid-template-columns: 1fr; }
  .logo-text { display: none; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .hero-stats-inner { grid-template-columns: 1fr; }
}
