/* FAR Light Global — Tencent-inspired corporate style */
:root {
  --blue-50: #f0f6ff;
  --blue-100: #d6e8ff;
  --blue-200: #a8cdff;
  --blue-400: #3d8bff;
  --blue-500: #006eff;
  --blue-600: #0052d9;
  --blue-700: #003cab;
  --blue-800: #002a7a;
  --blue-900: #001a4d;
  --ink: #0b1220;
  --ink-2: #2b3547;
  --ink-3: #5a6578;
  --line: rgba(11, 18, 32, 0.08);
  --line-strong: rgba(11, 18, 32, 0.14);
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --shadow: 0 12px 40px rgba(0, 61, 153, 0.08);
  --radius: 12px;
  --header-h: 72px;
  --font-display: "Sora", "Noto Sans TC", sans-serif;
  --font-body: "Noto Sans TC", "Sora", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(0, 110, 255, 0.12), transparent 60%),
    radial-gradient(700px 420px at 0% 30%, rgba(0, 82, 217, 0.06), transparent 55%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 28%, #ffffff 100%);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(0, 42, 122, 0.04);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, var(--blue-400), var(--blue-700));
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 82, 217, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  width: 12px;
  height: 18px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.95;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-3);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.2s var(--ease);
}

.lang-btn.is-active {
  background: var(--surface);
  color: var(--blue-600);
  box-shadow: 0 1px 4px rgba(0, 42, 122, 0.1);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 82, 217, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(0, 82, 217, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-strong);
  color: var(--ink-2);
}

.btn-ghost:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 8px 24px rgba(0, 26, 77, 0.12);
}

.btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 96px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 217, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-orb-a {
  width: 420px;
  height: 420px;
  right: -60px;
  top: 10%;
  background: rgba(0, 110, 255, 0.22);
  animation: floatA 10s ease-in-out infinite;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  right: 18%;
  bottom: 8%;
  background: rgba(0, 60, 171, 0.14);
  animation: floatB 12s ease-in-out infinite;
}

.hero-beam {
  position: absolute;
  width: min(56vw, 640px);
  height: min(56vw, 640px);
  right: 4%;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 110, 255, 0.15);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 110, 255, 0.08), transparent 55%),
    conic-gradient(from 210deg, transparent, rgba(0, 110, 255, 0.12), transparent 40%);
  animation: spinSlow 28s linear infinite;
}

.hero-beam::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(0, 110, 255, 0.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 110, 255, 0.08);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-title {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--ink) 20%, var(--blue-700) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-en {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-desc {
  margin: 0 0 32px;
  max-width: 540px;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  translate: -50% 0;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Trust */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--ink-3);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  color: var(--ink-3);
  font-size: 1.05rem;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, var(--blue-50) 40%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about-copy p {
  color: var(--ink-2);
  margin: 0 0 16px;
}

.about-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 500;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
}

.about-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.about-stat {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1.2;
}

.stat-label {
  color: var(--ink-3);
  font-size: 14px;
}

.about-quote {
  margin: 0;
  padding: 16px 0 0;
  border: 0;
}

.about-quote p {
  margin: 0;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.6;
}

/* Business */
.biz-list {
  display: grid;
  gap: 20px;
}

.biz-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.biz-item:hover {
  border-color: rgba(0, 110, 255, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.biz-index {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-200);
  line-height: 1;
}

.biz-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.biz-body p {
  margin: 0 0 16px;
  color: var(--ink-3);
}

.biz-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.biz-body li {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 500;
}

/* Services */
.services {
  background: var(--surface-soft);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-item {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.svc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svc-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue-600);
}

.svc-icon svg {
  width: 100%;
  height: 100%;
}

.svc-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.svc-item p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.95rem;
}

/* Advantage */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.adv-item {
  background: #fff;
  padding: 36px 32px;
  transition: background 0.25s;
}

.adv-item:hover {
  background: var(--blue-50);
}

.adv-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-800);
}

.adv-item p {
  margin: 0;
  color: var(--ink-3);
}

/* Markets */
.markets {
  padding: 0;
}

.markets-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 80px 40px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 42, 122, 0.96), rgba(0, 82, 217, 0.92)),
    radial-gradient(600px 300px at 80% 20%, rgba(61, 139, 255, 0.35), transparent);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.markets .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.markets .section-title {
  color: #fff;
}

.markets .section-desc {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 500;
}

.markets-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
}

.globe {
  position: relative;
  width: 240px;
  height: 240px;
}

.globe-core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #7eb6ff, #0052d9 60%, #002a7a);
  box-shadow: 0 0 60px rgba(61, 139, 255, 0.45);
}

.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: spinSlow 18s linear infinite;
}

.globe-ring.r2 {
  inset: 12%;
  animation-duration: 12s;
  animation-direction: reverse;
  border-style: dashed;
}

.globe-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.globe-dot.d1 { top: 18%; left: 52%; animation: pulse 2s infinite; }
.globe-dot.d2 { top: 48%; right: 12%; animation: pulse 2.4s infinite 0.3s; }
.globe-dot.d3 { bottom: 22%; left: 28%; animation: pulse 2.2s infinite 0.6s; }
.globe-dot.d4 { top: 36%; left: 16%; animation: pulse 2.6s infinite 0.9s; }

/* Process */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-item:first-child {
  border-top: 1px solid var(--line);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-500);
}

.process-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.process-item p {
  margin: 0;
  color: var(--ink-3);
}

/* CTA */
.cta-banner {
  padding: 0 0 96px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-800));
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 60, 171, 0.25);
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cta-inner p {
  margin: 0;
  opacity: 0.85;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-key {
  color: var(--ink-3);
  font-size: 14px;
  padding-top: 2px;
}

.contact-val {
  font-weight: 500;
  color: var(--ink);
  word-break: break-word;
}

.contact-val.muted,
.muted {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 0.95rem;
}

a.contact-val:hover {
  color: var(--blue-600);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--surface-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.12);
  background: #fff;
}

.form-success {
  margin: 0;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 500;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0b1220;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 0 36px;
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
}

.footer-brand p {
  margin: 2px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animations */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, 18px); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0, 42, 122, 0.08);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .svc-grid,
  .adv-grid,
  .markets-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .markets-inner {
    padding: 48px 28px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .hero {
    padding: 48px 0 80px;
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .biz-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-content,
  .hero-orb-a,
  .hero-orb-b,
  .hero-beam,
  .globe-ring,
  .hero-scroll,
  .globe-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
