/* ============================================
   鸣潮代肝 — VS Code Dark 风格
   ============================================ */

:root {
  --bg-primary: #1e1e1e;
  --bg-secondary: #252526;
  --bg-card: #2d2d2d;
  --bg-hover: #333333;
  --bg-inset: #1a1a1a;
  --border: #3c3c3c;
  --border-light: #454545;
  --text-primary: #d4d4d4;
  --text-secondary: #969696;
  --text-muted: #6e6e6e;
  --accent: #007acc;
  --accent-hover: #1a8ad4;
  --accent-glow: rgba(0, 122, 204, 0.2);
  --green: #4ec9b0;
  --orange: #ce9178;
  --red: #f44747;
  --yellow: #dcdcaa;
  --selection: #264f78;
  --tab-active-border: #007acc;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  --font-mono: 'Cascadia Code', 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--selection);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* ========== Particles BG ========== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ========== Nav (VS Code Title Bar) ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
  height: 44px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
  height: 100%;
}

.nav-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.15s;
  letter-spacing: 0.2px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tab-active-border);
  transition: all 0.2s;
  transform: translateX(-50%);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 60%;
}

.nav-cta {
  margin-left: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff !important;
  font-weight: 500;
  font-size: 0.77rem !important;
  height: auto !important;
  border-bottom: none !important;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

/* ========== Sections ========== */
section {
  position: relative;
  z-index: 1;
  padding: 72px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
  font-family: var(--font-mono);
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.section-sub {
  color: var(--text-secondary);
  max-width: 540px;
  font-size: 0.9rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.hero p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
}

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

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========== Why Us ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}




.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.15s;
}

.why-item:hover {
  background: var(--bg-hover);
}

.why-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.why-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Order Builder (VS Code Panel) ========== */
.order-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.order-category-title {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  padding: 4px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.order-category-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 4px 0 10px 2px;
  font-family: var(--font-mono);
}

.order-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 8px;
}

.order-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  user-select: none;
}

.order-item:hover {
  background: var(--bg-hover);
}

.order-item.selected {
  background: #1a3a4a;
  border-color: var(--accent);
  z-index: 1;
}

.order-item.featured {
  background: #2a2a2a;
}

.order-item.featured.selected {
  background: #1a3a4a;
  border-color: var(--accent);
}

.order-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.order-check {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: all 0.15s;
}

.order-item.selected .order-check {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.order-item.featured.selected .order-check {
  border-color: var(--accent);
  background: var(--accent);
}

.order-item-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.order-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
}

.order-item-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 28px;
}

.order-variants {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-left: 28px;
}

.order-variant {
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.order-variant:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.order-variant.active {
  border-color: var(--accent);
  background: rgba(0, 122, 204, 0.15);
  color: var(--accent);
}

.order-variant .price {
  font-weight: 600;
  font-family: var(--font-mono);
}

/* 探索选配弹窗 */
.explore-modal-body { padding: 12px 20px; max-height: 50vh; overflow-y: auto; }
.explore-select-all { margin-bottom: 8px; }
.explore-section-title { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin: 12px 0 8px; padding-bottom: 4px; border-bottom: 1px solid var(--border); letter-spacing: 0.5px; }
.explore-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s; }
.explore-item:hover { background: var(--bg-hover); }
.explore-item.selected { background: rgba(0,122,204,0.08); }
.explore-check { width: 18px; height: 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--text-muted); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: transparent; transition: all 0.15s; }
.explore-item.selected .explore-check { border-color: var(--accent); background: var(--accent); color: #fff; }
.explore-item-icon { font-size: 1rem; flex-shrink: 0; }
.explore-item-name { flex: 1; font-size: 0.82rem; font-weight: 500; }
.explore-item-price { font-size: 0.8rem; font-family: var(--font-mono); color: var(--text-secondary); min-width: 40px; text-align: right; }
.explore-item .order-percent { margin-top: 0; padding-left: 0; }
.explore-item .percent-btn { width: 20px; height: 20px; font-size: 0.75rem; }
.explore-item .percent-value { font-size: 0.72rem; min-width: 30px; }
.explore-modal-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-top: 1px solid var(--border); background: var(--bg-card); border-radius: 0 0 var(--radius) var(--radius); }
.explore-total { font-size: 0.9rem; color: var(--text-secondary); }
.explore-total strong { font-size: 1.2rem; color: var(--accent); font-family: var(--font-mono); }

/* 探索度百分比控件 */
.order-percent {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-left: 28px;
}
.percent-btn {
  width: 24px; height: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: inherit;
  line-height: 1;
}
.percent-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,122,204,0.1);
}
.percent-value {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--accent);
  min-width: 36px;
  text-align: center;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: var(--radius-sm);
}
.percent-value:hover { background: rgba(0,122,204,0.08); }

.order-badge {
  position: absolute;
  top: 6px;
  right: 10px;
  padding: 1px 7px;
  border-radius: var(--radius-sm);
  font-size: 0.6rem;
  font-weight: 600;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
}

.order-item.selected .order-badge {
  background: rgba(0, 122, 204, 0.12);
  color: var(--accent);
  border-color: rgba(0, 122, 204, 0.2);
}

/* ========== Modal (VS Code Dialog) ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  padding: 20px;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal-box-lg {
  max-width: 560px;
}

.modal-overlay.show .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  font-family: inherit;
}

.modal-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.modal-order-summary {
  margin: 14px 20px 0;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-mono);
  white-space: pre-wrap;
}

#modal-form {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#modal-form .form-group label {
  font-size: 0.78rem;
}

#modal-form .form-group input,
#modal-form .form-group textarea {
  font-size: 0.85rem;
}

/* ========== Order Summary Bar (VS Code Status Bar) ========== */
.order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-bar.show {
  transform: translateY(0);
}

.order-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
}

.order-bar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.order-bar-empty {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.order-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  white-space: nowrap;
}

.order-bar-tag .tag-price {
  font-weight: 600;
  font-family: var(--font-mono);
  opacity: 0.9;
}

.order-bar-tag .tag-remove {
  cursor: pointer;
  opacity: 0.5;
  margin-left: 2px;
  font-size: 0.6rem;
  transition: opacity 0.15s;
}

.order-bar-tag .tag-remove:hover {
  opacity: 1;
}

.order-bar-action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.order-bar-total {
  text-align: right;
  color: #fff;
}

.order-bar-total-label {
  font-size: 0.62rem;
  opacity: 0.7;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

.order-bar-total-price {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  font-family: var(--font-mono);
}

.order-submit-btn {
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.order-submit-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== FAQ (VS Code List Style) ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  background: var(--bg-card);
  transition: background 0.15s;
}

.faq-item:hover {
  background: var(--bg-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-arrow {
  transition: transform 0.2s;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: var(--font-mono);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 18px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.7;
  border-top: 0 solid var(--border);
  transition: max-height 0.25s ease, padding 0.25s ease, border-top 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 12px 18px 16px;
  border-top-width: 1px;
}

/* ========== Contact ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-info {
  background: var(--bg-card);
  padding: 28px 24px;
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-inset);
  transition: background 0.15s;
}

.contact-method:hover {
  background: var(--bg-hover);
}

.contact-method-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-method-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

.contact-method-value {
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--accent);
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23969696'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* ========== Footer ========== */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  background: var(--bg-secondary);
}

footer p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

footer a {
  color: var(--text-secondary);
}

footer a:hover {
  color: var(--accent);
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  nav {
    padding: 0 12px;
  }

  .nav-links a {
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 1.3rem;
  }

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

  section {
    padding: 48px 16px;
  }

  .order-category-grid {
    grid-template-columns: 1fr;
  }

  .order-bar-inner {
    flex-direction: column;
    padding: 8px 12px;
    gap: 6px;
  }

  .order-bar-items {
    width: 100%;
  }

  .order-bar-action {
    width: 100%;
    justify-content: space-between;
  }

  .order-submit-btn {
    padding: 5px 14px;
    font-size: 0.75rem;
  }

  .order-bar-total-price {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

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

  .order-category-grid {
    grid-template-columns: 1fr;
  }
}
