/* ============================================
   合珉文教事業 HEMIN - 共用樣式 v2
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #00B4D8;
  --primary-dark: #0077B6;
  --navy: #0A1929;
  --navy-deep: #050B1A;
  --gray-50: #F5F7FA;
  --gray-100: #E5E7EB;
  --gray-400: #94A3B8;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #1F2937;
  --white: #FFFFFF;
  --green: #10B981;
  --red: #EF4444;
}

body {
  font-family: 'Noto Sans TC', 'Noto Sans CJK TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  color: var(--gray-900);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;  /* 全站基準字體放大一級 */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* SVG icon defaults */
.icon { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 40px; height: 40px; }
.icon-sm { width: 20px; height: 20px; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-area img { height: 52px; width: 52px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .zh { font-size: 22px; font-weight: 700; color: var(--gray-900); letter-spacing: 1px; }
.logo-text .en { font-size: 12px; font-weight: 500; color: var(--gray-500); letter-spacing: 2px; margin-top: 2px; }

.nav-menu {
  display: flex; gap: 38px; align-items: center;
}
.nav-menu a {
  font-size: 17px; font-weight: 500; color: var(--gray-900);
  padding: 8px 4px; position: relative;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a.active { color: var(--primary); font-weight: 700; }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -24px; left: 0; right: 0;
  height: 3px; background: var(--primary); border-radius: 2px;
}

.header-right { display: flex; align-items: center; gap: 16px; }
.line-icon {
  width: 40px; height: 40px;
  background: #06C755; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}

/* ============ Hero (P1 only) ============ */
.hero {
  position: relative;
  background: #050B1A;
  height: 720px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.95;
}
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,11,26,0.88) 0%, rgba(5,11,26,0.4) 50%, rgba(5,11,26,0) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 80px;
  max-width: 720px;
}
.hero-label {
  font-size: 15px; font-weight: 600; letter-spacing: 4px;
  color: var(--primary); margin-bottom: 22px;
}
.hero-title {
  font-size: 62px; font-weight: 800; color: white;
  line-height: 1.2; margin-bottom: 22px;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-size: 26px; font-weight: 500; color: var(--primary);
  margin-bottom: 44px; letter-spacing: 1px;
}
.hero-buttons { display: flex; gap: 18px; }
.btn {
  padding: 18px 38px; border-radius: 8px;
  font-size: 17px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: white; border-color: white; }
.btn-outline:hover { background: white; color: var(--navy); }
.btn-outline-cyan { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-cyan:hover { background: var(--primary); color: white; }

.hero-line-badge {
  position: absolute; bottom: 44px; right: 44px;
  background: white; padding: 14px 22px; border-radius: 30px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: 16px; font-weight: 600;
}
.hero-line-badge .line-circle {
  width: 26px; height: 26px; background: #06C755; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}

/* ============ Inner page Hero ============ */
.inner-hero {
  background: linear-gradient(135deg, #0A1929 0%, #0077B6 100%);
  padding: 110px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0,180,216,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,180,216,0.12) 0%, transparent 40%);
}
.inner-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 22px;
  letter-spacing: 1px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.inner-hero h1 {
  font-size: 60px; font-weight: 800; color: white;
  margin-bottom: 14px; letter-spacing: 2px;
}
.inner-hero .en-subtitle {
  font-size: 17px; font-weight: 600; color: var(--primary);
  letter-spacing: 4px; margin-bottom: 22px;
}
.inner-hero .tagline {
  font-size: 20px; color: rgba(255,255,255,0.85);
  max-width: 700px; margin: 0 auto; line-height: 1.7;
}

/* ============ Section共用 ============ */
.section { padding: 110px 60px; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--navy); color: white; }
.container { max-width: 1280px; margin: 0 auto; }
.section-title {
  text-align: center; margin-bottom: 64px;
}
.section-title h2 {
  font-size: 44px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 14px; letter-spacing: 1px;
}
.section-title .en {
  font-size: 15px; font-weight: 600; color: var(--gray-400);
  letter-spacing: 4px; text-transform: uppercase;
}
.section-title.light h2 { color: white; }
.section-title.light .en { color: var(--primary); }

/* ============ Cards ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,180,216,0.15); }
.card-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,119,182,0.1));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.card-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 {
  font-size: 22px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 16px;
}
.card p {
  font-size: 16px; color: var(--gray-500); line-height: 1.75;
  margin-bottom: 22px;
}
.card-link {
  color: var(--primary); font-size: 16px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============ Tech 2-col ============ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.tech-features { display: flex; flex-direction: column; gap: 20px; }
.tech-feature {
  background: white; border-radius: 14px; padding: 28px;
  display: flex; gap: 22px; align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.tech-feature-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  background: rgba(0,180,216,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.tech-feature-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tech-feature h4 {
  font-size: 20px; font-weight: 700; margin-bottom: 6px;
}
.tech-feature p {
  font-size: 15px; color: var(--gray-500);
}
.tech-intro h2 {
  font-size: 44px; font-weight: 800; margin-bottom: 14px;
}
.tech-intro .en {
  font-size: 15px; font-weight: 600; color: var(--gray-400);
  letter-spacing: 4px; margin-bottom: 22px; display: block;
}
.tech-intro p {
  font-size: 17px; color: var(--gray-500); line-height: 1.85;
}

/* ============ Case Cards ============ */
.case-card {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}
.case-card:hover { transform: translateY(-4px); }
.case-card-img {
  height: 220px; background-size: cover; background-position: center;
  background-color: #ddd;
}
.case-card-body { padding: 28px; }
.case-card-tag {
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: rgba(0,180,216,0.1); padding: 5px 12px; border-radius: 4px;
  display: inline-block; margin-bottom: 14px;
}
.case-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 12px;
}
.case-card p {
  font-size: 15px; color: var(--gray-500); margin-bottom: 18px;
  line-height: 1.7;
}

/* ============ 大型案例區塊(P2/P4 用) ============ */
.case-row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px;
  align-items: center;
}
.case-row.reversed { grid-template-columns: 1.1fr 1fr; }
.case-row .case-text .num {
  font-size: 78px; font-weight: 800; color: rgba(0,180,216,0.4);
  line-height: 1; margin-bottom: 12px; letter-spacing: 2px;
}
.case-row .case-text h2 {
  font-size: 38px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px;
}
.case-row .case-text .en {
  font-size: 16px; font-weight: 600; color: var(--gray-400);
  letter-spacing: 3px; margin-bottom: 22px; display: block;
}
.case-row .case-text p {
  font-size: 17px; color: var(--gray-700); line-height: 1.85; margin-bottom: 24px;
}
.case-row .case-text ul {
  list-style: none; margin-bottom: 28px;
}
.case-row .case-text ul li {
  font-size: 16px; color: var(--gray-700); padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
}
.case-row .case-text ul li svg { color: var(--primary); width: 22px; height: 22px; stroke-width: 2.5; }
.case-row .case-img {
  border-radius: 16px; overflow: hidden; height: 440px;
  background-size: cover; background-position: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.case-row .industry-tag {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--primary); background: rgba(0,180,216,0.12);
  padding: 5px 14px; border-radius: 4px; letter-spacing: 1px; margin-bottom: 14px;
}
.metrics-row { display: flex; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.metric-box {
  flex: 1; min-width: 120px;
  background: white; border: 1px solid var(--gray-100);
  border-radius: 10px; padding: 18px 14px; text-align: center;
}
.metric-box .num { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.metric-box .lbl { font-size: 13px; color: var(--gray-500); }

/* ============ 品牌信任 (Dark Section) ============ */
.trust {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px;
  align-items: center;
}
.trust-text h2 {
  font-size: 40px; font-weight: 800; color: white; margin-bottom: 18px;
}
.trust-text p {
  font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.85;
}
.trust-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.trust-stat .number {
  font-size: 64px; font-weight: 800; color: var(--primary);
  line-height: 1;
}
.trust-stat .label {
  font-size: 16px; color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 64px 60px 0;
}
.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-area {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.footer-logo-area img { height: 48px; width: 48px; object-fit: contain; }
.footer-logo-area .zh { font-size: 19px; font-weight: 700; color: white; }
.footer-logo-area .en { font-size: 11px; color: var(--gray-400); letter-spacing: 2px; margin-top: 2px; }
.footer-tagline {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75;
}
.footer h4 {
  color: white; font-size: 16px; font-weight: 700;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 15px; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,0.55);
}
.footer-contact-bar {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.footer-contact-bar span {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-contact-bar svg { width: 16px; height: 16px; color: var(--primary); stroke: currentColor; fill: none; stroke-width: 2; }

/* ============ CTA Section ============ */
.cta-section {
  background: var(--navy);
  padding: 90px 60px;
  text-align: center;
}
.cta-section h2 {
  font-size: 38px; font-weight: 800; color: white; margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 34px;
}
.cta-buttons { display: flex; justify-content: center; gap: 18px; }

/* ============ Process Steps (3 steps) ============ */
.process-3 {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.process-step {
  background: white; border-radius: 14px; padding: 32px 24px;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.process-step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: rgba(0,180,216,0.12); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.process-step-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray-500); }
.process-arrow {
  color: var(--primary); font-size: 28px; font-weight: 700;
}

/* ============ Timeline (P5 / P6) ============ */
.timeline-h {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative; max-width: 1100px; margin: 0 auto; padding: 20px 0;
}
.timeline-h::before {
  content: ''; position: absolute; top: 50px; left: 8%; right: 8%;
  border-top: 2px dashed var(--primary); z-index: 0;
}
.timeline-step {
  text-align: center; position: relative; z-index: 1;
}
.timeline-step .circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: white; border: 3px solid var(--primary);
  color: var(--primary); font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.timeline-step h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.timeline-step p { font-size: 13px; color: var(--gray-500); }

/* Vertical Timeline (P6) */
.timeline-v {
  position: relative; max-width: 880px; margin: 0 auto; padding: 30px 0;
}
.timeline-v::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  border-left: 2px dashed var(--primary); transform: translateX(-50%);
}
.timeline-v-item {
  position: relative; padding: 18px 0; display: grid;
  grid-template-columns: 1fr 60px 1fr; gap: 30px; align-items: center;
}
.timeline-v-item .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); border: 4px solid white;
  box-shadow: 0 0 0 3px rgba(0,180,216,0.3);
  justify-self: center; z-index: 2;
}
.timeline-v-item .year { font-size: 34px; font-weight: 800; color: var(--primary); }
.timeline-v-item .desc { font-size: 16px; color: var(--gray-700); }
.timeline-v-item:nth-child(odd) .year { text-align: right; grid-column: 1; }
.timeline-v-item:nth-child(odd) .desc { grid-column: 3; }
.timeline-v-item:nth-child(even) .year { grid-column: 3; }
.timeline-v-item:nth-child(even) .desc { text-align: right; grid-column: 1; }

/* ============ Comparison Table (P5) ============ */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  max-width: 1100px; margin: 0 auto;
}
.comp-col {
  background: white; border-radius: 14px; padding: 36px;
  border: 2px solid var(--gray-100);
}
.comp-col.cyan { border-color: var(--primary); }
.comp-col h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 26px;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-100);
}
.comp-col.gray h3 { color: var(--gray-500); }
.comp-col.cyan h3 { color: var(--primary); }
.comp-col ul { list-style: none; }
.comp-col ul li {
  font-size: 17px; color: var(--gray-700); padding: 14px 0;
  display: flex; align-items: center; gap: 12px;
}
.comp-col.gray ul li svg { color: var(--red); flex-shrink: 0; }
.comp-col.cyan ul li svg { color: var(--green); flex-shrink: 0; }

/* ============ FAQ Accordion (P5) ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--gray-100);
  border-radius: 10px; margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  padding: 22px 28px; font-size: 18px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.faq-q .arrow { color: var(--primary); font-size: 18px; }
.faq-a { padding: 0 28px 22px; font-size: 16px; color: var(--gray-500); line-height: 1.8; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { background: var(--gray-50); }

/* ============ Stats / Metrics ============ */
.stats-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center; max-width: 1100px; margin: 0 auto;
}
.stat-block .stat-num {
  font-size: 56px; font-weight: 800; color: var(--primary); line-height: 1;
}
.stat-block .stat-lbl {
  font-size: 16px; color: var(--gray-500); margin-top: 12px;
}

/* ============ Filter Bar (P4) ============ */
.filter-bar {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 40px 60px;
}
.filter-pill {
  padding: 10px 26px; border-radius: 30px;
  background: white; border: 1.5px solid var(--gray-100);
  font-size: 15px; font-weight: 600; color: var(--gray-700);
  cursor: pointer; transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--primary); border-color: var(--primary); color: white;
}

/* ============ Testimonials ============ */
.testimonial {
  background: white; padding: 32px; border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.testimonial .quote {
  font-size: 16px; color: var(--gray-700); line-height: 1.85;
  font-style: italic; margin-bottom: 22px;
}
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 18px;
}
.testimonial .name { font-size: 16px; font-weight: 700; }
.testimonial .title { font-size: 13px; color: var(--gray-500); }

/* ============ About 公司形象 (P6) ============ */
.about-intro h2 {
  font-size: 42px; font-weight: 800; margin-bottom: 22px; line-height: 1.3;
  position: relative; padding-left: 22px;
}
.about-intro h2::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 12px;
  width: 5px; background: var(--primary); border-radius: 3px;
}
.about-intro .desc {
  font-size: 17px; color: var(--gray-700); line-height: 1.95; margin-bottom: 32px;
}
.about-values { display: flex; flex-direction: column; gap: 18px; }
.about-value-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.about-value-item .icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(0,180,216,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.about-value-item .icon-wrap svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.about-value-item .text strong { font-size: 18px; color: var(--gray-900); display: block; margin-bottom: 4px; }
.about-value-item .text span { font-size: 15px; color: var(--gray-500); }

.about-logo-display {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  padding: 60px;
}
.about-logo-display img { max-width: 100%; max-height: 360px; }

/* ============ Team Members (P6) ============ */
.team-card {
  background: white; border-radius: 14px; padding: 28px;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 36px; font-weight: 700;
}
.team-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.team-card .title { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; }
.team-card .social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: #0077B5; color: white;
}
.team-card .social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Awards */
.awards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card {
  background: white; border-radius: 12px; padding: 32px 20px;
  text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.award-icon {
  width: 64px; height: 64px; margin: 0 auto 14px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.award-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; }
.award-card h5 { font-size: 16px; font-weight: 700; }

/* LINE CTA */
.line-cta-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
  align-items: center;
}
.line-cta-row h2 { font-size: 34px; font-weight: 800; color: white; margin-bottom: 14px; }
.line-cta-row p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 0; }
.line-qr-box {
  background: white; border-radius: 14px; padding: 30px;
  display: flex; align-items: center; gap: 24px;
}
.line-qr-img {
  width: 130px; height: 130px;
  background: linear-gradient(135deg, #06C755 0%, #06C755 50%, #fff 50%, #fff 100%);
  background-size: 8px 8px; border-radius: 8px;
  position: relative;
}
.line-qr-box .info .lid { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }

/* ============ Contact (P7) ============ */
.contact-cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1100px; margin: 0 auto;
}
.contact-card {
  background: white; border-radius: 14px; padding: 36px 28px;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--gray-100);
}
.contact-card-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.contact-card-icon.line-bg { background: #06C755; }
.contact-card-icon.phone-bg { background: var(--primary); }
.contact-card-icon.mail-bg { background: var(--primary-dark); }
.contact-card-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.contact-card .info { font-size: 17px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.contact-card .desc { font-size: 14px; color: var(--gray-500); margin-bottom: 22px; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.form-intro h2 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.form-intro .en { font-size: 15px; font-weight: 600; color: var(--gray-400); letter-spacing: 3px; margin-bottom: 22px; display: block; }
.form-intro p { font-size: 16px; color: var(--gray-700); line-height: 1.85; margin-bottom: 24px; }
.form-intro ul { list-style: none; }
.form-intro ul li {
  font-size: 16px; padding: 6px 0; display: flex; align-items: center; gap: 10px;
}
.form-intro ul li svg { color: var(--primary); width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.form-card {
  background: white; border-radius: 16px; padding: 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary);
}
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-100); border-radius: 8px;
  font-family: inherit; font-size: 15px;
  background: var(--gray-50);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; margin: 16px 0; color: var(--gray-700); }
.form-submit { width: 100%; padding: 16px; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 17px; font-weight: 700; cursor: pointer; }

/* Map */
.map-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; }
.company-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 26px; }
.company-info-list { list-style: none; }
.company-info-list li {
  font-size: 16px; padding: 14px 0; display: flex; align-items: flex-start; gap: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.company-info-list li svg { color: var(--primary); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; stroke: currentColor; fill: none; stroke-width: 2; }
.company-info-list li strong { font-weight: 600; color: var(--gray-900); display: block; margin-bottom: 2px; }
.company-info-list li span { color: var(--gray-500); }
.map-embed {
  background: #d4e3e8; border-radius: 14px;
  min-height: 380px; position: relative; overflow: hidden;
  background-image: 
    linear-gradient(rgba(0,180,216,0.08), rgba(0,180,216,0.08)),
    repeating-linear-gradient(0deg, #e1ecf2, #e1ecf2 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, #e1ecf2, #e1ecf2 1px, transparent 1px, transparent 40px);
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  width: 36px; height: 48px; color: var(--primary);
}
.map-pin svg { width: 100%; height: 100%; stroke: currentColor; fill: var(--primary); stroke-width: 1.5; }
.map-label {
  position: absolute; top: calc(50% + 12px); left: 50%; transform: translateX(-50%);
  background: white; padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--gray-900);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); white-space: nowrap;
}

/* Quick FAQ Pills */
.faq-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 800px; margin: 0 auto 22px; }
.faq-pill {
  padding: 12px 24px; background: white; border: 1.5px solid var(--gray-100);
  border-radius: 30px; font-size: 16px; font-weight: 600; color: var(--gray-700);
  cursor: pointer;
}
.faq-pill:hover { border-color: var(--primary); color: var(--primary); }
