:root {
  --yellow: #ffca05;
  --yellow-deep: #f5b800;
  --purple: #6c4bff;
  --purple-light: #8e74ff;
  --pink: #ff4fb3;
  --ink: #0d1323;
  --muted: #6b7280;
  --line: #e9eaf0;
  --soft: #f8f8fb;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(19, 25, 44, 0.08);
  --shadow-hover: 0 28px 75px rgba(108, 75, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

button, a {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  font-size: 26px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.brand em {
  font-style: normal;
  color: var(--purple);
}

.brand small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 1px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.8;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--purple);
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow), #ffdc4d);
  color: #111;
  box-shadow: 0 8px 24px rgba(255, 202, 5, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 202, 5, 0.35);
}

.button-secondary {
  background: #fff;
  border: 1px solid #cfd3df;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.header-cta {
  padding: 12px 20px;
}

.menu-button {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 64px 0;
  overflow: hidden;
  background: radial-gradient(circle at 82% 30%, rgba(130, 80, 255, 0.08), transparent 35%), linear-gradient(#fff, #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-block;
  background: #f2eeff;
  border: 1px solid #d4c8ff;
  color: var(--purple);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 13px;
}

.script-copy {
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  transform: rotate(-1.5deg);
  margin: 26px 0 4px;
}

.hero h1 {
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: -4px;
  margin: 0 0 24px;
  font-weight: 900;
}

.hero h1 span {
  color: var(--purple);
}

.hero h1 mark {
  background: none;
  color: var(--yellow-deep);
}

.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #292d3b;
}

.hero-lead strong {
  color: var(--purple);
}

.feature-icons {
  display: flex;
  gap: 22px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.feature-icons span {
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
}

.feature-icons small {
  display: block;
  color: #4d5363;
  font-size: 11px;
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(13, 19, 35, 0.05);
}

.hero-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-card:hover img {
  transform: scale(1.03);
}

.hero-sticker {
  position: absolute;
  border-radius: 50%;
  padding: 24px 18px;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 13px;
  animation: float 4s ease-in-out infinite;
}

.sticker-one {
  top: 60px;
  right: -10px;
  width: 110px;
  height: 110px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--ink);
}

.sticker-two {
  right: 20px;
  bottom: 60px;
  width: 110px;
  height: 110px;
  background: #e5ddff;
  color: var(--purple);
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* Live Stats */
.live-stats {
  padding: 0 0 28px;
}

.stat-panel {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 28px 30px;
  background: #fff;
  align-items: center;
}

.main-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.stat-icon {
  font-size: 34px;
  color: var(--purple);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.main-stat small, .stat-item small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.main-stat strong {
  display: block;
  font-size: 36px;
  color: var(--purple);
  letter-spacing: -1px;
  line-height: 1.1;
}

.main-stat p {
  font-size: 11px;
  color: #888;
  margin: 4px 0 0;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 22px;
  margin-top: 8px;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading span {
  font-size: 12px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 36px;
  margin: 10px 0 12px;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.how-works-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-works-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--purple-light);
}

.how-works-num {
  font-size: 11px;
  font-weight: 900;
  background: #eae8ff;
  color: var(--purple);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.how-works-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.how-works-step h3 {
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 800;
  color: var(--ink);
}

.how-works-step p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}


/* Video & Ranking */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-card, .ranking-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.video-label {
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 1px;
}

.video-placeholder {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #18122B, #393053);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-mockup-cover {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.video-mockup-cover .play-btn {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.08);
}

.video-mockup-cover p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}

.video-card > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.ranking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.ranking-head span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ranking-head h2 {
  font-size: 24px;
  margin: 5px 0 0;
  font-weight: 800;
}

.ranking-tabs button {
  border: 0;
  background: #f0f1f6;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.ranking-tabs button.active {
  background: var(--ink);
  color: #fff;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-list li:last-child {
  border-bottom: 0;
}

.rank-no {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f1f6;
  font-weight: 900;
  font-size: 13px;
}

.ranking-list li:first-child .rank-no {
  background: var(--purple);
  color: #fff;
}

.rank-meta strong {
  display: block;
  font-size: 15px;
}

.rank-meta small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  display: block;
}

.rank-count {
  font-weight: 900;
  color: var(--purple);
  font-size: 14px;
}

/* Category Rankings */
.category-ranking-section {
  background: radial-gradient(circle at 12% 10%, rgba(255, 202, 5, 0.05), transparent 26%), radial-gradient(circle at 88% 18%, rgba(108, 75, 255, 0.05), transparent 24%), #fff;
}

.category-ranking-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.category-ranking-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  cursor: pointer;
}

.category-ranking-tabs button.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.category-ranking-tabs button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

.top3-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(18, 20, 34, 0.05);
  transition: all 0.3s ease;
}

.top3-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.top3-card.first-place {
  transform: translateY(-12px);
  border: 2px solid var(--yellow);
  box-shadow: 0 22px 60px rgba(255, 202, 5, 0.15);
}

.top3-card.first-place:hover {
  transform: translateY(-18px);
  box-shadow: 0 26px 70px rgba(255, 202, 5, 0.22);
}

.top3-img-fallback {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #f0e6ff, #dcf0ff);
}

.royal-robe {
  background: linear-gradient(135deg, #FFE07D, #FFF6D6);
}

.court-lady {
  background: linear-gradient(135deg, #FFB2D9, #FFE5F1);
}

.modern-pastel {
  background: linear-gradient(135deg, #C1F0FF, #EBFBFF);
}

.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.first-place .rank-badge {
  background: var(--yellow);
  color: #111;
}

.second-place .rank-badge {
  background: #b9bec9;
  color: #111;
}

.third-place .rank-badge {
  background: #c98b5b;
}

.top3-card-body {
  padding: 22px;
}

.top3-card-body span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top3-card-body h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.top3-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.top3-card-body strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f3f8;
  font-size: 12px;
  font-weight: 800;
}

.first-place .top3-card-body strong {
  background: #fff3b7;
}

/* Showcase & Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.category-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.category-tabs button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

.content-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.content-showcase-grid article {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 20, 34, 0.03);
  transition: all 0.3s ease;
}

.content-showcase-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-art-cover {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.bg-culture { background: linear-gradient(135deg, #FFD1E8, #FFECF6); }
.bg-job { background: linear-gradient(135deg, #D4EDDA, #F2F9F4); }
.bg-art { background: linear-gradient(135deg, #FFF3CD, #FFFDF5); }
.bg-tour { background: linear-gradient(135deg, #CCE5FF, #F2F8FF); }
.bg-airforce { background: linear-gradient(135deg, #D1ECF1, #F4FBFD); }
.bg-independence { background: linear-gradient(135deg, #E2E3E5, #F8F9FA); }
.bg-history { background: linear-gradient(135deg, #F8D7DA, #FDF5F6); }
.bg-profile { background: linear-gradient(135deg, #E8DAFF, #F7F3FF); }
.bg-safety { background: linear-gradient(135deg, #FFF0E6, #FFF9F5); }
.bg-sports { background: linear-gradient(135deg, #E6F7FF, #F5FCFF); }

.content-card-body {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.content-card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}

.content-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Devices Section */
.device-showcase-section {
  background: radial-gradient(circle at 12% 18%, rgba(108, 75, 255, 0.04), transparent 26%), radial-gradient(circle at 88% 16%, rgba(255, 202, 5, 0.04), transparent 24%), var(--soft);
}

.device-feature {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  margin-bottom: 24px;
}

.device-feature-copy h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 8px 0 12px;
  font-weight: 800;
}

.device-feature-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.device-feature-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.8;
  font-weight: 700;
  font-size: 14px;
}

.device-feature-illustration {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: var(--soft);
  border-radius: 20px;
  min-height: 260px;
}

.kiosk-vector-art {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.orch-kiosk {
  width: 90px;
  height: 180px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  border: 4px solid #333;
}

.orch-line {
  flex-grow: 1;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--purple) 0, var(--purple) 8px, transparent 8px, transparent 16px);
  max-width: 120px;
}

.orch-display {
  width: 180px;
  height: 110px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  border: 3px solid #333;
}

.device-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.device-showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.device-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.device-vector-cover {
  height: 200px;
  background: #f0f1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.kiosk-standalone {
  width: 70px;
  height: 140px;
  background: #111;
  border-radius: 10px;
  border: 3px solid #333;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.wall-frame {
  width: 140px;
  height: 100px;
  background: #fff;
  border: 8px solid var(--ink);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: grid;
  place-items: center;
}

.frame-content {
  font-size: 32px;
}

.dual-screen {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.dual-kiosk {
  width: 50px;
  height: 100px;
  background: #111;
  border-radius: 6px;
}

.dual-tv {
  width: 90px;
  height: 60px;
  background: #1e1e1e;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.hologram-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,75,255,0.3) 0%, transparent 70%);
  display: grid;
  place-items: center;
  position: relative;
}

.holo-core {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--purple);
  animation: float-holo 2.5s ease-in-out infinite;
}

@keyframes float-holo {
  0%, 100% { transform: translateY(0px) scale(0.9); }
  50% { transform: translateY(-6px) scale(1.1); }
}

.device-showcase-body {
  padding: 20px;
}

.device-showcase-body span {
  font-weight: 900;
  color: var(--purple);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.device-showcase-body h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.device-showcase-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Projects / Cases */
.projects-section {
  background: linear-gradient(180deg, #fff 0%, #faf9ff 100%);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-card {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 20, 34, 0.03);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.project-card-featured {
  grid-column: span 6;
}

.project-art-cover {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.project-card-featured .project-art-cover {
  height: 250px;
}

.bg-p1 { background: linear-gradient(135deg, #1f4287, #278ea5); }
.bg-p2 { background: linear-gradient(135deg, #ff7e67, #ff9e7d); }
.bg-p3 { background: linear-gradient(135deg, #2b2e4a, #e84545); }
.bg-p4 { background: linear-gradient(135deg, #111d5e, #c70039); }
.bg-p5 { background: linear-gradient(135deg, #4f3b78, #c4a35a); }
.bg-p6 { background: linear-gradient(135deg, #ff2e93, #ff8a00); }
.bg-p7 { background: linear-gradient(135deg, #81007f, #dec3c3); }
.bg-p8 { background: linear-gradient(135deg, #0f4c81, #fb8b24); }
.bg-p9 { background: linear-gradient(135deg, #3282b8, #bbe1fa); }
.bg-p10 { background: linear-gradient(135deg, #00b159, #00d2fc); }
.bg-p11 { background: linear-gradient(135deg, #512b58, #fe346e); }
.bg-p12 { background: linear-gradient(135deg, #21bf73, #b0eacd); }

.project-card-body {
  padding: 20px;
}

.project-card-body span {
  display: block;
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.project-card-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

/* Brochures */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brochure-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.brochure-vector-cover {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.brochure-vector-cover span {
  font-size: 48px;
  margin-bottom: 12px;
}

.brochure-vector-cover h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.bg-b1 { background: linear-gradient(135deg, #162447, #1f4068); }
.bg-b2 { background: linear-gradient(135deg, #431063, #811883); }
.bg-b3 { background: linear-gradient(135deg, #0f3057, #008891); }

.brochure-grid article > div:nth-child(2) {
  padding: 20px 20px 0;
}

.brochure-grid article span {
  font-size: 11px;
  color: var(--purple);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brochure-grid article h3 {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 8px;
  padding: 16px 20px 20px;
  margin-top: auto;
}

.card-actions a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 13px;
}

.card-actions a.preview-link {
  background: #fff;
  color: var(--ink);
  border: 1px solid #cfd3df;
}

.card-actions a.preview-link:hover {
  background: var(--soft);
}

.card-actions a:not(.preview-link) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.card-actions a:not(.preview-link):hover {
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffbec, #f4eaff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-grid h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  font-weight: 850;
  margin: 16px 0;
}

.contact-details-list {
  padding: 0;
  list-style: none;
  line-height: 2.2;
  font-weight: 700;
  font-size: 15px;
}

.contact-grid form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-grid input, .contact-grid select, .contact-grid textarea {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  outline: none;
  font-size: 14px;
  width: 100%;
}

.contact-grid input:focus, .contact-grid select:focus, .contact-grid textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(108,75,255,0.1);
}

.contact-grid textarea {
  grid-column: 1 / -1;
  height: 120px;
  resize: vertical;
}

.contact-grid form button {
  grid-column: 1 / -1;
}

#contactFormStatus {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  margin: 4px 0 0;
}

/* Footer */
footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}

/* Dialog Modal */
.media-dialog {
  border: 0;
  border-radius: 24px;
  padding: 0;
  max-width: 600px;
  width: calc(100% - 40px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  overflow: visible;
}

.media-dialog::backdrop {
  background: rgba(13, 19, 35, 0.8);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  right: -12px;
  top: -12px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  font-weight: bold;
}

.dialog-content {
  padding: 32px;
}

.dialog-content h2 {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 800;
}

.video-modal-player {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.video-placeholder-inside {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #1A1A2E, #16213E);
}

.video-placeholder-inside .play-symbol {
  font-size: 52px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 1.5s infinite;
}

.video-placeholder-inside h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 800;
}

.video-placeholder-inside p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0 0 12px;
}

/* Responsiveness */
@media (max-width: 980px) {
  .main-nav, .header-cta {
    display: none;
  }
  
  .menu-button {
    display: block;
  }
  
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 22px 30px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line);
    z-index: 49;
  }

  .hero-grid, .split-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-media {
    min-height: 480px;
  }

  .stat-panel {
    grid-template-columns: 1fr 1fr;
  }

  .main-stat {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }



  .top3-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top3-card.first-place {
    transform: none;
  }
  .top3-card.first-place:hover {
    transform: translateY(-6px);
  }

  .content-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .device-feature {
    grid-template-columns: 1fr;
  }

  .device-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card, .project-card-featured {
    grid-column: span 6;
  }

  .brochure-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-sticker {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-icons {
    gap: 14px;
  }

  .stat-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .main-stat {
    grid-column: auto;
  }

  .stat-item {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .top3-grid {
    grid-template-columns: 1fr;
  }

  .top3-img-fallback {
    height: 320px;
  }

  .content-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .device-showcase-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card, .project-card-featured {
    grid-column: span 12;
  }

  .project-art-cover, .project-card-featured .project-art-cover {
    height: 180px;
  }

  .brochure-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid textarea, .contact-grid form button {
    grid-column: auto;
  }

  .footer-inner {
  }
}

/* GEO Specs Table Styles */
.specs-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
  min-width: 700px;
}

.specs-table th, .specs-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.specs-table th {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.specs-table tr:last-child td {
  border-bottom: 0;
}

.specs-table tr:nth-child(even) {
  background: var(--soft);
}

/* AEO FAQ Section Styles */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.faq-item[open] {
  border-color: var(--purple-light);
  box-shadow: 0 8px 24px rgba(108,75,255,0.06);
}

.faq-question {
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-answer {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

