/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:    #041628;
  --bg2:   #091e36;
  --accent:#00aeff;
  --white: #ffffff;
  --w80:   rgba(255,255,255,.8);
  --w60:   rgba(255,255,255,.6);
  --w40:   rgba(255,255,255,.4);
  --w12:   rgba(255,255,255,.12);
  --w06:   rgba(255,255,255,.06);
  --a10:   rgba(0,174,255,.10);
  --a06:   rgba(0,174,255,.06);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins','Noto Sans TC',sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,174,255,.35); border-radius: 3px; }

/* ── BACKGROUND DECORATION TEXTURES (from Figma) ── */
#bg-decos {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.deco-img {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 1;
  object-fit: cover;
}
.deco-r1 {
  width: 700px; height: 800px;
  right: -60px; top: 50%;
  transform: translateY(-60%);
  left: auto;
}
.deco-r3 {
  width: 700px; height: 800px;
  left: -150px; top: 50%;
  transform: translateY(-40%);
}

/* ── HEADER ── */
#hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 25px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
#hd.scrolled {
  background: rgba(4,22,40,.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(0,174,255,.12);
}
.hd-logo img {
  height: 36px; display: block;
  transform-origin: left center;
  will-change: transform;
}
/* nav + icons grouped on the right */
.hd-right {
  display: flex; align-items: center; gap: 20px;
}
.hd-nav { display: flex; align-items: center; gap: 42px; }
.hd-nav a {
  color: var(--white); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: .03em;
  transition: color .2s; position: relative; white-space: nowrap;
}
.hd-nav a:first-child { color: var(--accent); }
.hd-nav a:hover { color: var(--white); }
.hd-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width .3s ease;
}
.hd-nav a:first-child::after { width: 100%; }
.hd-nav a:hover::after { width: 100%; }
.hd-icons { display: flex; align-items: center; gap: 8px; }
.hd-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--w06); border: 1px solid var(--w60);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; cursor: pointer; text-decoration: none;
}
.hd-icon:hover { background: var(--a10); border-color: var(--accent); }
.hd-icon svg { width: 14px; height: 14px; fill: var(--white); transition: fill .2s, stroke .2s; }
.hd-icon:hover svg { fill: var(--accent); }
.hd-icon svg.stroke-icon { fill: none; stroke: var(--white); }
.hd-icon:hover svg.stroke-icon { fill: none; stroke: var(--accent); }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden; display: flex; align-items: center;
  z-index: 1;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#hero-img {
  width: 120%; height: 120%;
  object-fit: cover; object-position: center 60%;
  transform: translate(-8%,-5%);
  will-change: transform;
  animation: heroReveal 2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes heroReveal {
  from { filter: blur(18px); opacity: 0; }
  to   { filter: blur(0);    opacity: 1; }
}
@keyframes kenBurns {
  0%   { transform: translate(-8%, -5%) scale(1);    }
  50%  { transform: translate(-6%, -7%) scale(1.04); }
  100% { transform: translate(-8%, -5%) scale(1);    }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,22,40,0) 0%,
    rgba(4,22,40,0) 55%,
    rgba(4,22,40,.55) 80%,
    var(--bg) 100%
  );
}
#particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 80px;
  margin-top: -60px;
}

@keyframes blurReveal {
  from { filter: blur(22px); opacity: 0; transform: translateY(14px); }
  to   { filter: blur(0);    opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: clamp(52px, 7.2vw, 110px);
  font-weight: 800; line-height: 1.04; color: var(--white);
  text-shadow: 6px 6px 28px rgba(0,0,0,.55);
  opacity: 0;
  animation: blurReveal 1.4s cubic-bezier(.16,1,.3,1) .15s forwards;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-tagline {
  font-size: clamp(18px, 2.4vw, 30px); font-weight: 500; color: var(--white);
  margin-top: 18px; opacity: 0;
  animation: blurReveal 1.1s cubic-bezier(.16,1,.3,1) .65s forwards;
}
.hero-desc {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: clamp(16px, 1.2vw, 18px); font-weight: 300; color: var(--white);
  margin-top: 10px; line-height: 1.7; opacity: 0;
  animation: blurReveal 1.1s cubic-bezier(.16,1,.3,1) .9s forwards;
}
.hero-cta {
  display: flex; gap: 16px; margin-top: 40px; opacity: 0;
  animation: fadeIn 1.1s cubic-bezier(.16,1,.3,1) 1.15s forwards;
}
.btn-solid {
  padding: 14px 36px; border-radius: 50px;
  background: var(--accent); border: 1px solid var(--accent);
  color: var(--white); font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: all .3s ease; display: inline-block;
}
.btn-solid:hover {
  background: rgba(0,174,255,.8); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.55);
}
.btn-ghost {
  padding: 14px 36px; border-radius: 50px;
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: all .3s ease; display: inline-block;
}
.btn-ghost:hover { background: var(--a10); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  opacity: 0; animation: fadeIn 1s ease 1.9s forwards;
}
.scroll-hint-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollBob 1.8s ease-in-out 2.9s infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.scroll-wheel {
  width: 26px; height: 42px;
  border: 1.5px solid var(--white); border-radius: 50px;
  position: relative; overflow: hidden;
}
.scroll-ball {
  position: absolute; width: 4px; height: 7px;
  background: var(--accent); border-radius: 4px;
  left: 50%; top: 7px; transform: translateX(-50%);
  animation: sball 1.6s ease-in-out infinite;
}
@keyframes sball {
  0%,100% { top: 7px; opacity: 1; }
  75%      { top: 26px; opacity: 0; }
}
.scroll-hint span {
  font-size: 10px; letter-spacing: .12em;
  color: var(--white); text-transform: uppercase;
}

/* ── DROPDOWN ── */
.hd-nav .has-dropdown { position: relative; }
.hd-nav .has-dropdown > a {
  color: var(--white);
}
.hd-nav .has-dropdown > a::after { display: none; }
.dd-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6.9px solid #ffffff;
  margin-left: 5px; vertical-align: middle;
  transition: transform .25s ease;
}
.has-dropdown .dropdown.open ~ a .dd-arrow,
.has-dropdown:has(.dropdown.open) .dd-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(4,22,40,.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(0,174,255,.15);
  border-radius: 14px;
  padding: 0;
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 600;
}
.dropdown.open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 13px 24px;
  font-size: 14px; font-weight: 400;
  color: var(--w80) !important;
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s, background .2s;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dropdown a:first-child { border-radius: 14px 14px 0 0; }
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 14px 14px; }
.dropdown a:hover {
  color: var(--accent) !important;
  background: rgba(0,174,255,.06);
}
.dropdown a::after { display: none !important; }
/* arrow tip */
.dropdown::before {
  content: '';
  position: absolute; top: -12px; left: 0; right: 0;
  height: 12px;
}
#forensics {
  position: relative; z-index: 1; overflow: hidden;
}
.f-panel {
  width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 40px;
  position: relative;
}
.f-inner {
  display: flex; align-items: center;
  gap: 72px;
  max-width: 1100px; width: 100%;
}
.f-wm {
  position: absolute;
  bottom: -10px; left: -60px;
  font-size: clamp(120px, 16vw, 210px);
  font-weight: 800; color: var(--accent);
  opacity: .09; white-space: nowrap; line-height: 1;
  pointer-events: none; z-index: 0;
  will-change: transform;
}
.f-img-wrap {
  flex: none; width: 340px; height: 453px;
  border-radius: 18px; overflow: hidden;
  position: relative; z-index: 1;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(0,174,255,.1);
  will-change: transform, opacity;
}
.f-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% center;
  transition: transform .6s ease;
}
.f-img-wrap:hover img { transform: scale(1.03); }
.f-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,22,40,.92) 0%, transparent 55%);
}
.f-img-label { position: absolute; bottom: 24px; left: 24px; z-index: 2; }
.f-img-num {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.f-img-word { font-size: 32px; font-weight: 700; color: var(--white); }
.f-text {
  flex: 1; padding-left: 72px; z-index: 1; max-width: 560px;
  will-change: transform, opacity;
}
.f-eyebrow {
  display: block; font-size: 14px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.f-h2 {
  font-size: clamp(30px, 3.5vw, 55px);
  font-weight: 700; color: var(--accent);
  line-height: 1.3; margin-bottom: 24px;
  white-space: nowrap;          /* ← no line break */
}
.f-subtitle {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500; color: var(--white);
  line-height: 1.6; margin-bottom: 16px;
  white-space: nowrap;          /* ← no line break */
}
.f-desc {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; font-weight: 300;
  color: var(--white); line-height: 1.9; margin-bottom: 28px;
}
.f-list { list-style: none; }
.f-list li {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; color: var(--white);
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--w06);
  position: relative;
}
.f-list li::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 1px; background: var(--accent);
}

/* ── SERVICES MARQUEE ── */
.svc-marquee-wrap {
  width: 100%; overflow: hidden;
  padding: 0;
  margin-top: 40px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.svc-marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.svc-marquee-track span {
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 800; color: var(--accent);
  opacity: .08; white-space: nowrap; line-height: 1;
  letter-spacing: -.02em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
#services {
  padding: 0px 80px 0;
  position: relative; overflow: hidden; z-index: 1;
}
.svc-wm { display: none; }
.svc-head {
  text-align: center; margin-bottom: 80px; position: relative; z-index: 1;
}
.svc-tag {
  font-size: 14px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.svc-title {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 800;
  color: var(--accent); margin-bottom: 16px; line-height: 1.1;
}
.svc-sub {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: clamp(14px, 1.3vw, 17px); font-weight: 300;
  color: var(--white); max-width: 660px; margin: 0 auto; line-height: 1.95;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; max-width: 1120px; margin: 0 auto 90px;
  position: relative; z-index: 1;
}
.svc-card {
  background: rgba(9,30,54,.72);
  border: 1px solid rgba(0,174,255,.1);
  border-radius: 20px; padding: 42px 34px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform .45s cubic-bezier(.22,1,.36,1),
              border-color .35s ease, box-shadow .45s ease, background .35s ease;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0; transition: opacity .4s;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(0,174,255,.22) 0%, rgba(0,0,0,.45) 70%);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { opacity: 1; }
.svc-card:hover {
  border-color: rgba(0,174,255,.55);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(0,174,255,.15), 0 0 40px rgba(0,174,255,.12);
  background: rgba(9,40,74,.98);
}
.svc-num {
  position: absolute; top: 14px; right: 22px;
  font-size: 68px; font-weight: 800; color: var(--accent);
  opacity: .05; line-height: 1; pointer-events: none;
}
.svc-icon { width: 42px; height: 42px; margin-bottom: 26px; position: relative; z-index: 1; }
.svc-icon svg {
  width: 42px; height: 42px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.svc-en {
  font-size: 24px; font-weight: 600; color: var(--white);     /* ← 24px */
  margin-bottom: 5px; letter-spacing: -.01em;
  position: relative; z-index: 1;
}
.svc-zh {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; font-weight: 400; color: var(--accent);    /* ← 15px */
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.svc-desc {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 16px; font-weight: 300; color: var(--white);
  line-height: 1.9; position: relative; z-index: 1;
}

/* ── FOOTER ── */
footer { background: var(--bg2); padding: 50px 30px 36px; position: relative; z-index: 10; }
.ft-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  align-items: stretch; column-gap: 0; row-gap: 0;
}
.ft-logo-col {
  border-right: 1px solid rgba(255,255,255,.12);
  padding: 8px 28px 8px 0;
  display: flex; align-items: flex-start; justify-content: flex-end;
}
.ft-logo-col img { height: 44px; }
.ft-col { padding: 6px 16px 6px 26px; }
.ft-col-title {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 15px; color: var(--white); margin-bottom: 12px;
}
.ft-col-text {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 15px; color: var(--white); line-height: 1.85;
}
.ft-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--accent); border-radius: 50px;
  padding: 5px 16px; color: var(--accent);
  font-family: 'Poppins',sans-serif;
  font-size: 12px; text-decoration: none;
  transition: all .3s; margin-top: 10px;
}
.ft-btn:hover { background: var(--a10); }
.ft-btn svg {
  width: 14px; height: 14px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.copyright {
  background: var(--bg2);
  border-top: 1px solid rgba(107,136,168,.2);
  padding: 22px 30px; text-align: center;
  position: relative; z-index: 10;
}
.copyright p { font-size: 13px; color: #6b88a8; letter-spacing: .02em; line-height: 2; }

/* ── MOBILE BURGER ── */
.hd-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 600;
}
.hd-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s ease;
  transform-origin: center;
}
.hd-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hd-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hd-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
#mob-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 490;
  padding: 82px 36px 40px; overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s cubic-bezier(.4,0,.2,1);
}
#mob-menu.is-open { clip-path: inset(0 0 0% 0); }

.mob-nav { display: flex; flex-direction: column; margin-top: 16px; }
.mob-row { border-bottom: 1px solid rgba(255,255,255,.07); }
.mob-item {
  display: flex; align-items: center; gap: 20px;
  font-size: 28px; font-weight: 700; letter-spacing: -.01em;
  color: var(--white); text-decoration: none;
  padding: 16px 0; width: 100%;
  opacity: 0; transform: translateY(-14px);
  transition: color 0.2s;
  background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.mob-item:hover { color: var(--accent); }
.mob-dash { color: var(--accent); font-weight: 300; min-width: 28px; }

#mob-menu.is-open .mob-row:nth-child(1) .mob-item { animation: mobIn 0.4s ease 0.28s forwards; }
#mob-menu.is-open .mob-row:nth-child(2) .mob-item { animation: mobIn 0.4s ease 0.35s forwards; }
#mob-menu.is-open .mob-row:nth-child(3) .mob-item { animation: mobIn 0.4s ease 0.42s forwards; }
#mob-menu.is-open .mob-row:nth-child(4) .mob-item { animation: mobIn 0.4s ease 0.49s forwards; }
#mob-menu.is-open .mob-row:nth-child(5) .mob-item { animation: mobIn 0.4s ease 0.56s forwards; }
#mob-menu.is-open .mob-row:nth-child(6) .mob-item { animation: mobIn 0.4s ease 0.63s forwards; }
@keyframes mobIn { to { opacity: 1; transform: translateY(0); } }

.mob-tri {
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 8px solid var(--white);
  margin-left: 10px; display: inline-block;
  transition: transform 0.25s ease;
}
.mob-has-dd.open .mob-tri { transform: rotate(180deg); }

.mob-sub { display: none; flex-direction: column; padding: 4px 0 14px 48px; }
.mob-has-dd.open .mob-sub { display: flex; }
.mob-sub a {
  font-size: 17px; color: var(--w80);
  text-decoration: none; padding: 8px 0;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}
.mob-sub a:hover { color: var(--accent); }

.ft-social { display: none; gap: 10px; }

br.mob-br { display: none; }

/* ── RESPONSIVE: 768px ── */
@media (max-width: 768px) {
  br.mob-br { display: inline; }

  /* Background textures: half size */
  .deco-r1 { width: 360px; height: 420px; right: -30px; }
  .deco-r3 { width: 360px; height: 420px; left: -80px; }

  /* Header */
  #hd { padding: 18px 24px; }
  .hd-right { display: none !important; }
  .hd-burger { display: flex; }

  /* Hero: left-aligned, larger title */
  .hero-content { padding: 0 24px; margin-top: 0; text-align: left; }
  .hero-title { font-size: clamp(46px, 14vw, 68px); }
  .hero-tagline { font-size: clamp(16px, 4.5vw, 24px); }
  .hero-desc { font-size: 16px; }
  .hero-cta { justify-content: flex-start; }
  .btn-solid, .btn-ghost { padding: 12px 32px; font-size: 15px; }
  .scroll-hint { left: 0; right: 0; width: fit-content; margin: 0 auto; transform: none; }

  /* Forensics: portrait image, centred in column layout */
  .f-panel { padding: 80px 24px 40px; height: auto; min-height: 100vh; }
  .f-inner { flex-direction: column; gap: 24px; align-items: center; margin-top:20px;}
  .f-img-wrap { width: min(90%, 288px); height: auto; aspect-ratio: 340 / 453; border-radius: 12px; overflow: hidden; }
  .f-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .f-text { max-width: 100%; width: 100%; padding-left: 0; }
  .f-eyebrow { font-size: 13px; margin-bottom: 12px; }
  .f-h2 { font-size: 36px; white-space: normal; }
  .f-subtitle { white-space: normal; font-size: 20px; }
  .f-desc { font-size: 16px; }
  .f-list li { font-size: 16px; }
  .f-wm { font-size: clamp(70px, 22vw, 120px); bottom: 0; left: -20px; }

  /* Services */
  #services { padding: 64px 24px 0; }
  .svc-head { margin-bottom: 32px; }
  .svc-title { font-size: 42px; }
  .svc-tag { font-size: 13px; }
  .svc-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .svc-card { padding: 26px 22px; }
  .svc-en { font-size: 24px; }
  .svc-desc { font-size: 16px; }
  .svc-marquee-wrap { margin-top: 48px !important; }

  /* Footer */
  footer { padding: 36px 24px 24px; }
  .ft-inner { grid-template-columns: 1fr; row-gap: 0; }
  .ft-logo-col {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 0 0 20px; margin-bottom: 4px;
    flex-direction: row; justify-content: space-between; align-items: center;
  }
  .ft-social { display: flex; }
  .ft-col { padding: 18px 0 18px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .ft-col:last-child { border-bottom: none; }
  .ft-col-title { font-size: 16px; }
  .ft-col-text { font-size: 16px; }
}