*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #F0E7D6;
  --bg-card: #ffffff;
  --bg-card-alt: #f7f2ea;
  --gold: #EA2E00;
  --gold-light: #ff7a54;
  --gold-dim: rgba(234,46,0,0.18);
  --green-glow: #9DBDB8;
  --text-primary: #1e1a16;
  --text-secondary: rgba(30,26,22,0.7);
  --text-dim: rgba(30,26,22,0.45);
  --border: rgba(157,189,184,0.5);
  --border-hover: rgba(234,46,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.85;
  letter-spacing: 0.3px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://athena.noon360.com/noon360/yunlin/MsgInfo/202604Map_20260402_18193021.png?w=1920&q=80') center/contain no-repeat;
  transform: scale(1.05);
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
    rgba(157,189,184,0.92) 0%,
    rgba(157,189,184,0.78) 40%,
    rgba(157,189,184,0.74) 60%,
    rgba(157,189,184,0.92) 100%);
  z-index: 1;
  background: rgba(81, 52, 5, 0.7);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(240,231,214,0.25) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(157,189,184,0.45) 0%, transparent 15%, transparent 85%, rgba(157,189,184,0.55) 100%);
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.04; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.float-line {
  position: absolute; opacity: 0.06; z-index: 2;
  animation: floatUp linear infinite;
  pointer-events: none;
}
.float-line svg { stroke: #9DBDB8; stroke-width: 1; fill: none; }
.float-line:nth-child(1) { left: 8%; animation-duration: 20s; }
.float-line:nth-child(2) { left: 22%; animation-duration: 24s; animation-delay: -5s; }
.float-line:nth-child(3) { left: 42%; animation-duration: 18s; animation-delay: -9s; }
.float-line:nth-child(4) { left: 62%; animation-duration: 22s; animation-delay: -3s; }
.float-line:nth-child(5) { left: 80%; animation-duration: 26s; animation-delay: -7s; }
.float-line:nth-child(6) { left: 93%; animation-duration: 19s; animation-delay: -11s; }

@keyframes floatUp {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.06; }
  90% { opacity: 0.06; }
  100% { transform: translateY(-10vh) rotate(25deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 2rem; max-width: 860px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px; padding: 0.6rem 2rem;
  font-size: 1rem; color: #ffffff;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}
.hero-badge .icon { width: 18px; height: 18px; }
.hero-badge .icon svg { stroke: #ffffff; stroke-width: 2; }

.hero-title-en {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.8s ease-out 0.4s both;
  text-shadow: 3px 3px 1px rgba(81, 52, 5, 1);
}
.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(3.5rem, 8.5vw, 6.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeSlideUp 0.8s ease-out 0.6s both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.15);
  letter-spacing: 6px;
  text-shadow: 3px 3px 1px rgba(81, 52, 5, 1);
}
.hero-subtitle {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease-out 0.8s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
  text-shadow: 3px 3px 1px rgba(81, 52, 5, 1);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 2.1;
  animation: fadeSlideUp 0.8s ease-out 1s both;
  text-shadow: 3px 3px 1px rgba(81, 52, 5, 1);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  font-weight: 700; font-size: 1.15rem;
  padding: 1.1rem 3rem;
  border-radius: 100px; text-decoration: none;
  transition: all 0.4s ease;
  animation: fadeSlideUp 0.8s ease-out 1.2s both;
  box-shadow: 0 4px 25px rgba(212,175,55,0.25);
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: all 0.6s;
}
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212,175,55,0.4);
}
.hero-date {
  margin-top: 2.5rem;
  animation: fadeSlideUp 0.8s ease-out 1.4s both;
}
.hero-date span {
  display: inline-flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap; justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 1px rgba(81, 52, 5, 1);
}
.hero-date .icon { width: 18px; height: 18px; }
.hero-date .icon svg { stroke: #ffffff; stroke-width: 2; opacity: 0.7; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}
.scroll-hint span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto 0.5rem;
}
.scroll-hint small { color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.3em; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em;
  color: var(--gold); border: 1px solid var(--gold-dim);
  border-radius: 100px; padding: 0.4rem 1.3rem;
  margin-bottom: 1.2rem;
}
.section-label .icon { width: 14px; height: 14px; }
.section-label .icon svg { stroke: var(--gold); stroke-width: 2; }

.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 2;
}

/* ===== HIGHLIGHTS ===== */
.highlights-section { background: var(--bg-deep); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 3.5rem;
}
@media (max-width: 700px) {
  .highlights-grid { grid-template-columns: 1fr; }
}
.highlight-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 2.4rem;
  display: flex; align-items: flex-start; gap: 1.3rem;
  transition: all 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.highlight-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--gold-dim);
}
.highlight-icon .icon { width: 26px; height: 26px; }
.highlight-icon .icon svg { stroke: var(--gold); stroke-width: 2; }
.highlight-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.highlight-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; }

.date-banner {
  margin-top: 2.8rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.date-banner-left {
  display: flex; align-items: center; gap: 1.2rem;
}
.date-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.date-icon .icon { width: 24px; height: 24px; }
.date-icon .icon svg { stroke: var(--gold); stroke-width: 2; }
.date-banner-left h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.2rem;
}
.date-banner-left p { font-size: 0.95rem; color: var(--text-dim); }
.date-period {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); text-align: right;
  white-space: nowrap;
}
.date-period small { display: block; font-size: 0.82rem; font-weight: 400; color: var(--text-dim); margin-top: 0.2rem; }

/* ===== STEPS ===== */
.steps-section {
  background: linear-gradient(180deg, rgba(157,189,184,0.15) 0%, var(--bg-deep) 100%);
}
.steps-wrap {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: row;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.step-item {
  flex: 1;
  min-width: 0;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
}
.step-item:last-child { border-right: none; }
@media (max-width: 860px) {
  .steps-wrap { flex-direction: column; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }
}
.step-item:hover { background: rgba(212,175,55,0.03); }
.step-num-big {
  font-family: 'Noto Serif TC', serif;
  font-size: 5.5rem; font-weight: 900;
  color: rgba(212,175,55,0.06);
  line-height: 1;
  position: absolute; top: 1.2rem; right: 1.5rem;
  pointer-events: none;
}
.step-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 1rem; border-radius: 100px;
  margin-bottom: 1.2rem;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.step-item h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.step-item p { font-size: 1rem; color: var(--text-secondary); line-height: 1.9; }

/* Phone Mockup */
.phone-mockup-wrap {
  margin: 1.8rem 0 0;
  display: flex; justify-content: flex-start;
}
.phone-mockup {
  width: 180px;
  background: #2d3a39;
  border-radius: 28px; padding: 9px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.2), inset 0 0 0 1.5px #4a5e5c;
}
.phone-notch { width: 70px; height: 5px; background: #4a5e5c; border-radius: 10px; margin: 3px auto 7px; }
.phone-screen {
  background: #9DBDB8;
  border-radius: 18px; overflow: hidden;
  aspect-ratio: 9/16;
  display: flex; flex-direction: column;
}
.phone-status {
  background: rgba(234,46,0,0.15);
  padding: 5px 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-status span { font-size: 6.5px; color: #EA2E00; font-weight: 600; }
.phone-app-header {
  background: rgba(234,46,0,0.1);
  padding: 5px 10px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(234,46,0,0.15);
}
.phone-app-header span { font-size: 8px; color: #EA2E00; font-weight: 700; letter-spacing: 0.04em; }
.phone-body {
  flex: 1; padding: 9px;
  display: flex; flex-direction: column; gap: 5px;
}
.phone-step-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 7px; padding: 7px 8px;
}
.phone-step-num {
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; flex-shrink: 0;
  background: rgba(234,46,0,0.2);
  color: #EA2E00;
}
.phone-step-text { font-size: 7px; color: rgba(30,26,22,0.85); line-height: 1.4; font-weight: 500; }
.phone-footer { padding: 7px 9px; text-align: center; }
.phone-action-btn {
  display: block; width: 100%; padding: 6px;
  border-radius: 7px; font-size: 7px; font-weight: 700;
  border: none; letter-spacing: 0.05em;
  background: linear-gradient(135deg, #EA2E00, #ff7a54);
  color: #ffffff;
}
.phone-home { width: 36px; height: 3px; background: #4a5e5c; border-radius: 10px; margin: 7px auto 2px; }

/* ===== STORES MAP ===== */
.stores-section { background: var(--bg-deep); }
.stores-region-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 3.5rem;
}
@media (max-width: 800px) {
  .stores-region-wrap { grid-template-columns: 1fr; }
}
.region-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.region-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.region-header {
  padding: 2.2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1.2rem;
}
.region-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.region-icon .icon { width: 26px; height: 26px; }
.region-icon .icon svg { stroke: var(--gold); stroke-width: 2; }
.region-header h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary);
}
.region-header span {
  display: block;
  font-size: 0.9rem; color: var(--gold); margin-top: 0.2rem;
}
.region-body { padding: 1.5rem 2.5rem 2.2rem; }
.region-tag-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.region-tag {
  font-size: 0.8rem; font-weight: 600;
  padding: 0.3rem 0.85rem; border-radius: 100px;
  background: rgba(212,175,55,0.07);
  color: var(--gold); border: 1px solid var(--gold-dim);
  letter-spacing: 0.05em;
}
.store-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.store-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1rem; color: var(--text-secondary);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.05);
}
.store-list li:last-child { border-bottom: none; }
.store-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; opacity: 0.6;
}

.stores-cta-row {
  margin-top: 2.8rem; text-align: center;
}
.outline-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold); font-weight: 600; font-size: 1.05rem;
  padding: 0.9rem 2.5rem; border-radius: 100px;
  text-decoration: none; transition: all 0.4s ease;
}
.outline-btn:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.outline-btn .icon { width: 20px; height: 20px; }
.outline-btn .icon svg { stroke: var(--gold); stroke-width: 2; }

/* ===== MAP BLOCK ===== */
.map-block {
  margin-top: 2.8rem;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.map-block-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.map-block-title {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary);
}
.map-block-title .icon { width: 22px; height: 22px; flex-shrink: 0; }
.map-block-title .icon svg { stroke: var(--gold); stroke-width: 2; }
.map-block-desc { font-size: 0.95rem; color: var(--text-dim); }
.map-frame-wrap {
  width: 100%; height: 420px;
  position: relative;
}
.map-frame-wrap iframe { display: block; }
.map-pins-row {
  padding: 1.5rem 2.5rem 2rem;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.map-pin-group { display: flex; flex-direction: column; gap: 0.7rem; }
.map-pin-label {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
}
.pin-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.pin-huwei { background: #EA2E00; }
.pin-tuku { background: #9DBDB8; }
.map-pin-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.map-pin-tags span {
  font-size: 0.82rem; font-weight: 500;
  padding: 0.28rem 0.8rem; border-radius: 100px;
  background: rgba(234,46,0,0.07);
  color: var(--text-secondary);
  border: 1px solid rgba(234,46,0,0.15);
}
@media (max-width: 640px) {
  .map-frame-wrap { height: 300px; }
  .map-block-header { flex-direction: column; align-items: flex-start; }
  .map-pins-row { flex-direction: column; gap: 1.5rem; padding: 1.2rem 1.5rem 1.5rem; }
  .map-block-title { font-size: 1.1rem; }
}

/* ===== WHY ===== */
.why-section {
  background: linear-gradient(180deg, rgba(157,189,184,0.15) 0%, var(--bg-deep) 100%);
}
.why-box {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  margin-top: 3.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.timeline { display: flex; flex-direction: column; position: relative; max-width: 700px; }
.timeline::before {
  content: '';
  position: absolute; left: 29px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(157,189,184,0.6), transparent);
}
.timeline-item {
  display: flex; gap: 1.5rem; padding: 1.6rem 0;
  position: relative;
}
.timeline-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
  transition: all 0.3s ease;
}
.timeline-dot .icon { width: 24px; height: 24px; }
.timeline-dot .icon svg { stroke: var(--gold); stroke-width: 2; }
.timeline-item:hover .timeline-dot {
  background: rgba(212,175,55,0.1);
  border-color: var(--border-hover);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}
.timeline-body { padding-top: 0.5rem; }
.timeline-body h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.25rem; color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.timeline-body p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.85; }

/* ===== LIMIT ===== */
.limit-section { background: var(--bg-deep); }
.limit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3.5rem;
}
@media (max-width: 760px) {
  .limit-cards { grid-template-columns: 1fr; }
}
.limit-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}
.limit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.limit-number {
  font-family: 'Noto Serif TC', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold); margin-bottom: 0.4rem;
  line-height: 1.1;
}
.limit-unit {
  font-size: 1rem; color: var(--gold); font-weight: 600;
  margin-bottom: 0.8rem;
}
.limit-card p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section {
  background: var(--bg-deep);
  text-align: center;
  padding: 100px 20px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(157,189,184,0.2) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; letter-spacing: 0.25em; color: var(--gold);
  border: 1px solid var(--gold-dim); border-radius: 100px;
  padding: 0.4rem 1.4rem; margin-bottom: 2rem;
}
.cta-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 900; color: var(--text-primary);
  margin-bottom: 1rem;
}
.cta-text { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 2.1; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111; font-weight: 700; font-size: 1.18rem;
  padding: 1.15rem 3rem; border-radius: 100px;
  text-decoration: none; transition: all 0.4s ease;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 25px rgba(212,175,55,0.25);
}
.cta-btn::before {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212,175,55,0.4);
}
.cta-btn .icon { width: 22px; height: 22px; }
.cta-btn .icon svg { stroke: #111; stroke-width: 2; }
.cta-limited {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.8rem;
  font-size: 0.95rem; color: var(--gold);
  font-weight: 500; letter-spacing: 0.05em;
}
.cta-limited .icon { width: 16px; height: 16px; }
.cta-limited .icon svg { stroke: var(--gold); stroke-width: 2; }

/* ===== NOTES ===== */
.notes-section {
  background: linear-gradient(145deg, #e8dfd0, #f0ebe2);
  border-top: 1px solid var(--border);
  padding: 60px 20px;
}
.notes-inner { max-width: 820px; margin: 0 auto; }
.notes-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-dim); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.notes-title .icon { width: 20px; height: 20px; }
.notes-title .icon svg { stroke: var(--text-dim); stroke-width: 2; }
.notes-list { list-style: none; counter-reset: note; }
.notes-list li {
  counter-increment: note;
  padding: 0.7rem 0; font-size: 0.9rem;
  color: var(--text-dim); line-height: 1.9;
  border-bottom: 1px solid rgba(212,175,55,0.06);
  display: flex; gap: 0.6rem;
}
.notes-list li:last-child { border-bottom: none; }
.notes-list li::before {
  content: counter(note) '.';
  font-weight: 700; color: var(--text-secondary);
  flex-shrink: 0; min-width: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: #9DBDB8;
  color: rgba(30,26,22,0.7);
  text-align: center; padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(157,189,184,0.3);
}
footer .footer-logo {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem; font-weight: 700;
  color: #ffffff; margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
footer .footer-tags {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin: 0.8rem 0 0.5rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
}
footer a { color: #ffffff; text-decoration: none; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 70px 16px; }
  .why-box { padding: 36px 24px; }
  .phone-mockup { width: 160px; }
  .step-item { padding: 2.2rem 2rem; }
  .date-period { font-size: 1.15rem; }
}
