@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-sans: 'Inter', 'Noto Sans TC', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --radius: 0.5rem;

  /* Colors */
  --background: #fafbfc;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --card-foreground: #1a1f2e;
  --primary: #1e3a5f;
  --primary-foreground: #f5f7fa;
  --secondary: #f0f2f5;
  --secondary-foreground: #2a3040;
  --muted: #f0f2f5;
  --muted-foreground: #6b7280;
  --accent: #3b82c4;
  --accent-foreground: #f5f7fa;
  --destructive: #dc2626;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #3b82c4;

  --header-height: 64px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
}

::selection { background: rgba(30,58,95,0.15); color: var(--primary); }

h1, h2, h3, h4, h5, h6 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
code, pre { font-family: var(--font-mono); }

/* ========== Utilities ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: #fff; }

/* ========== Layout ========== */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; padding-top: var(--header-height); }

/* ========== Header ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem; font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}
.logo:hover { color: var(--accent); }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); }
.nav-desktop a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 9999px;
}

.mobile-toggle {
  display: none; padding: 0.5rem;
  color: var(--foreground); transition: color 0.2s;
}
.mobile-toggle:hover { color: var(--primary); }
.mobile-toggle svg { width: 24px; height: 24px; }

.nav-mobile {
  display: none; background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--primary);
  border-left: 2px solid var(--primary);
  padding-left: calc(1rem - 2px);
}

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.footer-grid h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.footer-grid h4 { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.footer-grid p, .footer-grid li { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.8; }
.footer-grid a { transition: color 0.2s; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  padding: 2rem 0; border-top: 1px solid var(--border);
  text-align: center; font-size: 0.875rem; color: var(--muted-foreground);
}

@media (max-width: 1023px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========== Hero Section ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.2;
}
.hero-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,251,252,0.6), transparent, rgba(250,251,252,0.8));
}
.hero-content {
  position: relative; z-index: 10;
  padding: 8rem 0 4rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(30,58,95,0.1); color: var(--primary);
  border-radius: 9999px; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero p.subtitle { font-size: 1.25rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 2rem; max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 1rem; }
.hero-image .badge-float {
  position: absolute; background: #fff; color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding: 0.5rem 1rem;
  border-radius: var(--radius); font-size: 0.875rem; font-family: var(--font-mono);
  border: 1px solid rgba(30,58,95,0.15);
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero h1 { font-size: 2.5rem; }
}

/* ========== Page Hero (shorter) ========== */
.page-hero {
  position: relative; padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(30,58,95,0.05), rgba(59,130,196,0.05));
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="60" fill="rgba(59,130,196,0.03)"/></svg>');
  background-size: cover;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.page-hero p { font-size: 1.25rem; color: var(--muted-foreground); max-width: 40rem; }
.page-hero.centered { text-align: center; }
.page-hero.centered p { margin: 0 auto; }

@media (max-width: 639px) { .page-hero h1 { font-size: 2rem; } }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s; white-space: nowrap;
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  box-shadow: 0 4px 12px rgba(30,58,95,0.25);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-secondary {
  background: var(--secondary); color: var(--foreground);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-secondary:hover { opacity: 0.9; }
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; }

/* ========== Sections ========== */
.section { padding: 6rem 0; }
.section-alt { background: rgba(240,242,245,0.5); }
.section-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  color: var(--primary-foreground);
}
.section-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.25rem; color: var(--muted-foreground); max-width: 40rem; margin: 0 auto; }

/* ========== Cards ========== */
.card {
  background: var(--card); border-radius: 0.75rem;
  padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(229,231,235,0.5);
  transition: all 0.3s ease;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.card-icon {
  width: 4rem; height: 4rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon.primary { background: rgba(30,58,95,0.1); }
.card-icon.accent { background: rgba(59,130,196,0.1); }
.card-icon svg { width: 2rem; height: 2rem; }
.card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.card p { color: var(--muted-foreground); line-height: 1.7; }

.card-link {
  display: block; text-decoration: none; height: 100%;
}
.card-link .card { height: 100%; }
.card-link:hover .card { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.card-link .card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}

/* ========== Grids ========== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-col { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ========== Tags / Badges ========== */
.tag {
  display: inline-block;
  background: var(--muted); color: var(--muted-foreground);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500;
}
.tag-primary { background: rgba(30,58,95,0.1); color: var(--primary); }
.badge-mono {
  background: #fff; color: var(--primary);
  border: 1px solid rgba(30,58,95,0.15);
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========== Image Strips ========== */
.image-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.image-strip img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 0.75rem;
}
@media (max-width: 767px) { .image-strip { grid-template-columns: repeat(2, 1fr); } }

/* ========== Process / Timeline ========== */
.process-list { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.process-number {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
}
.process-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.process-content p { color: var(--muted-foreground); font-size: 0.875rem; }

/* ========== Service Flow ========== */
.flow-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.flow-step { text-align: center; }
.flow-step .step-num {
  width: 4rem; height: 4rem; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
}
.flow-step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.flow-step p { color: var(--muted-foreground); font-size: 0.875rem; }
@media (max-width: 767px) { .flow-steps { grid-template-columns: 1fr; } }

/* ========== Check List ========== */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--muted-foreground);
}
.check-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ========== Split Content (left-right) ========== */
.split-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }
.split-content img {
  width: 100%; border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
@media (max-width: 1023px) { .split-content, .split-content.reverse { grid-template-columns: 1fr; direction: ltr; } }

/* ========== CTA Section ========== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  color: #fff; text-align: center;
}
.cta-section h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.cta-section p { font-size: 1.25rem; opacity: 0.9; max-width: 40rem; margin: 0 auto 2rem; }

@media (max-width: 639px) { .cta-section h2 { font-size: 1.75rem; } }

/* ========== Insight Card ========== */
.insight-card { overflow: hidden; padding: 0; }
.insight-card img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}
.insight-card .insight-body { padding: 1.5rem; }
.insight-card .insight-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground);
}
.insight-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.insight-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.insight-featured { padding: 0; }
.insight-featured img { aspect-ratio: 21/9; }

/* ========== Subscription ========== */
.subscribe-box {
  background: var(--secondary); border-radius: 1rem;
  padding: 3rem; text-align: center;
}
.subscribe-form {
  display: flex; gap: 0.75rem;
  max-width: 28rem; margin: 1.5rem auto 0;
}
.subscribe-form input {
  flex: 1; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
}
.subscribe-form input:focus { border-color: var(--primary); }

/* ========== Contact Form ========== */
.contact-section .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; }
.contact-info-item .icon-box {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: rgba(30,58,95,0.1); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-box svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-info-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.875rem; color: var(--muted-foreground); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-sans);
  font-size: 0.875rem; outline: none; transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none; padding: 2rem; text-align: center;
  background: rgba(30,58,95,0.05); border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: #22c55e; margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

@media (max-width: 1023px) { .contact-section .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 639px) { .form-row { grid-template-columns: 1fr; } }

/* ========== Values Grid ========== */
.value-card { text-align: center; }
.value-card .value-icon {
  width: 5rem; height: 5rem; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(30,58,95,0.1), rgba(59,130,196,0.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.value-card .value-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.value-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ========== Image Grid ========== */
.image-grid-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.image-grid-2x2 img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 0.75rem;
}

/* ========== Benefits ========== */
.benefit-card {
  background: var(--card); border-radius: 0.75rem;
  padding: 2rem; border: 1px solid rgba(229,231,235,0.5);
  transition: all 0.3s;
}
.benefit-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.benefit-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== Filter Buttons ========== */
.filter-group {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all 0.2s; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}

/* ========== Scroll Animations ========== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ========== Responsive helpers ========== */
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 1023px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ========== Image overlay ========== */
.img-overlay {
  position: relative; overflow: hidden; border-radius: 1rem;
}
.img-overlay img { width: 100%; display: block; }
.img-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.08), transparent);
  border-radius: 1rem;
}

/* ========== Tags list ========== */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

/* ========== Extension services ========== */
.ext-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ext-service-card { text-align: center; padding: 1.5rem; }
.ext-service-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.ext-service-card p { font-size: 0.8125rem; color: var(--muted-foreground); }
@media (max-width: 767px) { .ext-services { grid-template-columns: repeat(2, 1fr); } }

/* ========== Security Service Card ========== */
.security-card .card-icon { margin-bottom: 1rem; }
.security-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.security-card p {
  font-size: 0.875rem; color: var(--muted-foreground);
  line-height: 1.7; display: -webkit-box;
  -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* ========== AI Trends ========== */
.trend-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.trend-item:last-child { border-bottom: none; }
.trend-num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  background: rgba(30,58,95,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 0.875rem;
}
.trend-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.trend-item p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.6; }

/* ========== Stat boxes ========== */
.stat-box { text-align: center; padding: 1.5rem; }
.stat-box .stat-value {
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.25rem;
}
.stat-box .stat-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== Image strip 3 ========== */
.image-strip-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.image-strip-3 img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 0.75rem;
}
@media (max-width: 767px) { .image-strip-3 { grid-template-columns: 1fr; } }

/* ========== Office photo ========== */
.office-photo { position: relative; border-radius: 1rem; overflow: hidden; }
.office-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ========== Map placeholder ========== */
.map-placeholder {
  width: 100%; height: 300px; background: var(--muted);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  color: var(--muted-foreground); font-size: 0.875rem;
}
