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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC",
    "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: #f8f5ee;
  background:
    linear-gradient(to bottom, rgba(12, 8, 6, 0.6), rgba(12, 8, 6, 0.82)),
    url("../img/hero-bg.jpg") center top / cover no-repeat fixed;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  /* max-width: 1820px; */
  margin: 0 auto;
  padding: 100px 16px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  padding: 80px 0;
}

#terms.section.section-alt {
  background:
    linear-gradient(to bottom, rgba(8, 6, 4, 0.6), rgba(8, 6, 4, 0.9)),
    url("../img/hero-bg.jpg") center center / cover no-repeat fixed;
  color: #f8f5ee;
}

#plan.section.section-alt {
  background:
    linear-gradient(to bottom, rgba(8, 6, 4, 0.4), rgba(8, 6, 4, 0.8)),
    url("../img/hero-bg.jpg") center center / cover no-repeat fixed;
}

/* 方案介紹區塊樣式 */
.plan-section {
  padding: 80px 0;
}

.plan-header {
  margin-bottom: 40px;
}

.section-label {
  display: block;
  font-size: 14px;
  color: #d2b16b;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-top: 16px;
}

.section-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: #d2b16b;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: #d2b16b;
}

.plan-header h2 {
  font-size: 36px;
  color: #f8f5ee;
  margin-bottom: 0;
}

.plan-content-box {
  background: rgba(80, 70, 60, 0.5);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.plan-intro {
  margin-bottom: 24px;
}

.plan-intro p {
  font-size: 16px;
  color: #f8f5ee;
  line-height: 1.8;
}

.plan-details {
  margin-bottom: 24px;
}

.plan-detail-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(210, 177, 107, 0.3);
}

.plan-detail-item p {
  font-size: 15px;
  color: #f2ead7;
  line-height: 1.8;
  margin: 8px 0;
}

.plan-detail-item p:first-child {
  font-weight: 600;
  color: #f8f5ee;
  margin-bottom: 12px;
}

.plan-features {
  text-align: left;
  display: inline-block;
}

.plan-features p {
  font-size: 14px;
  color: #f2ead7;
  line-height: 1.8;
  margin: 8px 0;
}

.plan-footer {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(210, 177, 107, 0.3);
}

.plan-footer p {
  font-size: 15px;
  color: #f8f5ee;
  line-height: 1.8;
  margin: 8px 0;
}

.plan-footer p:first-child {
  font-weight: 600;
  color: #fef7e7;
}

.plan-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.plan-actions .btn {
  padding: 14px 32px;
  font-size: 16px;
}

.plan-scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  animation: bounce 2s infinite;
}

.plan-scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: #d2b16b;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .plan-content-box {
    padding: 30px 24px;
  }

  .plan-header h2 {
    font-size: 26px;
  }

  .plan-intro p {
    font-size: 14px;
  }

  .plan-detail-item p {
    font-size: 13px;
  }

  .plan-features p {
    font-size: 12px;
  }

  .plan-footer p {
    font-size: 13px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.section-header p {
  color: #e5dcc5;
  font-size: 17px;
}

.section-header h2::before,
.section-header h2::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background-color: #d2b16b;
  vertical-align: middle;
  margin: 0 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mt-lg {
  margin-top: 40px;
}

.card {
  background: rgba(10, 8, 6, 0.88);
  border-radius: 16px;
  padding: 24px 24px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(210, 177, 107, 0.22);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #f8f5ee;
}

.card p {
  color: #e3dcc9;
  font-size: 15px;
  line-height: 1.7;
}

.list {
  list-style: none;
  margin-top: 4px;
}

.list li {
  position: relative;
  padding-left: 18px;
  margin: 6px 0;
  color: #f2ead7;
  font-size: 15px;
  line-height: 1.7;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d2b16b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 18px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #d7b56c, #b88b45);
  color: #1b130a;
  border-color: #d7b56c;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65);
}

.btn-primary:hover {
  filter: brightness(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background-color: transparent;
  border-color: #d7b56c;
  color: #d7b56c;
}

.btn-outline:hover {
  background-color: rgba(215, 181, 108, 0.12);
}

.btn-full {
  width: 100%;
  margin-top: 12px;
}

.btn-block {
  width: 100%;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to right, #392315, #26160d);
  border-bottom: 1px solid #d2b16b;
  padding-left: 100px;
  padding-right: 100px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9e6 0%, #d3b06a 45%, #8a6430 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.35);
}

.logo-name {
  font-weight: 700;
  font-size: 18px;
}

.logo-sub {
  font-size: 13px;
  color: #c4b19a;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
}

.main-nav a {
  color: #f5e7cf;
}

.main-nav a:hover {
  color: #d2b16b;
}

.nav-cta {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #d2b16b;
  color: #d2b16b;
  font-weight: 600;
}

.nav-cta:hover {
  background-color: rgba(210, 177, 107, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(210, 177, 107, 0.8);
  background-color: transparent;
  color: #d2b16b;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(210, 177, 107, 0.6);
}

/* Hero */

.hero-section {
  position: relative;
  padding: 130px 0 110px;
  color: #fdf3d7;
  background: transparent;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(to bottom, rgba(12, 8, 6, 0), rgba(12, 8, 6, 0.98));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: 28px;
}

.hero-content h1 {
  font-size: 38px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #fef7e7;
  margin-bottom: 20px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 18px;
}

.hero-bullets li {
  font-size: 16px;
  color: #f8f5ee;
  margin: 4px 0;
}

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

.hero-card {
  max-width: 420px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.92) 100%);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.hero-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.hero-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-card-list {
  list-style: none;
  font-size: 13px;
  color: #666;
}

.hero-card-list li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  line-height: 1.5;
}

.hero-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 15px;
}

/* Feature cards */

.feature-card {
  border-top: 3px solid #dc2626;
}

.feature-tag {
  border-left: 3px solid #dc2626;
}

#features.section {
  background:
    linear-gradient(to bottom, rgba(8, 6, 4, 0.45), rgba(8, 6, 4, 0.85)),
    url("../img/hero-bg.jpg") center center / cover no-repeat fixed;
}

#features.section .section-header h2,
#features.section .section-header p {
  color: #f8f5ee;
}

/* Terms section */

#terms .note {
  margin-top: 10px;
  font-size: 13px;
  color: #dc2626;
}

/* Contact section */

.contact-section {
  background: linear-gradient(to bottom, rgba(8, 6, 4, 0.65), rgba(8, 6, 4, 0.9));
  color: #e5e7eb;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 12px;
}

.contact-info .list li {
  color: #e5e7eb;
}

.contact-form-card {
  background-color: rgba(5, 4, 3, 0.96);
  border-radius: 18px;
  padding: 34px 34px 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
  max-width: 920px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 16px;
  color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 2px;
  border: 1px solid rgba(226, 220, 205, 0.7);
  padding: 16px 18px;
  font-size: 17px;
  background-color: rgba(8, 6, 4, 0.98);
  color: #f9fafb;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7b7464;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d7b56c;
  box-shadow: 0 0 0 1px rgba(215, 181, 108, 0.4);
}

.form-consent {
  font-size: 12px;
  color: #9ca3af;
}

.form-consent input {
  margin-right: 4px;
}

.form-status {
  margin-top: 6px;
  font-size: 13px;
  min-height: 18px;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: #f97373;
}

/* Footer */

.site-footer {
  background: linear-gradient(to bottom, #19120e, #0c0704);
  color: #9ca3af;
  padding: 20px 0 26px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.footer-info p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #dc2626;
}

/* 响应式 */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  body.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: rgba(18, 12, 10, 0.98);
    padding: 14px 18px 18px;
    border-bottom: 1px solid rgba(133, 94, 66, 0.7);
    gap: 12px;
  }

  body.nav-open .main-nav a {
    padding: 10px 12px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .section,
  .section-alt {
    padding: 56px 0;
  }

  .hero-section {
    padding: 90px 0 70px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .container {
    padding: 0 14px;
  }

  .hero-card {
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .contact-inner {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    align-items: center;
    gap: 6px;
  }

  .main-nav {
    font-size: 14px;
  }

  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-bullets li {
    font-size: 12px;
  }

  .hero-card {
    padding: 18px 16px 20px;
  }

  .card {
    padding: 20px 18px 22px;
  }

  .contact-form-card {
    padding: 18px 16px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 專業服務項目區塊 */

.services-section {
  background:
    linear-gradient(to bottom, rgba(8, 6, 4, 0.55), rgba(8, 6, 4, 0.9)),
    url("../img/hero-bg.jpg") center center / cover no-repeat fixed;
  padding: 80px 0;
}

.services-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.service-item {
  cursor: pointer;
  position: relative;
  height: 100%;
}

.service-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #d2b16b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.service-item:hover .service-card {
  border-color: #f5e8c8;
  box-shadow: 0 32px 100px rgba(210, 177, 107, 0.5);
  transform: translateY(-24px);
}

.service-card-img {
  width: 150%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
  filter: brightness(0.8) saturate(0.85);
  flex-shrink: 0;
}

.service-item:hover .service-card-img {
  transform: scale(1.1);
  filter: brightness(0.95) saturate(1.05);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(20, 12, 8, 0) 0%, rgba(20, 12, 8, 0.95) 100%);
  transition: all 0.6s ease;
}

.service-item:hover .service-card-overlay {
  height: 180px;
  background: linear-gradient(to bottom, rgba(20, 12, 8, 0) 0%, rgba(10, 6, 4, 0.98) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px;
  z-index: 2;
  transition: all 0.6s ease;
}

.service-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #f5e8c8;
  letter-spacing: 1.4px;
  margin: 0 0 12px 0;
  transition: all 0.6s ease;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.service-card-desc {
  font-size: 14px;
  color: #e3dcc9;
  line-height: 1.5;
  margin: 0;
  transition: all 0.6s ease;
  opacity: 0.85;
}

.service-item:hover .service-card-title {
  color: #fef7e7;
  text-shadow: 0 0 20px rgba(210, 177, 107, 0.6);
  transform: translateY(-5px);
}

.service-item:hover .service-card-desc {
  opacity: 1;
  color: #f8f5ee;
  transform: translateY(-2px);
}

.services-header {
  text-align: center;
  margin-top: 20px;
}

.services-header h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 8px;
}

.services-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

@media (max-width: 1024px) {
  .services-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-image {
    height: 150px;
  }

  .services-header h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .services-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .service-image {
    height: 140px;
  }

  .services-header h2 {
    font-size: 18px;
  }
}

/* 悬浮按钮组 */

.floating-buttons-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* 悬浮 LINE 按钮 */

.floating-line-btn {
  min-width: 150px;
  height: 48px;
  background: linear-gradient(135deg, #00b900, #009900);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 185, 0, 0.4);
  transition: all 0.3s ease;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.floating-line-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 185, 0, 0.6);
}

.floating-line-btn svg {
  width: 20px;
  height: 20px;
}

/* 全局载入中遮罩 */

.global-loading-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.global-loading-overlay.show {
  display: flex;
}

.global-loading-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.global-loading-spinner {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(243, 244, 246, 0.3);
  border-top-color: #f9fafb;
  animation: global-loading-spin 0.8s linear infinite;
  z-index: 1;
}

@keyframes global-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 下载 App 按钮 */

.floating-download-btn {
  min-width: 150px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.floating-download-btn svg {
  width: 20px;
  height: 20px;
}

/* 手機版下載 APP 彈框 */

.app-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.app-modal.show {
  display: flex;
}

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.app-modal-dialog {
  position: relative;
  max-width: 320px;
  margin: 0 20px;
  border-radius: 20px;
  background: #ffffff;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.45);
  text-align: center;
}

.app-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.app-modal-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.app-modal-tip {
  font-size: 13px;
  color: #2563eb;
  line-height: 1.5;
  margin-bottom: 16px;
}

.app-modal-actions {
  display: flex;
  gap: 10px;
}

.app-modal-btn {
  flex: 1;
  border-radius: 999px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.app-modal-btn-secondary {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #4b5563;
}

.app-modal-btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  border-color: #dc2626;
}

@media (min-width: 769px) {
  /* 桌機預設不顯示彈框 */
  .app-modal {
    display: none !important;
  }
}
