@CHARSET "UTF-8";

/* ============================================
   Landing Pages Shared Styles
   Colors matched to Figma designs:
   - Hero/dark: #4a6741 (olive green)
   - Accent: #e8a430 / #f5a623 (warm orange)
   - Background: #faf6ef (warm cream)
   - Card green: #5a7d52 (muted green)
   - Text: #2d2d2d
   ============================================ */

/* --- Reset & Base --- */
.landing-page {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
	color: #2d2d2d;
	background: #faf6ef;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.landing-page * { box-sizing: border-box; }
.landing-page img { max-width: 100%; height: auto; display: block; }
.landing-page a { color: #4a6741; text-decoration: none; }
.landing-page a:hover { text-decoration: underline; }

/* --- Container --- */
.landing-container {
	max-width: 480px;
	margin: 0 auto;
	padding: 0;
	overflow-x: hidden;
	background: #faf6ef;
}

/* --- Sections --- */
.landing-section {
	padding: 36px 20px;
}

.landing-section.bg-white { background: #fff; }
.landing-section.bg-cream { background: #faf6ef; }

.landing-section.bg-green {
	background: #4a6741;
	color: #fff;
}

.landing-section.bg-dark-green {
	background: #3a5535;
	color: #fff;
}

.landing-section.bg-orange-light {
	background: #fdf3dc;
}

.landing-section.bg-warm {
	background: #f5efe3;
}

/* --- Hero Section --- */
.landing-hero {
	text-align: center;
	padding: 40px 20px 30px;
	position: relative;
}

.landing-hero h1 {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 8px;
	line-height: 1.3;
	letter-spacing: 1px;
}

.landing-hero .hero-highlight {
	color: #f5d76e;
	font-size: 30px;
}

.landing-hero h2 {
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 6px;
	opacity: 0.9;
	line-height: 1.6;
}

.landing-hero .hero-sub {
	font-size: 13px;
	opacity: 0.75;
	margin-bottom: 20px;
	line-height: 1.5;
}

/* --- Phone Mockup --- */
.phone-mockup {
	width: 200px;
	height: 380px;
	margin: 20px auto 0;
	background: #fff;
	border-radius: 28px;
	border: 3px solid #333;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.phone-mockup .phone-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #4a6741 0%, #5a7d52 30%, #eee 30%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #999;
}

.phone-mockup .phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 20px;
	background: #333;
	border-radius: 0 0 14px 14px;
}

/* --- Feature Icons Row --- */
.feature-icon-row {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 16px 10px;
	background: #fff;
	border-radius: 12px;
	margin-top: -20px;
	position: relative;
	z-index: 2;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-icon-item {
	text-align: center;
	width: 60px;
	padding: 6px 0;
}

.feature-icon-item .fi-icon {
	width: 36px;
	height: 36px;
	margin: 0 auto 4px;
	background: #f0f0f0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #4a6741;
}

.feature-icon-item .fi-label {
	font-size: 10px;
	color: #666;
	line-height: 1.3;
}

/* --- Section Titles --- */
.section-title {
	text-align: center;
	margin-bottom: 24px;
}

.section-title h2 {
	font-size: 20px;
	font-weight: 700;
	color: #2d2d2d;
	margin: 0 0 6px;
	line-height: 1.4;
}

.section-title h2.white { color: #fff; }

.section-title p {
	font-size: 13px;
	color: #888;
	margin: 0;
}

.section-title p.white { color: rgba(255,255,255,0.8); }

.section-title .accent-line {
	display: block;
	width: 30px;
	height: 3px;
	background: #e8a430;
	border-radius: 2px;
	margin: 0 auto 10px;
}

.section-title .accent-line.green { background: #4a6741; }
.section-title .accent-line.white { background: #fff; }

/* --- Content Card --- */
.content-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.content-card.outline {
	border: 1.5px solid #e0ddd5;
	box-shadow: none;
}

.content-card.green-card {
	background: #4a6741;
	color: #fff;
}

.content-card.orange-card {
	background: #fdf3dc;
	border-left: 4px solid #e8a430;
}

/* --- Two Column --- */
.two-col {
	display: flex;
	align-items: center;
	gap: 16px;
}

.two-col .col-l { flex: 1; }
.two-col .col-r { flex: 1; text-align: center; }

/* --- Icon + Text Row --- */
.icon-text-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
}

.icon-text-row .it-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #eef5ec;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #4a6741;
}

.icon-text-row .it-icon.orange {
	background: #fef3e2;
	color: #e8a430;
}

.icon-text-row .it-content h4 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 2px;
	color: #2d2d2d;
}

.icon-text-row .it-content p {
	font-size: 13px;
	color: #777;
	margin: 0;
	line-height: 1.5;
}

/* --- Steps --- */
.step-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 18px;
}

.step-item .step-num {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: #4a6741;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	margin-right: 14px;
}

.step-item .step-num.orange { background: #e8a430; }

.step-item .step-body h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 2px;
	color: #2d2d2d;
}

.step-item .step-body p {
	font-size: 12px;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* --- Stats --- */
.stats-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	text-align: center;
}

.stat-box {
	padding: 10px 16px;
}

.stat-box .stat-num {
	font-size: 26px;
	font-weight: 800;
	color: #4a6741;
}

.stat-box .stat-num span { font-size: 14px; }
.stat-box .stat-num.orange { color: #e8a430; }

.stat-box .stat-lbl {
	font-size: 12px;
	color: #888;
	margin-top: 2px;
}

/* --- Buttons --- */
.cta-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: all 0.25s ease;
	text-decoration: none !important;
}

.cta-btn.green { background: #4a6741; color: #fff; }
.cta-btn.green:hover { background: #3a5535; }
.cta-btn.orange { background: #e8a430; color: #fff; }
.cta-btn.orange:hover { background: #d49520; }
.cta-btn.white { background: #fff; color: #4a6741; }
.cta-btn.white:hover { background: #f5f5f5; }
.cta-btn.outline-white { background: transparent; border: 2px solid #fff; color: #fff; }
.cta-btn.block { display: block; width: 100%; }

/* --- Photo Grid --- */
.photo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
}

.photo-grid .photo-cell {
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: #ddd;
	position: relative;
}

.photo-grid .photo-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-grid .photo-cell .photo-year {
	position: absolute;
	bottom: 6px;
	left: 6px;
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 4px;
}

/* --- FAQ --- */
.faq-item {
	padding: 14px 0;
	border-bottom: 1px solid #e8e4da;
}

.faq-item:last-child { border-bottom: none; }

.faq-item .faq-q {
	font-size: 14px;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 6px;
	padding-left: 26px;
	position: relative;
}

.faq-item .faq-q::before {
	content: 'Q';
	position: absolute; left: 0; top: 0;
	color: #4a6741;
	font-weight: 800;
	font-size: 15px;
}

.faq-item .faq-a {
	font-size: 12px;
	color: #888;
	line-height: 1.6;
	padding-left: 26px;
}

/* --- Pricing Card --- */
.price-card {
	background: #fff;
	border-radius: 20px;
	padding: 28px 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #e8a430;
	max-width: 320px;
	margin: 0 auto;
}

.price-card .price-tag {
	display: inline-block;
	background: #fef3e2;
	color: #e8a430;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.price-card .price-amount {
	font-size: 44px;
	font-weight: 800;
	color: #e8a430;
	line-height: 1;
}

.price-card .price-amount .currency { font-size: 20px; }
.price-card .price-amount .period { font-size: 14px; font-weight: 400; color: #999; }

.price-card .price-note {
	font-size: 12px;
	color: #aaa;
	margin: 6px 0 16px;
}

.price-card .price-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
}

.price-card .price-features li {
	padding: 5px 0;
	font-size: 13px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 8px;
}

.price-card .price-features li::before {
	content: '✓';
	color: #4a6741;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}

/* --- Tao Card Visual --- */
.tao-card-visual {
	width: 240px;
	height: 150px;
	margin: 0 auto;
	background: linear-gradient(135deg, #5a7d52 0%, #4a6741 50%, #3a5535 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 4px;
	box-shadow: 0 6px 20px rgba(74,103,65,0.3);
	position: relative;
	overflow: hidden;
}

.tao-card-visual::after {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
}

/* --- Character Placeholder --- */
.character-placeholder {
	width: 100px;
	height: 120px;
	margin: 0 auto;
	background: #f0ebe1;
	border-radius: 50% 50% 20px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #999;
}

.character-placeholder.small {
	width: 60px;
	height: 72px;
}

/* --- Checklist --- */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.check-list li {
	padding: 6px 0;
	font-size: 14px;
	color: #444;
	display: flex;
	align-items: center;
	gap: 10px;
}

.check-list li .check-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: #4a6741;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* --- Footer --- */
.landing-footer {
	text-align: center;
	padding: 24px 20px;
	background: #fff;
}

.landing-footer .footer-logo {
	font-size: 28px;
	font-weight: 800;
	color: #4a6741;
	margin-bottom: 6px;
}

.landing-footer .footer-sub {
	font-size: 11px;
	color: #bbb;
}

/* --- Placeholder --- */
.img-placeholder {
	background: linear-gradient(135deg, #e5e0d5 0%, #d5cfbf 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #aaa;
	font-size: 12px;
	border-radius: 12px;
}

/* --- Responsive --- */
@media screen and (max-width: 480px) {
	.landing-container { max-width: 100%; }

	.landing-hero h1 { font-size: 24px; }
	.landing-hero .hero-highlight { font-size: 26px; }

	.two-col { flex-direction: column; }
	.two-col.reverse-m { flex-direction: column-reverse; }

	.phone-mockup { width: 170px; height: 320px; }
}

@media screen and (min-width: 481px) {
	.landing-container { max-width: 480px; }
}

@media screen and (min-width: 768px) {
	.landing-container { max-width: 600px; }
	.landing-hero h1 { font-size: 30px; }
	.landing-section { padding: 44px 28px; }
}

/* --- Top Bar --- */
.landing-topbar {
	padding: 12px 20px;
	background: #faf6ef;
}

.landing-topbar .topbar-logo {
	font-size: 20px;
	font-weight: 800;
	color: #4a6741;
}

/* --- Filter Tabs --- */
.filter-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
}

.filter-tab {
	flex-shrink: 0;
	padding: 6px 14px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 12px;
	color: #666;
	background: #fff;
	cursor: pointer;
}

.filter-tab.active {
	background: #e8a430;
	color: #fff;
	border-color: #e8a430;
}

/* --- Store Cards Grid --- */
.store-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.store-card-mini {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.store-card-mini .store-card-img {
	aspect-ratio: 4/3;
	background: #ddd;
}

.store-card-mini .store-card-img .img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 70px;
}

.store-card-mini .store-card-info {
	padding: 8px;
}

.store-card-mini .store-card-name {
	font-size: 11px;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.store-card-mini .store-card-discount {
	display: flex;
	gap: 4px;
	margin-bottom: 4px;
}

.tag-orange {
	display: inline-block;
	background: #fef3e2;
	color: #e8a430;
	font-size: 10px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 4px;
}

.tag-green {
	display: inline-block;
	background: #eef5ec;
	color: #4a6741;
	font-size: 10px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 4px;
}

.store-card-mini .store-card-meta {
	font-size: 10px;
	color: #999;
}

.store-card-mini .store-card-meta i {
	font-size: 9px;
	margin-right: 2px;
}

/* --- Discount Categories --- */
.discount-category-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.discount-cat {
	text-align: center;
}

.discount-cat .discount-cat-img {
	aspect-ratio: 3/2;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 6px;
}

.discount-cat .discount-cat-img .img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 60px;
	border-radius: 10px;
}

.discount-cat .discount-cat-label {
	font-size: 11px;
	color: #555;
	line-height: 1.4;
}

/* --- LINE Feature Row --- */
.line-feature-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.line-feature-phone {
	flex-shrink: 0;
}

.line-feature-text {
	flex: 1;
}

.phone-mockup.small {
	width: 150px;
	height: 280px;
}

/* --- Benefit Trio --- */
.benefit-trio {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.benefit-item {
	text-align: center;
	flex: 1;
	max-width: 120px;
}

.benefit-item .benefit-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 8px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #e8a430;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-item .benefit-tag {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}

.benefit-item p {
	font-size: 11px;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* --- Card Feature Ring --- */
.card-feature-ring {
	position: relative;
	padding: 50px 0 10px;
}

.card-feature-ring .ring-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #555;
	font-weight: 600;
	line-height: 1.4;
}

.card-feature-ring .ring-label i {
	font-size: 18px;
	color: #e8a430;
}

.card-feature-ring .ring-label.top-left {
	position: absolute;
	top: 20px;
	left: 0;
}

.card-feature-ring .ring-label.top-right {
	position: absolute;
	top: 20px;
	right: 0;
}

@media screen and (max-width: 380px) {
	.card-feature-ring .ring-label.top-left,
	.card-feature-ring .ring-label.top-right {
		position: static;
		justify-content: center;
		margin-bottom: 4px;
	}
	.card-feature-ring {
		padding: 0;
	}
}

.card-feature-ring .ring-label.bottom-center {
	justify-content: center;
	margin-top: 10px;
}

/* --- Brand Logo Grid --- */
.brand-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.brand-logo-item {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-placeholder {
	font-size: 12px;
	color: #888;
	text-align: center;
	font-weight: 600;
	padding: 8px;
	background: #fff;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* --- Family Share Section --- */
.family-share-section {
	display: flex;
	gap: 20px;
	align-items: center;
}

.family-share-text {
	flex: 1;
}

.family-share-card {
	flex-shrink: 0;
}

.tao-card-visual.small {
	width: 160px;
	height: 100px;
	font-size: 24px;
	letter-spacing: 2px;
}

/* --- Simple List --- */
.simple-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.simple-list li {
	padding: 3px 0;
	font-size: 14px;
	color: #444;
	line-height: 1.7;
}

.simple-list.gray li {
	font-size: 13px;
	color: #777;
}

/* --- Steps Visual (Horizontal) --- */
.steps-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.step-visual-item {
	text-align: center;
	flex: 1;
	max-width: 110px;
}

.step-visual-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 8px;
	background: #fff;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-visual-label {
	font-size: 11px;
	color: #555;
	font-weight: 500;
	line-height: 1.4;
}

.step-arrow {
	font-size: 16px;
	color: #e8a430;
	flex-shrink: 0;
	margin-top: -20px;
}

/* --- Customer Service Section --- */
.cs-section {
	display: flex;
	gap: 20px;
	align-items: center;
}

.cs-text {
	flex: 1;
}

.cs-character {
	flex-shrink: 0;
}

/* --- Persona Grid --- */
.persona-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.persona-item {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.persona-item .persona-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 8px;
	background: #eef5ec;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #4a6741;
}

.persona-item .persona-name {
	font-size: 14px;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 4px;
}

.persona-item p {
	font-size: 11px;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: #4a6741; }
.text-orange { color: #e8a430; }
.text-white { color: #fff; }
.text-gray { color: #999; }
.fw-bold { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* --- Responsive overrides for new sections --- */
@media screen and (max-width: 480px) {
	.store-grid { grid-template-columns: repeat(2, 1fr); }
	.discount-category-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.line-feature-row { flex-direction: column; }
	.line-feature-phone { width: 100%; display: flex; justify-content: center; }
	.benefit-trio { gap: 10px; }
	.family-share-section { flex-direction: column; text-align: center; }
	.cs-section { flex-direction: column; text-align: center; }
	.steps-visual { gap: 4px; }
	.step-visual-item { max-width: 90px; }
}
